/* ============================================================
   HEADER & FOOTER BASE STYLES – V3.1 HEADLESS
   Minimal site styles to ensure the header and footer 
   fragments look exactly like the production V3 version.
   ============================================================ */

/* ── Global Layout Resets (needed for headless) ── */
#site {
  width: 100%;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
}

#main {
  background: #f4f6f9;
  padding: 0 0 30px 0 !important;
  /* Minimized top padding for checkout */
}

.inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

.clear {
  clear: both;
}


/* ============================================================
   CHECKOUT V3 – Scoped Styles
   Inherits brand tokens from V2 where possible.
   All rules scoped under .hop-modern-checkout .v3-*
   ============================================================ */

/* ── Design Tokens (reused from V2) ── */
.hop-modern-checkout {
  --bg: #f4f6f9;
  --card: #ffffff;
  --text: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f1f5f9;
  --brand: #009fe3;
  --brand-2: #008ac8;
  --warn: #ec1c23;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --radius: 14px;
  --radius2: 8px;
  --font: 'Montserrat', 'Comfortaa', sans-serif;
  --cod-bg: #fff8f0;
  --cod-border: #f5a623;

  text-align: left !important;
  /* Force global left align */
}

/* ── Site Wrapper Overrides (mirrors V2 exactly) ──────────────────
   hop.bg: #main > .inner clips content. We replicate the same
   approach used in scoped_styles_v2.css lines 152-184.
   ──────────────────────────────────────────────────── */
html,
body,
#site,
#main,
#main>.inner,
.hop-modern-checkout,
.hop-modern-checkout .v3-main,
.hop-modern-checkout .v3-container,
.hop-modern-checkout .v3-left,
.hop-modern-checkout .v3-right {
  overflow: visible !important;
}

html,
body {
  overflow-x: clip !important;
}

/* ── Progress Bar ── */
.v3-progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px !important;
  /* Reduced from 60px */
  padding: 0;
  /* Minimized padding */
  width: 100%;
}

.v3-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}

.v3-step-icon {
  width: 38px;
  height: 38px;
  background: #f1f5f9;
  /* Light grey pending */
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  /* Rounded square */
  font-weight: 800;
  font-size: 16px;
  transition: all 0.3s ease;
}

.v3-step-label {
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
  white-space: nowrap;
}

/* Done & Active States */
.v3-step-done .v3-step-icon,
.v3-step-active .v3-step-icon {
  background: #222;
  /* Dark black/grey icon */
  color: #fff;
}

.v3-step-done .v3-step-label,
.v3-step-active .v3-step-label {
  color: #222;
}

/* ── Account Selector Tabs ── */
.v3-account-tabs {
  background: var(--soft);
  padding: 6px;
  border-radius: 14px;
  display: flex;
  gap: 4px;
  margin-bottom: 30px;
  /* Spacing above form fields */
}

.v3-tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: var(--font);
  text-align: center;
}

.v3-tab:hover {
  color: var(--text);
}

.v3-tab.active {
  background: #ffffff;
  color: var(--brand);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.v3-tab.fast-order {
  color: var(--brand);
}

/* ── Logged-in Status Indicator ── */
.v3-logged-status {
  background: #e0f2fe;
  /* Very light blue */
  border: 1px solid #bae6fd;
  padding: 14px 18px;
  border-radius: var(--radius2);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  animation: fadeIn 0.4s ease-out;
}

.v3-status-icon {
  font-size: 18px;
}

#v3-user-greeting {
  font-size: 14px;
  font-weight: 700;
  color: #0369a1;
  /* Deep blue */
}

.v3-status-link {
  margin-left: auto;
  font-size: 12px;
  font-weight: 800;
  color: var(--brand);
  text-decoration: none;
  background: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #bae6fd;
  transition: all 0.2s ease;
}

.v3-status-link:hover {
  background: var(--brand);
  color: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .v3-account-tabs {
    flex-wrap: wrap;
  }

  .v3-tab {
    flex: 1 1 auto;
    font-size: 11px;
    padding: 10px 5px;
  }
}

