body.motorcycle-finance-page {
    --mf-site-header-height: 60px;
    --mf-content-max-width: 980px;
    --mf-content-padding-x: 16px;
    --mf-promo-gradient: linear-gradient(135deg, #e67e22 5%, #d872f9 20%, #0066cc 65%, #079e77 90%);
  }

  @media (min-width: 640px) {
    body.motorcycle-finance-page {
      --mf-content-padding-x: 24px;
    }
  }

:root {
    --background: oklch(0.985 0.003 240);
    --foreground: oklch(0.21 0.02 250);
    --card: oklch(1 0 0);
    --card-foreground: oklch(0.21 0.02 250);
    --popover: oklch(1 0 0);
    --popover-foreground: oklch(0.21 0.02 250);
    --primary: oklch(0.52 0.18 255);
    --primary-foreground: oklch(0.99 0 0);
    --secondary: oklch(0.96 0.01 250);
    --secondary-foreground: oklch(0.3 0.03 255);
    --muted: oklch(0.96 0.01 250);
    --muted-foreground: oklch(0.52 0.02 255);
    --accent: oklch(0.94 0.03 250);
    --accent-foreground: oklch(0.3 0.05 255);
    --destructive: oklch(0.577 0.245 27.325);
    --border: oklch(0.9 0.01 250);
    --input: oklch(0.9 0.01 250);
    --ring: oklch(0.52 0.18 255);
    --radius: 10px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-xl: 14px;
    --radius-2xl: 18px;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --contact-bar-height: 60px;
    --contact-primary: #0066cc;
    --contact-primary-hover: #0055aa;
    --contact-secondary: #ebeff7;
    --contact-secondary-hover: #dce2f0;
  }
  
  .motorcycle-finance-root,
  .motorcycle-finance-root *,
  .motorcycle-finance-root *::before,
  .motorcycle-finance-root *::after {
    box-sizing: border-box;
    border-color: var(--border);
  }

  .motorcycle-finance-root {
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--background);
    color: var(--foreground);
    font-size: 14px;
    line-height: 1.5;
  }

  body.motorcycle-finance-page.dialog-open {
    overflow: hidden;
  }
  
  .motorcycle-finance-root h1,
  .motorcycle-finance-root h2,
  .motorcycle-finance-root h3,
  .motorcycle-finance-root p {
    margin: 0;
  }
  
  .motorcycle-finance-root button,
  .motorcycle-finance-root select {
    /* font: inherit; */
  }
  
  .main {
    min-height: 1400px;
  }
  
  .motorcycle-finance-root .mf-container,
  .motorcycle-finance-root .contact-bar-inner,
  .motorcycle-finance-root .tray-inner {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--mf-content-padding-x);
    padding-right: var(--mf-content-padding-x);
  }

  .motorcycle-finance-root .mf-container {
    margin: 0 auto;
  }
  
  .text-muted {
    color: #878787;
  }
  
  .text-primary {
    color: #191919;
  }
  
  /* .font-semibold {
    font-weight: 600;
  } */
  
  .font-bold {
    font-weight: 700;
  }
  
  /* Header */
  .page-header {
    border-bottom: 1px solid var(--border);
    background: var(--card);
  }
  
  .header-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  @media (min-width: 1024px) {
    .header-inner {
      padding: 16px;
    }
  }
  
  .header-label {
    font-size: 14px;
    font-weight: 700;
    color: #000;
  }
  
  /* Content layout */
  .content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  @media (max-width: 767px) {
    .content { 
    gap: 24px;

  }}
  
  /* Conditions section */
  .conditions-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    border: 1px solid #e4e4e4;
    border-radius: var(--radius-2xl);
    background: var(--card);
  }
  
  .conditions-intro {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .conditions-intro-heading {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .conditions-intro h2 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.025em;
    text-wrap: balance;
    background: #000;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  .conditions-layout {
    display: block;
  }

  .conditions-aside {
    display: none;
  }
  
  @media (min-width: 640px) {
    .conditions-intro h2 {
      font-size: 20px;
    }
  }

  @media (min-width: 768px) {
    .conditions-section {
      padding-left: 0;
      padding-right: 0;
    }

    .conditions-layout {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      align-items: start;
    }

    .conditions-aside {
      display: flex;
      flex-direction: column;
      gap: 30px;
      grid-column: 1;
      min-width: 0;
      padding-left: 24px;
    }

    .conditions-intro {
      align-items: flex-start;
      text-align: left;
    }

    .conditions-intro-heading {
      align-items: flex-start;
    }

    .conditions-intro h2 {
      font-size: 24px;
      max-width: 220px;
      line-height: 1.45;
    }

    .conditions-panel {
      grid-column: 2 / -1;
      min-width: 0;
      padding-right: 24px;
    }
  }
  
  /* Mobile collapsible conditions (Option B) */
  .conditions-help-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    padding: 0;
    border: 0.6px solid #0066cc;
    border-radius: 50%;
    background: transparent;
    color: #0066cc;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
  }
  
  .conditions-help-btn:hover {
    border-color: #0066cc;
    color: #0066cc;
    background: color-mix(in oklch, var(--secondary) 50%, transparent);
  }
  
  .conditions-help-btn-mobile {
    display: none;
  }
  
  .conditions-help-overlay {
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgb(0 0 0 / 0.25);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }
  
  .conditions-help-overlay[hidden] {
    display: none;
  }
  
  .conditions-help-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 46;
    transform: translate(-50%, -50%);
    width: calc(100% - 32px);
    max-width: 352px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--card);
    box-shadow: 0 8px 32px rgb(0 0 0 / 0.12);
  }
  
  .conditions-help-dialog[hidden] {
    display: none;
  }
  
  .conditions-help-dialog h3 {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
  }
  
  .conditions-help-text {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.625;
    color: #000000;
    padding-bottom: 20px;
  }

  .phone-help-overlay {
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgb(0 0 0 / 0.25);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }

  .phone-help-overlay[hidden] {
    display: none;
  }

  .phone-help-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 46;
    transform: translate(-50%, -50%);
    width: calc(100% - 32px);
    max-width: 352px;
    padding: 24px 20px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--card);
    box-shadow: 0 8px 32px rgb(0 0 0 / 0.12);
  }

  .phone-help-dialog[hidden] {
    display: none;
  }

  .phone-help-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--foreground);
    cursor: pointer;
    transition: background 0.15s;
  }

  .phone-help-close:hover {
    background: var(--muted);
  }

  .phone-help-text {
    margin: 0 0 20px;
    padding-top: 20px;
    padding-right: 24px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    color: #111111;
    text-align: center;
  }

  .phone-help-hours {
    padding: 16px 16px 24px;
    font-size: 13px;
    line-height: 1.6;
    color: #878787;
    text-align: left;
  }

  .phone-help-actions {
    display: flex;
    flex-direction: column;
  }

  body.phone-help-open {
    overflow: hidden;
  }
  
  /* Mobile collapsible conditions (Option B) */
  .conditions-sticky-bar,
  .conditions-sticky-sentinel {
    display: none;
  }
  
  .conditions-summary,
  .conditions-backdrop {
    display: none;
  }
  
  .conditions-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  @media (max-width: 767px) {
    body.motorcycle-finance-page {
      --mf-site-header-height: 53px;
    }

    body.motorcycle-finance-page .header > .inner {
      position: relative;
    }

    body.motorcycle-finance-page .header .header_title {
      display: block;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: calc(100% - 120px);
      margin: 0;
      padding: 0;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: -0.02em;
      text-align: center;
      color: #17171b;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      pointer-events: none;
    }

    body.motorcycle-finance-page .header .back_btn {
      display: block;
    }

    .conditions-sticky-bar {
      display: none;
      position: fixed;
      top: var(--mf-site-header-height, 60px);
      left: 0;
      right: 0;
      z-index: 35;
      background: color-mix(in oklch, var(--card) 72%, transparent);
      -webkit-backdrop-filter: blur(12px) saturate(180%);
      backdrop-filter: blur(12px) saturate(180%);
    }
  
    .conditions-sticky-bar.is-visible {
      display: block;
    }
  
    .conditions-sticky-sentinel {
      display: block;
      height: 1px;
      margin: 0;
      pointer-events: none;
    }
  
    .conditions-sticky-inner {
      display: flex;
      align-items: center;
      gap: 8px;
      min-height: 48px;
      padding: 8px 12px 8px 16px;
    }
  
    .conditions-sticky-chips-scroll {
      flex: 1;
      min-width: 0;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      touch-action: pan-x;
      mask-image: linear-gradient(to right, #000 calc(100% - 20px), transparent);
    }
  
    .conditions-sticky-chips-scroll::-webkit-scrollbar {
      display: none;
    }
  
    .conditions-sticky-bar .conditions-summary-chips {
      flex-wrap: nowrap;
      width: max-content;
      padding-right: 8px;
    }
  
    .conditions-sticky-edit {
      display: flex;
      flex-shrink: 0;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      padding: 0;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: var(--card);
      color: var(--foreground);
      cursor: pointer;
      transition: background 0.15s, border-color 0.15s;
    }
  
    .conditions-sticky-edit:hover {
      background: var(--muted);
      border-color: color-mix(in oklch, var(--foreground) 15%, var(--border));
    }
  
    .conditions-sticky-divider {
      height: 1px;
      background: var(--border);
    }
  
    .content {
      padding-top: 16px;
    }
  
    .conditions-intro {
      display: none;
    }
  
    .conditions-section {
      gap: 0;
      padding: 0;
      border: none;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }
  
    .conditions-summary {
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 100%;
      padding: 18px 16px;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: #fff;
      cursor: pointer;
      text-align: left;
      transition: border-color 0.15s, box-shadow 0.15s;
    }
  
    /* .conditions-summary:hover {
      border-color: color-mix(in oklch, var(--foreground) 15%, var(--border));
    } */
  
    .conditions-help-btn-mobile {
      display: inline-flex;
    }
  
    .conditions-summary-header {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
  
    .conditions-summary-title-row {
      display: flex;
      align-items: center;
      gap: 8px;
    }
  
    .conditions-summary-label-primary,
    .conditions-summary-label-secondary {
      font-size: 20px;
      font-weight: 700;
      color: #000000;
    }

    .conditions-summary-secondary-row {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .conditions-summary-footer {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      padding-top: 12px;
    }

    .conditions-summary-edit-label {
      font-size: 14px;
      font-weight: 500;
      color: #16181a;
    }
  
    .conditions-summary-chevron {
      display: flex;
      flex-shrink: 0;
      color: #878787;
      transition: transform 0.2s;
    }
  
    .conditions-section.is-expanded .conditions-summary-chevron {
      transform: rotate(180deg);
    }
  
    .conditions-summary-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
  
    .condition-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 24px;
      padding: 0 12px;
      border-radius: 9999px;
      background: var(--secondary);
      color: #0066cc;
      font-size: 16px;
      font-weight: 500;
      white-space: nowrap;
    }
  
    .conditions-panel {
      display: none;
      gap: 16px;
      padding: 16px;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: var(--card);
    }
  
    .conditions-section.is-expanded .conditions-panel {
      display: flex;
    }
  
    /* .conditions-section.is-expanded .conditions-summary {
      border-color: #0066cc;
      box-shadow: 0 0 0 1px color-mix(in oklch, #0066cc 20%, transparent);
    } */
  
    .conditions-backdrop {
      display: block;
      position: fixed;
      inset: 0;
      z-index: 41;
      background: rgb(0 0 0 / 0.2);
      -webkit-backdrop-filter: blur(2px);
      backdrop-filter: blur(2px);
    }
  
    .conditions-backdrop[hidden] {
      display: none;
    }
  
    body.motorcycle-finance-page.conditions-panel-open .contact-bar,
    body.motorcycle-finance-page.conditions-panel-open .comparison-tray {
      pointer-events: none;
    }
  
    body.motorcycle-finance-page.conditions-panel-open .conditions-section.is-expanded {
      position: fixed;
      top: calc(var(--mf-site-header-height) + 16px);
      left: 16px;
      right: 16px;
      z-index: 42;
      gap: 4px;
      max-height: calc(100vh - var(--mf-site-header-height) - var(--contact-bar-height) - 32px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding: 0;
      background: transparent;
    }
  }
  
  /* Customer type toggle */
  .customer-type-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-radius: var(--radius-xl);
    /* background: var(--muted); */
  }
  
  .customer-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: transparent;
    color: #878787;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s, border-color 0.15s;
  }
  
  .customer-toggle-btn:hover:not(.active) {
    background: color-mix(in oklch, var(--card) 50%, transparent);
  }
  
  .customer-toggle-btn.active {
    color: #0066cc;
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
    border-color: #0066cc;
  }
  
  .customer-toggle-btn.active::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    border-radius: 9999px;
    border: 1px solid #0066cc;
    color: #0066cc;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
  }
  
  .customer-toggle-label {
    font-size: 16px;
    font-weight: 500;
  }
  
  .customer-toggle-sub {
    font-size: 12px;
    color:#878787;
  }

  .option-toggle-group {
    display: grid;
    gap: 8px;
  }

  .option-toggle-group--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .option-toggle-group--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .option-toggle-group--contract-term {
    grid-template-columns: calc((175px - 8px) / 2) calc((175px - 8px) / 2) 175px;
    width: calc(175px + 8px + 175px);
    max-width: 100%;
  }

  @media (max-width: 1190px) {
    .option-toggle-group--contract-term {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      width: 100%;
    }
  }

  .option-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 10px 8px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: transparent;
    color: #878787;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s, border-color 0.15s;
  }

  .option-toggle-btn:hover:not(.active) {
    background: color-mix(in oklch, var(--card) 50%, transparent);
  }

  .option-toggle-btn.active {
    color: #0066cc;
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
    border-color: #0066cc;
  }

  .option-toggle-btn.active::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    border: 1px solid #0066cc;
    border-radius: 9999px;
    background: transparent;
    color: #0066cc;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
  }

  .option-toggle-label {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
  }

  
  /* Quote form */
  .quote-form {
    display: grid;
    gap: 20px;
  }
  
  .quote-form-tags {
    display: none;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  @media (min-width: 768px) {
    .quote-form {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quote-form-tags {
      display: flex;
    }

    .quote-form-tags .badge {
      font-size: 14px;
      font-weight: 600;
      padding: 14px;
    }
  }
  
  .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .form-field label,
  .form-field .form-field-label {
    font-size: 15px;
    font-weight: 500;
    color: #000;
  }
  
  .select-wrap {
    position: relative;
  }
  
  .motorcycle-finance-root .select,
  .motorcycle-finance-root select.select {
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    height: 40px;
    padding: 6px 32px 6px 10px;
    border: 1px solid var(--input);
    border-radius: var(--radius-lg);
    border-color: #0066cc;
    background: transparent;
    color: var(--foreground);
    appearance: none;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
  }

  .motorcycle-finance-root .select option {
    font-size: 16px;
    font-weight: 500;
  }
  
  .motorcycle-finance-root .select:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px color-mix(in oklch, var(--ring) 50%, transparent);
  }
  
  .motorcycle-finance-root .select-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #878787;
    pointer-events: none;
  }
  
  .vehicle-select-wrap {
    position: relative;
  }
  
  .vehicle-select-trigger {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    padding: 6px 32px 6px 10px;
    border: 1px solid var(--input);
    border-radius: var(--radius-lg);
    border-color: #0066cc;
    background: transparent;
    color: var(--foreground);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  
  .vehicle-select-trigger:hover {
    border-color: color-mix(in oklch, var(--input) 70%, var(--foreground));
  }
  
  .vehicle-select-trigger:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px color-mix(in oklch, var(--ring) 50%, transparent);
  }
  
  .vehicle-select-value {
    display: flex;
    align-items: baseline;
    gap: 6px;
    min-width: 0;
  }
  
  .vehicle-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--foreground);
  }
  
  .vehicle-cc {
    font-size: 14px;
    font-weight: 400;
    color: #878787;
  }

  .vehicle-hot-tag {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    height: 12px;
    padding: 0 4px;
    border-radius: 9999px;
    background: #FF8921;
    color: #ffffff;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1;
  }

  .vehicle-select-primary {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
  }

  .vehicle-select-primary .vehicle-name {
    min-width: 0;
  }
  
  .vehicle-select-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 20;
    max-height: 256px;
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--popover);
    color: var(--popover-foreground);
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
    scrollbar-width: thin;
    scrollbar-color: #c4c4c4 transparent;
  }

  .vehicle-select-menu::-webkit-scrollbar {
    width: 4px;
  }

  .vehicle-select-menu::-webkit-scrollbar-track {
    background: transparent;
  }

  .vehicle-select-menu::-webkit-scrollbar-thumb {
    background: #c4c4c4;
    border-radius: 2px;
  }
  
  .vehicle-select-group-label {
    padding: 8px 12px 4px;
    font-size: 12px;
    font-weight: 500;
    color: #0066cc;
  }
  
  .vehicle-select-option {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 8px 12px;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s;
  }
  
  .vehicle-select-option:hover,
  .vehicle-select-option.active {
    background: var(--accent);
  }
  
  /* Results section */
  .results-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .results-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }

  .results-header h2 {
    font-size: 22px;
    font-weight: 700;
  }

  .results-title-label {
    margin-left: 6px;
    font-size: 14px;
    font-weight: 400;
    color: var(--muted-foreground);
  }
  
  .motorcycle-finance-root .product-cards {
    display: grid;
    gap: 16px;
  }
  
  @media (min-width: 768px) {
    .motorcycle-finance-root .product-cards {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Product card — style.css 전역 .product-card(270px 고정) 덮어쓰기 */
  .motorcycle-finance-root .product-card {
    width: 100%;
    height: auto;
    min-height: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    position: relative;
    cursor: default;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--card);
    color: var(--card-foreground);
    border: 1px solid #e4e4e4;
    box-shadow: none;
  }

  .motorcycle-finance-root .product-card:hover {
    transform: none;
  }
  
  /* .product-card.cheapest {
    box-shadow: 0 0 0 2px var(--primary);
  } */

  .motorcycle-finance-root .product-card--featured {
    border: 2px solid transparent;
    background:
      linear-gradient(var(--card), var(--card)) padding-box,
      var(--mf-promo-gradient) border-box;
  }

  .motorcycle-finance-root .product-card-index {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    padding: 0 6px 0 0;
    border-radius: 9999px;
    background: transparent;
    color: #17171b;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
  }
  
  .product-card.unavailable {
    opacity: 0.6;
  }
  
  .product-card-header {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px 24px 0;
  }
  
  .product-card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
  }
  
  .product-card-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
  }
  
  .product-card-title-row h3 {
    flex: 1;
    min-width: 0;
    font-size: 18px;
    font-weight: 700;
  }

  .product-card-title-row .featured-price {
    flex-shrink: 0;
    margin-left: auto;
    text-align: right;
  }
  
  .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    padding: 12px 8px;
    border-radius: 9999px;
    background: var(--secondary);
    color: #0066cc;
    font-size: 13px;
    font-weight: 500;
  }

  .motorcycle-finance-root .badge--best {
    background: linear-gradient(
      135deg,
      rgb(230 126 34 / 0.88) 8%,
      rgb(216 114 249 / 0.88) 35%,
      rgb(0 102 204 / 0.88) 70%,
      rgb(7 158 119 / 0.88) 80%
    );
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  
  .separator {
    border: none;
    border-top: 1px solid #e9e9e9;
    margin: 0;
  }
  
  .separator-sm {
    margin: 2px 0;
  }
  
  .product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 28px;
    padding: 14px 24px 24px;
  }

  @media (max-width: 767px) {
    .product-card-body {
    padding: 10px 24px 20px;
    gap: 8px;
    }

    .product-card-actions {
      margin-bottom: -20px;
    }
  }
  
  .unavailable-state {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 0;
    text-align: center;
  }
  
  .unavailable-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: var(--muted);
    color: #878787;
  }
  
  .unavailable-state p {
    font-size: 14px;
    color: #878787;
    line-height: 1.625;
  }
  
  .product-card.unavailable-notice .unavailable-state p {
    color: #878787;
    font-weight: 500;
  }
  
  .featured-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .featured-price-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }
  
  .motorcycle-finance-root .featured-price-amount {
    font-family: "Geist", var(--font-sans);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #0066cc;
  }

  .motorcycle-finance-root .product-card--featured .featured-price-amount {
    background: linear-gradient(135deg, #E67E22 5%, #D872F9 35%, #0066CC 75%, #079E77 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  
  .featured-price-unit {
    font-size: 13px;
  }
  
  .price-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    font-size: 14px;
    min-height: 90px;
  }
  
  .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .price-row dt {
    color: #616a75;
  }
  
  .price-row dd {
    margin: 0;
    font-weight: 500;
    color: #878787;
  }
  
  .price-row.total dt {
    color: #878787;
    font-weight: 500;
  }
  
  .price-row.total dd {
    font-size: 13px;
    font-weight: 500;
    color: #878787;
  }
  
  .product-notes-heading {
    display: none;
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    color: #878787;
  }

  .product-notes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* margin-top: auto; */
    padding: 12px;
    border-radius: var(--radius-lg);
    background: #f4f7fc;
  }

  @media (max-width: 767px) {
    .motorcycle-finance-root .product-card-extra {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .motorcycle-finance-root .product-card-extra-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      margin: 0;
      padding: 10px 0 6px;
      border: 0;
      background: transparent;
      color: #878787;
      font-size: 12px;
      font-weight: 400;
      cursor: pointer;
    }

    .motorcycle-finance-root .product-card-extra-chevron {
      display: inline-flex;
      color: #878787;
      transition: transform 0.2s ease;
    }

    .motorcycle-finance-root .product-card-extra-toggle.is-open .product-card-extra-chevron {
      transform: rotate(180deg);
    }

    .motorcycle-finance-root .product-card-extra-panel {
      display: none;
      flex-direction: column;
      gap: 10px;
      padding-top: 10px;
    }

    .motorcycle-finance-root .product-card-extra-panel.is-open {
      display: flex;
    }

    .motorcycle-finance-root .price-details {
      min-height: 0;
    }
  }

  @media (min-width: 768px) {
    .motorcycle-finance-root .product-card-extra-toggle {
      display: none;
    }

    .motorcycle-finance-root .product-card-extra-panel {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .product-notes-heading {
      display: block;
    }
  }
  
  .product-note-row {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .product-note-row svg {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    margin-top: 2px;
    color: var(--primary);
  }

  .product-note-row--gift svg {
    color: #0066cd;
    stroke: #0066cd;
  }

  .product-note-row--discount svg {
    width: 14px;
    height: 14px;
    color: #16a34a;
    fill: #16a34a;
  }

  .product-note-row--waiver svg {
    color: #e67e22;
    stroke: #e67e22;
  }
  
  .product-note-row span {
    font-size:14px;
    color: #191919;
    line-height: 2;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 36px;
    padding: 0 10px;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, transform 0.1s;
    white-space: nowrap;
  }
  
  .btn:active:not(:disabled) {
    transform: translateY(1px);
  }
  
  .btn:disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
  }
  
  .btn svg {
    flex-shrink: 0;
  }
  
  .btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: transparent;
  }
  
  .btn-primary:hover:not(:disabled) {
    background: color-mix(in oklch, var(--primary) 80%, transparent);
  }
  
  .btn-outline {
    background: #ffffff;
    color: var(--foreground);
    border-color: var(--border);
  }
  
  .btn-outline:hover:not(:disabled) {
    background: var(--muted);
  }
  
  .btn-full {
    width: 100%;
  }
  
  .compare-btn {
    margin-top: 0;
  }

  .product-card-actions {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: auto;
    margin-left: -24px;
    margin-right: -24px;
    margin-bottom: -24px;
    border-top: 1px solid #e9e9e9;
    overflow: hidden;
  }

  .product-card-actions .compare-btn,
  .product-card-actions .select-product-btn {
    flex: 1;
    min-width: 0;
    margin-top: 0;
    height: auto;
    min-height: 46px;
    padding: 12px 10px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 0;
    background: #ffffff;
    color: #333333;
    white-space: nowrap;
    transition: background 0.15s;
  }

  .product-card-actions .select-product-btn {
    border-left: 1px solid #e9e9e9;
    background: #f4f7fc;
    color: #333333;
  }

  .product-card-actions .compare-btn:hover:not(:disabled) {
    background: #eef0f3;
  }

  .product-card-actions .select-product-btn:hover:not(:disabled) {
    background: #e8eef8;
  }

  .product-card-actions .compare-btn:first-child {
    border-bottom-left-radius: calc(var(--radius-xl) - 1px);
  }

  .product-card-actions .select-product-btn:last-child {
    border-bottom-right-radius: calc(var(--radius-xl) - 1px);
  }

  .motorcycle-finance-root .product-card--featured .product-card-actions .compare-btn:first-child {
    border-bottom-left-radius: calc(var(--radius-xl) - 2px);
  }

  .motorcycle-finance-root .product-card--featured .product-card-actions .select-product-btn:last-child {
    border-bottom-right-radius: calc(var(--radius-xl) - 2px);
  }

  .motorcycle-finance-root .select-product-btn svg {
    flex-shrink: 0;
  }

  .motorcycle-finance-root .product-card-actions .select-product-btn svg {
    stroke: #333333;
    color: #333333;
  }

  .motorcycle-finance-root .product-card.selected {
    border-color: var(--primary);
  }

  .motorcycle-finance-root .product-card-actions .compare-btn.compare-btn-added {
    background: #0066cc;
    color: #ffffff;
  }

  .motorcycle-finance-root .product-card-actions .compare-btn.compare-btn-added svg {
    stroke: #ffffff;
    color: #ffffff;
  }

  .motorcycle-finance-root .product-card-actions .compare-btn.compare-btn-added:hover:not(:disabled) {
    background: #005bb5;
  }

  .motorcycle-finance-root .contact-apply-btn:disabled {
    background: #c4c4c4;
    color: #ffffff;
    cursor: not-allowed;
    box-shadow: none;
  }

  .motorcycle-finance-root .contact-apply-btn:disabled:hover {
    background: #c4c4c4;
    color: #ffffff;
  }
  
  .product-notes + .product-card-actions,
  .product-card-body > .product-card-actions:last-child {
    margin-top: auto;
  }
  
  /* Contact bar (fixed bottom) */
  .contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    /* background: color-mix(in oklch, var(--card) 72%, transparent); */
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    backdrop-filter: blur(12px) saturate(180%);
    border-top: 1px solid color-mix(in oklch, var(--foreground) 8%, transparent);
    box-shadow: 0 -4px 24px rgb(0 0 0 / 0.06);
  }
  
  .motorcycle-finance-root .contact-bar-inner {
    box-sizing: border-box;
  }
  
  .contact-bar-row {
    display: flex;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 0;
  }

  .contact-quick-actions {
    display: flex;
    flex-shrink: 0;
    gap: 6px;
  }

  .motorcycle-finance-root .contact-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #111111;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.15s;
  }

  .motorcycle-finance-root .contact-icon-btn:hover {
    background: transparent;
    opacity: 0.65;
  }

  .motorcycle-finance-root .contact-icon-btn .contact-icon {
    width: 26px;
    height: 26px;
  }

  .motorcycle-finance-root .contact-icon-btn .contact-icon-kakao {
    width: 30px;
    height: 30px;
  }

  .motorcycle-finance-root .contact-kakao-btn {
    color: #191919;
  }

  .motorcycle-finance-root .contact-compare-btn {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 8px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    color: #111111;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .motorcycle-finance-root .contact-compare-btn:hover:not(:disabled) {
    background: #f5f5f5;
    border-color: #b8b8b8;
    color: #111111;
  }

  .motorcycle-finance-root .contact-compare-btn:disabled {
    background: #ffffff;
    border-color: #d9dfe5;
    color: #999999;
    cursor: not-allowed;
    box-shadow: none;
  }

  .motorcycle-finance-root .contact-compare-btn:not(:disabled) {
    background: #0066cc;
    border-color: #0066cc;
    color: #ffffff;
  }

  .motorcycle-finance-root .contact-compare-btn:not(:disabled):hover {
    background: #0066cc;
    border-color: #0066cc;
    color: #ffffff;
  }

  .motorcycle-finance-root .contact-apply-btn {
    flex: 2;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    height: 40px;
    padding: 0 12px;
    border: none;
    border-radius: 8px;
    background: #0066cd;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
    transition: background 0.15s;
  }

  .motorcycle-finance-root .contact-apply-btn .contact-apply-product,
  .motorcycle-finance-root .contact-apply-btn .contact-apply-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
  }

  .contact-apply-product {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
    min-width: 0;
  }

  .contact-apply-label {
    flex-shrink: 0;
  }
  
  .motorcycle-finance-root .contact-apply-btn:hover:not(:disabled) {
    background: #005bb5;
    color: #ffffff;
  }

  .motorcycle-finance-root .contact-apply-btn:hover:not(:disabled) .contact-apply-product,
  .motorcycle-finance-root .contact-apply-btn:hover:not(:disabled) .contact-apply-label {
    color: #ffffff;
  }
  
  /* Comparison tray */
  .comparison-tray {
    position: fixed;
    left: 0;
    right: 0;
    bottom: var(--contact-bar-height);
    z-index: 40;
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    backdrop-filter: blur(12px) saturate(180%);
    border-top: 1px solid color-mix(in oklch, var(--foreground) 8%, transparent);
    box-shadow: 0 -4px 24px rgb(0 0 0 / 0.06);
  }
  
  .motorcycle-finance-root .tray-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
    box-sizing: border-box;
  }
  
  .tray-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .tray-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
  }
  
  .tray-clear {
    display: flex;
    align-items: center;
    gap: 4px;
    border: none;
    background: none;
    font-size: 12px;
    color: #000;
    cursor: pointer;
    transition: color 0.15s;
  }
  
  .tray-clear:hover {
    color: #333;
  }
  
  .tray-items {
    display: flex;
    align-items: stretch;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  
  .tray-item {
    position: relative;
    display: flex;
    min-width: 160px;
    flex: 1;
    flex-direction: column;
    gap: 2px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--background);
  }
  
  .tray-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    display: flex;
    border: none;
    background: none;
    color: #878787;
    cursor: pointer;
    padding: 0;
    transition: color 0.15s;
  }
  
  .tray-remove:hover {
    color: var(--destructive);
  }
  
  .tray-item-name {
    font-size: 14px;
    font-weight: 600;
    padding-right: 16px;
  }
  
  .tray-item-meta {
    font-size: 12px;
    color: #878787;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .tray-item-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
  }
  
  .tray-item-price-unit {
    font-size: 12px;
    font-weight: 400;
    color: #878787;
  }
  
  .tray-empty {
    display: none;
    min-width: 160px;
    flex: 1;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
    font-size: 12px;
    color: #878787;
  }
  
  @media (min-width: 640px) {
    .tray-empty {
      display: flex;
    }
  }
  
  /* Dialog */
  .dialog-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgb(0 0 0 / 0.1);
    backdrop-filter: blur(2px);
  }
  
  .comparison-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 51;
    transform: translate(-50%, -50%);
    width: calc(100% - 32px);
    max-width: 850px;
    overflow-y: auto;
    padding: 16px 24px;
    border-radius: var(--radius-xl);
    background: var(--popover);
    color: var(--popover-foreground);
    box-shadow: 0 0 0 1px color-mix(in oklch, var(--foreground) 10%, transparent);
  }
  
  .dialog-header {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding-right: 32px;
  }
  
  .dialog-header h2 {
    font-size: 16px;
    font-weight: 700;
  }
  
  .dialog-header p {
    font-size: 14px;
    color: #878787;
  }
  
  .dialog-close {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--foreground);
    cursor: pointer;
    transition: background 0.15s;
  }
  
  .dialog-close:hover {
    background: var(--muted);
  }
  
  .dialog-table-wrap {
    overflow-x: auto;
  }
  
  .dialog-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }
  
  .dialog-table th,
  .dialog-table td {
    padding: 16px 10px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
  }
  
  .dialog-table tfoot .dialog-tfoot-total td {
    border-top: 2px solid var(--border);
    border-bottom: none;
  }

  .dialog-table tfoot .dialog-tfoot-apply td {
    border-top: none;
    border-bottom: none;
    padding-top: 12px;
  }
  
  .dialog-table th:first-child,
  .dialog-table th:first-child,
  .dialog-table tbody td.row-label,
  .dialog-table tfoot .dialog-tfoot-total td.row-label {
    position: sticky;
    left: 0;
    z-index: 1;
    background: var(--popover);
    font-size: 12px;
    font-weight: 500;
    color: #878787;
    min-width: 72px;
    padding-right: 4px;
    border-right: 0.7px solid var(--border);
  }

  .dialog-table tfoot .dialog-tfoot-apply td.row-label--spacer {
    position: sticky;
    left: 0;
    z-index: 1;
    background: var(--popover);
    min-width: 72px;
    padding-right: 4px;
    border-right: none;
  }

  .dialog-table th:not(:first-child),
  .dialog-table td:not(.row-label) {
    text-align: center;
  }

  .dialog-table th:not(:first-child) .dialog-col-header {
    align-items: center;
  }

  .dialog-table th:not(:first-child) .dialog-col-title-row {
    justify-content: center;
  }

  .dialog-table td:not(.row-label) .total-price-cell {
    align-items: center;
  }

  .dialog-table tfoot .dialog-tfoot-apply td:not(.row-label) {
    text-align: center;
    vertical-align: top;
  }
  
  .dialog-col-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .dialog-col-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .comparison-dialog .badge--best {
    font-size: 8px;
    font-weight: 700;
    height: auto;
    padding: 2px 4px;
  }
  
  .cheapest-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
    padding: 3px 6px;
    border-radius: 9999px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 8px;
    font-weight: 600;
  }
  
  .dialog-col-name {
    font-size: 16px;
    font-weight: 700;
  }

  .dialog-col-savings {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    background: linear-gradient(135deg, #e67e22 5%, #d872f9 35%, #0066cc 75%, #079e77 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .dialog-col-meta {
    font-size: 12px;
    font-weight: 400;
    color: #878787;
  }
  
  .cheapest-col {
    background: color-mix(in oklch, var(--primary) 5%, transparent);
  }
  
  .total-price {
    font-size: 20px;
    font-weight: 700;
    color: #0066CC;
  }

  .total-price--gradient {
    background: linear-gradient(135deg, #e67e22 5%, #d872f9 35%, #0066cc 75%, #079e77 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .comparison-dialog .total-price-unit {
    margin-left: 3px;
    font-size: 15px;
    font-weight: 400;
  }

  .total-price-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .total-price-cell {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .dialog-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-width: 150px;
    min-height: 38px;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    background: #f4f7fc;
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
  }

  .dialog-apply-btn svg {
    flex-shrink: 0;
  }

  .dialog-apply-btn:hover {
    background: #f4f7fc;;
  }
  
  .dialog-footnote {
    padding-top: 24px;
    font-size: 12px;
    color: #878787;
    line-height: 1.625;
  }

  /* Notice */
  .mf-finance-notice {
    width: 100%;
    padding: 24px 16px;
    margin-top: 8px;
  }

  .motorcycle-finance-root .mf-finance-notice-title {
    font-size: 14px;
    font-weight: 800;
    color: #616a75;
    margin-bottom: 12px;
  }

  .motorcycle-finance-root .mf-finance-notice-list {
    list-style-type: disc;
    margin: 0;
    padding-left: 16px;
  }

  .motorcycle-finance-root .mf-finance-notice-list li {
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #878787;
    word-break: keep-all;
  }

  .motorcycle-finance-root .mf-finance-notice-list li::marker {
    color: #878787;
    font-size: 8px;
  }

  .motorcycle-finance-root .mf-finance-notice-list li:last-child {
    margin-bottom: 0;
  }

  /* Site footer (common) */
  body.motorcycle-finance-page .mo_navi_bx {
    display: none !important;
  }

  body.motorcycle-finance-page .mf-site-footer {
    margin-top: 0;
  }

  body.motorcycle-finance-page .mf-site-footer .mo_footer {
    margin-top: 0;
    transform: none;
  }

  @media (max-width: 768px) {
    body.motorcycle-finance-page .mf-site-footer {
      padding-bottom: var(--contact-bar-height);
    }
  }
  