.v3-step-line {
  height: 2px;
  background: #e2e8f0;
  width: 100px;
  margin-top: -26px;
  /* Align with center of icons */
}

@media (max-width: 600px) {
  .v3-step-line {
    width: 40px;
  }

  .v3-step-label {
    font-size: 12px;
  }
}

/* Layout ────────────────────────────────────────────────────── */
.hop-modern-checkout main {
  padding: 0 0 60px;
  /* Removed top padding to bring logo closer */
  font-family: var(--font);
}

.hop-modern-checkout .container {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.hop-modern-checkout .grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  /* Exact same as V2 */
  gap: 32px;
  align-items: start;
}

/* LEFT COLUMN CARD */
.hop-modern-checkout section.card.v3-left {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--line);
  overflow: visible !important;
  text-align: left !important;
}

.hop-modern-checkout section.card.v3-left .bd {
  padding: 0 !important;
  /* We use our own v3-section-body padding */
  text-align: left !important;
  display: block !important;
}

/* RIGHT COLUMN SUMMARY CARD */
.hop-modern-checkout aside.card.summary.v3-right {
  position: sticky;
  top: 20px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--line);
  padding: 0;
}

/* ── Left Column ── */
.v3-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Section Card ── */
.v3-section {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--line);
  overflow: hidden;
  transition: border-color 0.2s;
  padding: 20px !important;
}

.v3-section.v3-active {
  border-color: var(--brand);
}

.v3-section.v3-locked {
  opacity: 0.5;
  pointer-events: none;
}

.v3-section.v3-done {
  opacity: 1;
  pointer-events: auto;
  border-color: var(--line);
}

/* ── Section Header ── */
.v3-section-head {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px 24px;
  /* More padding so "1" doesn't touch edges */
  border-bottom: 1px solid var(--line);
  cursor: default;
  position: relative;
  margin-bottom: 10px !important;
}

.v3-section-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 159, 227, 0.3);
}

.v3-locked .v3-section-num {
  background: var(--muted);
  box-shadow: none;
}

.v3-done .v3-section-num {
  background: #16a34a;
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.3);
}

.v3-section-title {
  font-size: 18px;
  font-weight: 800;
  flex: 1;
  color: var(--text);
}

.v3-section-edit {
  background: none;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  border-radius: var(--radius2);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.v3-section-edit:hover {
  background: var(--brand);
  color: #fff;
}

/* ── Validation Errors (Modern) ── */
.v3-section.v3-error {
  border-color: var(--warn) !important;
  animation: v3-shake 0.4s cubic-bezier(.36, .07, .19, .97) both;
}

.v3-inline-error {
  color: var(--warn);
  font-size: 13px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: v3-fade-in 0.3s ease;
  background: #fff5f5;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid rgba(236, 28, 35, 0.1);
}

.v3-inline-error::before {
  content: '⚠️';
  font-size: 14px;
}

@keyframes v3-shake {

  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

@keyframes v3-fade-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.error-border {
  border: 1.5px solid var(--warn) !important;
  outline: 1px solid var(--warn);
  box-shadow: 0 0 5px rgba(236, 28, 35, 0.3);
}

/* ── Section Summary (collapsed view) ── */
.v3-section-summary {
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.v3-summary-line {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Section Body ── */
.v3-section-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* Reduced from 20px for a more compact layout */
  align-items: stretch !important;
  /* Force children to take full width */
  text-align: left !important;
}

/* ── Form Fields ── */
.v3-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  align-items: stretch !important;
  text-align: left !important;
}

.v3-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: left !important;
  margin-bottom: 2px;
}

.v3-field input,
.v3-field textarea,
.v3-field select {
  border: 1.5px solid var(--line);
  border-radius: var(--radius2);
  padding: 10px 13px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

.v3-field input::placeholder,
.v3-field textarea::placeholder {
  color: #eaeaea;
  opacity: 1;
}

.v3-field input:focus,
.v3-field textarea:focus,
.v3-field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 159, 227, 0.12);
}

.v3-field textarea {
  resize: vertical;
  min-height: 68px;
}

/* ── Grid Layouts ── */
.v3-row-full {
  display: block !important;
  width: 100% !important;
  padding: 0px !important;
  /* Removed excessive padding to tighten layout */
}

.v3-row-2 {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
  width: 100% !important;
}

.v3-row-zip-city {
  display: grid !important;
  grid-template-columns: 120px 1fr !important;
  gap: 16px !important;
  width: 100% !important;
}

.v3-row-3 {
  display: grid !important;
  grid-template-columns: 1fr 1fr 2fr !important;
  gap: 12px !important;
  width: 100% !important;
}

.v3-field-wide {
  grid-column: span 1;
}

.v3-field-narrow {
  flex: 0 0 100px;
}

/* ── Checkboxes ── */
.v3-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v3-checkbox-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  cursor: pointer;
  color: var(--text);
}

.v3-checkbox-row input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--brand);
  cursor: pointer;
  flex-shrink: 0;
}

/* ── Extra panels (company / alt address) ── */
.v3-extra-panel {
  border-radius: var(--radius2);
  padding: 16px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
}

/* ── Required note & SMS notice ── */
.v3-info-notice {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: -8px;
  margin-bottom: 4px;
}

.v3-info-notice i {
  color: var(--brand);
  font-size: 16px;
}

.v3-required-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* ── Continue button ── */
.v3-btn-continue {
  background: #334155;
  color: #fff;
  border: none;
  border-radius: var(--radius2);
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  align-self: flex-start;
}

.v3-btn-continue:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

/* ── Delivery Rows ── */
.v3-delivery-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 8px;
}

.v3-delivery-group-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 0 6px;
  border-bottom: 1.5px solid var(--line);
  margin-bottom: 4px;
}

.v3-cod-group .v3-delivery-group-title {
  color: #c07000;
  border-color: var(--cod-border);
  margin-top: 12px;
}

.v3-delivery-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  border-radius: var(--radius2);
  cursor: pointer;
  transition: background 0.12s;
  border-bottom: 1px solid var(--soft);
}

.v3-delivery-row:hover {
  background: var(--soft);
}

.v3-delivery-row input[type="radio"] {
  accent-color: var(--brand);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.v3-carrier-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.v3-carrier-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.v3-delivery-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.v3-delivery-name {
  font-size: 14px;
  font-weight: 400;
}

.v3-delivery-sub {
  font-size: 12px;
  color: var(--muted);
}

.v3-delivery-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}

.v3-cod-group .v3-delivery-price {
  color: #c07000;
}

/* ── Office Search Panel ── */
.v3-office-panel {
  background: var(--soft);
  border-radius: var(--radius2);
  padding: 14px;
  margin: -4px 0 8px 42px;
  border: 1px solid var(--line);
  margin-top: 10px !important;
}

/* ── Store Select ── */
.v3-select {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius2);
  font-size: 14px;
  font-family: var(--font);
  background: #fff;
  cursor: pointer;
}

form.order .v3-select {
  width: 100% !important;
}

/* ── COD notice ── */
.v3-cod-notice {
  font-size: 12px;
  color: #c07000;
  padding: 8px 12px;
  background: var(--cod-bg);
  border-radius: var(--radius2);
  border: 1px solid var(--cod-border);
}

/* ── Leasing panel ── */
/* ── Payment Options ── */
.v3-payment-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 12px;
  border-radius: var(--radius2);
  border: 1.5px solid var(--line);
  cursor: pointer;
  transition: border-color 0.15s, background 0.12s;
  margin-bottom: 8px;
}

.v3-payment-row:hover {
  border-color: var(--brand);
  background: var(--soft);
}

.v3-payment-row:has(input:checked) {
  border-color: var(--brand);
  background: #edf9ff;
}

.v3-payment-row input[type="radio"] {
  accent-color: var(--brand);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.v3-pay-icon {
  font-size: 22px;
  line-height: 1;
  width: 30px;
  text-align: center;
  flex-shrink: 0;
}

.v3-pay-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.v3-ssl-notice {
  margin-top: 24px;
  padding: 16px;
  background: #f8fafc;
  border-radius: var(--radius2);
  border: 1px dashed var(--line);
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
  text-align: left;
}

.v3-ssl-notice i {
  font-size: 24px;
  color: #10b981;
  /* Green for security */
}

.v3-pay-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.v3-pay-desc {
  font-size: 12px;
  color: var(--muted);
}

/* ── Method Restrictions (Category Based) ── */
.v3-method-disabled {
  opacity: 0.6 !important;
  pointer-events: none !important;
  filter: grayscale(0.8);
  position: relative;
  cursor: not-allowed !important;
}

.v3-restriction-msg {
  display: block;
  font-size: 11px;
  color: #ec1c23;
  /* var(--warn) */
  font-weight: 700;
  margin-top: 2px;
}

.v3-method-disabled .v3-delivery-price,
.v3-method-disabled .v3-pay-name {
  color: #64748b !important;
  /* var(--muted) */
}

/* ── COD Fee note ── */
.v3-cod-fee-note {
  font-size: 13px;
  color: #c07000;
  padding: 8px 12px;
  background: var(--cod-bg);
  border-radius: var(--radius2);
  border: 1px solid var(--cod-border);
}

/* ── Leasing panel ── */
.v3-leasing-panel {
  background: var(--soft);
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  padding: 20px;
  margin-top: 8px;
  margin-bottom: 12px;
}

.v3-leasing-title {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--text);
}

.v3-banks-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.v3-banks-grid img {
  height: 54px;
  width: auto;
  cursor: pointer;
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 5px;
  background: #fff;
  transition: all 0.2s ease;
}

.v3-banks-grid img:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
}

.v3-banks-grid img.active {
  border-color: var(--brand);
  background: #edf9ff;
  box-shadow: 0 4px 12px rgba(0, 159, 227, 0.1);
}

#v3-leasing-plans-container {
  min-height: 100px;
  background: #fff;
  border-radius: 11px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.v3-leasing-hint {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* ── GDPR ── */
.v3-gdpr {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: var(--soft);
  border-radius: var(--radius2);
  border: 1px solid var(--line);
}

.v3-gdpr-chk span a {
  color: var(--brand);
  text-decoration: underline;
}

/* ── Order button ── */
.v3-btn-order {
  width: 100%;
  background: linear-gradient(135deg, #009fe3 0%, #007ec8 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius2);
  padding: 16px;
  font-size: 17px;
  font-weight: 800;
  font-family: var(--font);
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(0, 159, 227, 0.35);
}

.v3-btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 159, 227, 0.45);
}

/* ── Final hint ── */
.v3-final-hint {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin: 4px 0 0;
}

/* ── Summary & Sidebar Styles (Ported from V2) ── */
.hop-modern-checkout .summary {
  position: sticky !important;
  top: 20px !important;
  padding: 32px !important;
  align-self: start !important;
  z-index: 999;
  text-align: left !important;
}

.hop-modern-checkout .summary .divider {
  height: 1px;
  background: var(--soft);
  margin: 24px 0;
}

.hop-modern-checkout .summary .row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  padding: 8px 0;
  font-weight: 500;
  align-items: baseline;
}

.hop-modern-checkout .summary .row span:first-child {
  flex-shrink: 0;
  padding-right: 15px;
}

.hop-modern-checkout .summary .row span:last-child {
  text-align: right;
  flex: 1;
}

#v3-promo-row {
  color: #16a34a !important;
}

.hop-modern-checkout .summary .row.total {
  font-size: 22px;
  font-weight: 600;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--soft);
  color: var(--text);
}

.hop-modern-checkout .summary .row.total .v {
  color: var(--brand);
}

.hop-modern-checkout .summary .agree {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  padding: 20px;
  border-radius: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.hop-modern-checkout .summary .agree input {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  cursor: pointer;
}

.hop-modern-checkout .summary .agree p {
  margin: 0;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
}

/* ── Mobile Only Agree Section (displayed in left col on mobile) ── */
.v3-mobile-agree-section {
  display: none;
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  margin: 20px 0;
  border: 1.5px solid var(--line) !important;
  box-shadow: var(--shadow);
}

.v3-mobile-agree-section .agree {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  text-align: left;
}

.v3-mobile-agree-section .agree:last-child {
  margin-bottom: 0;
}

.v3-mobile-agree-section .agree input {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.v3-mobile-agree-section .agree p {
  margin: 0;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}

/* ── Functional / Utility Classes ── */
.hidden {
  display: none !important;
}

.loading-blur {
  opacity: 0.5;
  filter: blur(2px);
  pointer-events: none;
  transition: all 0.3s;
}

input.error,
select.error,
textarea.error {
  border-color: var(--warn) !important;
  background: #fffcfc !important;
}

.v3-required-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
}

.v3-btn-continue {
  background: #334155;
  color: #fff;
  border: none;
  border-radius: var(--radius2);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 20px;
  width: auto;
  align-self: flex-start;
}

.v3-btn-continue:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(51, 65, 85, 0.25);
}

.v3-btn-secondary {
  background: #f8fafc;
  color: #475569;
  border: 1.5px solid var(--line);
  border-radius: var(--radius2);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}

.v3-btn-secondary:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: var(--text);
}

.v3-location-block {
  margin-bottom: 20px;
  background: #fff;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
}

.v3-location-hint {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 12px 0;
  line-height: 1.4;
}

/* ── Section States ── */
.v3-section.v3-done {
  border-color: var(--line);
  opacity: 1;
}

.v3-section.v3-done .v3-section-num {
  background: #16a34a;
  /* Green for done */
  color: #fff;
}

.v3-section.v3-locked {
  opacity: 0.6;
}

/* ── Cart Items Styling ── */
.v3-cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.v3-cart-item:last-child {
  border-bottom: none;
}

.v3-item-thumb {
  width: 60px;
  height: 60px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--line);
  border-radius: 6px;
  background-color: #fff;
}

.v3-item-meta {
  flex: 1;
  text-align: left;
}

.v3-item-name {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.v3-item-sku {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.v3-item-qty {
  font-size: 11px;
  margin-top: 4px;
}

.v3-item-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.v3-item-remove-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--soft);
  padding: 4px 10px;
  border-radius: 8px;
  margin-top: 8px;
  transition: all 0.2s ease;
  min-height: 28px;
}

.v3-item-remove {
  font-size: 11px;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  text-transform: lowercase;
}

.v3-item-remove:hover {
  color: var(--warn);
}

.v3-pending-remove {
  background: #fff1f2;
  /* Light red/warn */
  border: 1px solid rgba(236, 28, 35, 0.2);
  animation: v3-fade-show 0.2s ease;
}

.v3-remove-q {
  font-size: 11px;
  font-weight: 700;
  color: var(--warn);
  margin-right: 4px;
}

.v3-confirm-yes {
  color: var(--warn);
  text-decoration: underline;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 4px;
}

.v3-confirm-yes:hover {
  background: var(--warn);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.v3-confirm-no {
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  padding: 2px 4px;
  font-size: 11px;
  font-weight: 800;
  margin-left: 5px;
}

.v3-confirm-no:hover {
  background: #eee;
  color: var(--text);
  text-decoration: none;
  border-radius: 4px;
}

.v3-confirm-sep {
  color: var(--line);
  margin: 0 4px;
  font-size: 11px;
  user-select: none;
}

@keyframes v3-fade-show {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.v3-item-remove:hover {
  text-decoration: none;
  filter: brightness(0.8);
}

/* ── Delivery Rows Highlight ── */
.v3-delivery-row.selected {
  border-color: var(--brand) !important;
  background: var(--soft) !important;
}

.v3-office-panel {
  margin-top: -10px;
  margin-bottom: 20px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 0 0 var(--radius2) var(--radius2);
  border: 1.5px solid var(--line);
  border-top: none;
}

/* Ensure the results dropdown looks good inside the panel */
.v3-office-panel .search-results {
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-height: 250px;
  overflow-y: auto;
  z-index: 100;
  text-align: left;
}

.hop-modern-checkout .cta {
  width: 100%;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 25px rgba(0, 159, 227, 0.25);
  text-transform: uppercase;
}

.hop-modern-checkout .cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 159, 227, 0.35);
}

.hop-modern-checkout .trust-mini {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px 0 12px;
  justify-content: center;
}

.hop-modern-checkout .badge {
  display: inline-flex;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--brand);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.hop-modern-checkout .hint {
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

/* ── Utility ── */
.hidden {
  display: none !important;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .hop-modern-checkout .grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Main padding for sticky foot */
  .hop-modern-checkout main {
    padding-bottom: 220px !important;
  }

  .v3-mobile-agree-section {
    display: block;
    padding: 10px !important
  }

  /* Mobile Sticky Summary (Bottom) */
  .hop-modern-checkout aside.card.summary.v3-right {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    z-index: 1000 !important;
    border-radius: 20px 20px 0 0 !important;
    padding: 12px 16px env(safe-area-inset-bottom, 12px) !important;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.12) !important;
    border-top: 1.5px solid var(--line) !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    order: 100;
    max-height: 50vh;
    overflow-y: auto;
  }

  /* Compact Cart Items in mobile summary */
  #v3-cart-items-container {
    max-height: 70px;
    overflow-y: auto;
    margin-bottom: 8px;
  }

  .v3-cart-item {
    padding: 6px 0 !important;
    gap: 10px !important;
    border-bottom: 1px solid var(--soft);
  }

  .v3-item-thumb {
    width: 32px !important;
    height: 32px !important;
    flex: 0 0 32px !important;
  }

  .v3-item-name {
    font-size: 11px !important;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .v3-item-sku,
  .v3-item-qty {
    display: none !important;
  }

  .v3-item-price {
    font-size: 12px !important;
  }

  /* Hide non-essential rows in mobile sticky */
  .hop-modern-checkout .summary .divider,
  .hop-modern-checkout .summary .row:not(.total),
  .hop-modern-checkout .summary div[style*="text-align: left"],
  .hop-modern-checkout .summary .agree,
  .hop-modern-checkout .summary .hint {
    display: none !important;
  }

  /* Mobile: Доставка — показваме само след реален избор (JS добавя .v3-ship-selected) */
  .hop-modern-checkout .summary .row.v3-shipping-row.v3-ship-selected {
    display: flex !important;
    font-size: 13px !important;
    padding: 2px 0 !important;
    margin: 0 !important;
  }

  /* Mobile: Бонус за нов профил (показваме ако НЕ е скрит от JS) */
  .hop-modern-checkout .summary #v3-promo-row:not(.hidden) {
    display: flex !important;
    font-size: 13px !important;
    padding: 2px 0 !important;
    margin: 0 !important;
    color: #1a9e4a !important;
    font-weight: 600 !important;
  }

  /* Mobile: Такса наложен платеж */
  .hop-modern-checkout .summary #v3-cod-fee-row:not(.hidden) {
    display: flex !important;
    font-size: 13px !important;
    padding: 2px 0 !important;
    margin: 0 !important;
  }

  /* Разделителна линия преди Общо, когато има детайли */
  .hop-modern-checkout .summary.v3-has-details .row.total {
    border-top: 1px solid var(--line) !important;
    padding-top: 6px !important;
    margin-top: 4px !important;
  }

  .hop-modern-checkout .summary .row.total {
    margin: 5px 0 !important;
    padding: 0 !important;
    border: none !important;
    font-size: 16px !important;
  }

  .hop-modern-checkout .summary .cta {
    margin-top: 10px !important;
    padding: 14px !important;
    font-size: 16px !important;
  }

  .v3-row-2 {
    grid-template-columns: 1fr !important;
  }

  .v3-row-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .v3-row-3 {
    grid-template-columns: 1fr;
  }

  .v3-section-body {
    padding: 14px;
  }
}

/* --- Backend Payload Debug --- */
.v3-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: v3FadeIn 0.3s ease;
}

.v3-modal-content {
  background: #fff;
  width: min(600px, 92vw);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: v3SlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.v3-modal-header {
  padding: 20px 24px;
  background: var(--soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.v3-modal-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.v3-close-modal {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--muted);
}

.v3-modal-body {
  padding: 24px;
  max-height: 60vh;
  overflow-y: auto;
}

.v3-payload-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v3-payload-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid var(--brand);
}

.v3-payload-key {
  font-weight: 800;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.v3-payload-value {
  font-weight: 600;
  color: var(--text);
  font-size: 13px;
  word-break: break-all;
  text-align: right;
  max-width: 60%;
}

.v3-modal-footer {
  padding: 20px 24px;
  background: #fff;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.v3-modal-submit-btn {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  text-transform: uppercase;
}

.v3-modal-submit-btn:hover {
  background: #0088cc;
  transform: translateY(-2px);
}

.v3-modal-submit-btn:active {
  transform: translateY(0);
}

@keyframes v3FadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes v3SlideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ── Footer Redesign (Premium V3 Look) ── */
.v3-footer {
  background: #003e5c !important;
  /* Brand Dark Blue */
  padding: 60px 0 40px !important;
  color: #ffffff !important;
  font-family: var(--font) !important;
  border-top: 4px solid var(--brand) !important;
  margin-top: 80px !important;
  width: 100%;
  clear: both;
}

.v3-footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  float: none !important;
}

.v3-footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px !important;
}

.v3-footer-links a {
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.v3-footer-links a:hover {
  color: var(--brand) !important;
}

.v3-footer-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7) !important;
}

.v3-footer-dev {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4) !important;
}

.v3-footer-dev a {
  color: inherit !important;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .v3-footer {
    padding-bottom: 180px !important;
    /* Clear sticky card */
  }
}

@media (max-width: 768px) {
  .v3-footer-links {
    flex-direction: column;
    gap: 15px;
  }
  .hop-modern-checkout .checkoutPage {
    margin-top: 0;
  }
  .v3-delivery-row {
    padding: 14px 0;
  }
  .v3-carrier-logo,
  .v3-carrier-icon {
    width: 70px;
    height: auto;
  }
}

/* ── City Autocomplete ── */
.v3-autocomplete-results {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  max-height: 250px;
  overflow-y: auto;
  z-index: 9999;
}

.v3-city-item {
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid var(--soft);
}

.v3-city-item:last-child {
  border-bottom: none;
}

.v3-city-item:hover {
  background: var(--soft);
  color: var(--brand);
}

/* Courier Search Results & Map Embed */
.search-office-wrapper {
  position: relative;
  font-family: inherit;
  overflow: visible !important;
  z-index: 12000;
}

.search-input-group {
  position: relative;
}

.search-input-group .search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  pointer-events: none;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  margin-top: 4px;
  max-height: 280px;
  overflow-y: auto;
  z-index: 25000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Office dropdown is clipped by section card overflow, not by z-index. */
#v3-section-2,
#v3-section-2 .v3-section-body,
#v3-section-2 .v3-office-panel {
  overflow: visible !important;
}

.find-nearest-btn {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  color: #495057;
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.2s;
  font-weight: 600;
}

.find-nearest-btn:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}

.find-nearest-btn i {
  margin-right: 5px;
  color: #007bff;
}

.location-disclaimer {
  margin-top: 6px;
  color: #6c757d;
  font-size: 11px;
  line-height: 1.4;
}

.distance-tag {
  font-weight: normal;
  font-size: 11px;
  color: #007bff;
  background: #e7f1ff;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 8px;
}

.hidden {
  display: none !important;
}

.search-result-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f8f9fa;
  transition: background 0.2s;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: #f8f9fa;
}

.search-result-item .oname {
  font-weight: 700;
  font-size: 14px;
  color: #212529;
  display: block;
  margin-bottom: 2px;
}

.search-result-item .oaddr {
  font-size: 11px;
  color: #6c757d;
  display: block;
}

.search-result-item mark {
  background: rgba(0, 153, 218, 0.1);
  color: #0099da;
  font-weight: 800;
  text-decoration: none;
  padding: 0 2px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 13px;
  color: #0099da;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s;
}

.map-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.change-office {
  margin-left: 15px;
  font-size: 13px;
  color: #dc3545;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.change-office:hover {
  text-decoration: underline;
}

.map-link i,
.change-office i {
  font-size: 14px;
}

.map-embed {
  width: 100%;
  height: 440px;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  margin-top: 12px;
  overflow: hidden;
  background: #f8f9fa;
  animation: mapFadeIn 0.4s ease-out;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@keyframes mapFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes v3FadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes v3SlideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ── City Autocomplete ── */
.v3-autocomplete-results {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  max-height: 250px;
  overflow-y: auto;
  z-index: 9999;
}

.v3-city-item {
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid var(--soft);
}

.v3-city-item:last-child {
  border-bottom: none;
}

.v3-city-item:hover {
  background: var(--soft);
  color: var(--brand);
}

/* ──────────────────────────────────────────────────────────────
   SITE-WIDE OVERRIDES (FOR CLEAN CHECKOUT)
   Hides original site elements that clutter the headless fragment.
   ────────────────────────────────────────────────────────────── */

/* Hide Blue Navigation/Categories Bar & Sticky Version */
.full-width-header-menu,
.headerSticky,
#stickyHeader {
  display: none !important;
}

/* Hide Breadcrumbs */
.breadcrumb,
#path {
  display: none !important;
}

/* Hide Search Bar in Header */
#headerright .btm form,
#stickyHeader form {
  display: none !important;
}

/* Hide redundant space/banners on checkout if any */
.home-banner-container,
.info-blocks-container,
#footer,
.mobilePhone {
  display: none !important;
}

/* Minimize spacing between Logo/Header and Progress Bar */
#menu {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
  min-height: auto !important;
}

#menu .inner {
  height: auto !important;
}

#menu a.logo {
  margin-bottom: 5px !important;
}

.hop-modern-checkout {
  margin-top: 0 !important;
  padding-top: 5px !important;
}

.v3-progress-bar {
  margin-top: 0 !important;
}

/* ── Minimal Footer Styles ── */
.v3-minimal-footer {
  margin-top: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  text-align: center;
  background: var(--card);
  /* Uses the white card background from tokens */
  position: relative;
  z-index: 1;
}

.v3-footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
}

.v3-footer-links a {
  color: #475569 !important;
  /* Explicit slate-600 color for high contrast */
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 5px 10px;
}

.v3-footer-links a:hover {
  color: var(--brand) !important;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .v3-footer-links {
    flex-direction: column;
    gap: 20px;
  }
}

/* ── Fast Order Modal Styles ── */
.v3-fast-order-modal .v3-modal-content {
  max-width: 500px;
  border-radius: 20px;
  padding: 30px;
}

.v3-fast-order-modal .v3-modal-header {
  border-bottom: none;
  padding: 0 0 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.v3-fast-order-modal .v3-modal-header h2 {
  font-size: 28px;
  font-weight: 900;
  color: #334155;
  text-transform: uppercase;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.v3-fast-order-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 25px;
}

.v3-fast-form .v3-field {
  margin-bottom: 15px;
}

.v3-fast-form label {
  font-weight: 700;
  font-size: 14px;
  color: #334155;
  margin-bottom: 8px;
  display: block;
}

.v3-fast-form label span {
  color: #ec1c23;
}

.v3-fast-form input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.2s;
}

.v3-fast-form input:focus {
  border-color: #a3d133;
  outline: none;
  box-shadow: 0 0 0 3px rgba(163, 209, 51, 0.1);
}

.v3-fast-submit-btn {
  width: 100%;
  background: #a3d133;
  /* Lime green from mockup */
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 20px;
}

.v3-fast-submit-btn:hover {
  background: #8eb72c;
  transform: translateY(-1px);
}

.v3-fast-order-modal .v3-close-modal {
  font-size: 32px;
  color: #64748b;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.v3-fast-form .v3-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  margin-top: 15px;
  cursor: pointer;
}

.v3-fast-form .v3-checkbox-row input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.v3-fast-form .v3-checkbox-row label {
  margin-bottom: 0;
  font-weight: 400;
}

.v3-fast-form .v3-checkbox-row strong {
  font-weight: 700;
}