/* Hamaya Auto Prototype - Styles
   Notes:
   - Pure CSS (no framework) to keep Shopify porting easy.
   - Replace placeholder colors/fonts later to match your brand.
*/

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #081018;
  padding: 12px 24px;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s ease;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

/* Focus States for Accessibility */
*:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

:root{
  --bg: #0b1220;
  --bg2: #0f172a;
  --card: #111827;
  --muted: #9ca3af;
  --text: #e5e7eb;
  --brand: #3b82f6; /* accent - 科技蓝 */
  --brand-light: #60a5fa; /* 浅蓝用于hover */
  --brand2: #22c55e; /* success */
  --danger: #ef4444;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --radius: 14px;
  --max: 1200px;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family:var(--sans);
  background: var(--bg);
  color:var(--text);
  line-height:1.5;
  position: relative;
}

/* 背景光晕 - 固定定位，避免滚动眩晕 */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(59,130,246,0.12), transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(34,197,94,0.06), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

a{color:inherit; text-decoration:none;}
a:hover{opacity:0.95; text-decoration:underline;}
a.link-accent{color: var(--brand-light);}
a.link-accent:hover{color: var(--brand); text-decoration:underline;}
img{max-width:100%; height:auto; display:block;}

.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

header.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5,9,20,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

/* 补偿固定导航栏高度 */
main {
  padding-top: 100px;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 200px;
}

.brand-badge{
  width:34px;
  height:34px;
  border-radius:10px;
  background: linear-gradient(135deg, rgba(59,130,246,0.9), rgba(34,197,94,0.9));
  box-shadow: 0 10px 30px rgba(59,130,246,0.25);
}

.brand-title{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-title strong{font-size:14px; letter-spacing:0.08em; text-transform:uppercase;}
.brand-title span{font-size:12px; color:var(--muted);}

.nav{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  font-size:13px;
  color:rgba(229,231,235,0.92);
  padding:8px 10px;
  border-radius:10px;
}
.nav a.active{
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  text-decoration:none;
}

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color:var(--text);
  padding:8px 12px;
  border-radius:12px;
  cursor:pointer;
}

@media (max-width: 860px){
  .nav-toggle{display:block;}
  .nav{
    display:none;
    width:100%;
    margin-top:10px;
    padding:10px;
    border:1px solid var(--border);
    border-radius:14px;
    background: rgba(255,255,255,0.03);
  }
  .nav.open{display:flex;}
  .header-inner{flex-wrap:wrap;}
}

/* Hero */
.hero{
  padding:0 0 28px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:24px;
  align-items:stretch;
}
@media (max-width: 960px){
  .hero-grid{grid-template-columns: 1fr;}
}
.hero-card{
  border:1px solid var(--border);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-content{
  padding:28px;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  color: var(--muted);
  letter-spacing:0.12em;
  text-transform:uppercase;
}
.kicker .dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(59,130,246,0.2);
}
.hero h1{
  margin:14px 0 10px;
  font-size:42px;
  line-height:1.08;
}
@media (max-width: 520px){
  .hero h1{font-size:34px;}
}
.hero p{
  margin:0 0 18px;
  color: rgba(229,231,235,0.86);
  font-size:16px;
}

.btn-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius: 12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.04);
  font-size:14px;
  cursor:pointer;
  transition: transform 0.05s ease;
  text-decoration:none;
}
.btn:hover{transform: translateY(-1px); text-decoration:none;}
.btn.primary{
  background: linear-gradient(135deg, rgba(59,130,246,0.95), rgba(34,197,94,0.85));
  color: #fff;
  border: none;
  font-weight: 700;
}
.btn.primary:hover{
  background: linear-gradient(135deg, rgba(96,165,250,0.95), rgba(34,197,94,0.9));
}
.btn.ghost{
  background: transparent;
}
.btn.small{padding:9px 12px; font-size:13px;}

.hero-visual{
  position:relative;
  min-height: 240px;
}
.hero-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-visual .overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(11,18,32,0.0), rgba(11,18,32,0.86));
}
.hero-visual .metrics{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.metric{
  border:1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  padding:12px;
  text-align: center;
}
.metric strong{
  display:block;
  font-size:14px;
}
.metric span{
  display:block;
  font-size:12px;
  color: var(--muted);
}

/* Sections */
.section{
  padding-bottom: 22px;
  padding-top: 22px;
}

/* main.section 保持导航栏补偿 */
main.section {
  padding-top: 100px;
}

/* main 内部的 section 不重复添加 padding-top */
main > .section {
  padding-top: 0;
}
.section h2{
  margin:0 0 10px;
  font-size:22px;
}
.section p.lead{
  margin:0 0 18px;
  color: rgba(229,231,235,0.84);
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 920px){
  .grid-3{grid-template-columns: 1fr;}
}

.feature{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  padding:16px;
}
.feature h3{margin:0 0 6px; font-size:16px;}
.feature p{margin:0; color: rgba(229,231,235,0.82); font-size:13px;}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius: 999px;
  padding:6px 10px;
  font-size:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: rgba(229,231,235,0.88);
}
.badge.stock{border-color: rgba(34,197,94,0.35); }
.badge.auction{border-color: rgba(59,130,246,0.35); }
.badge.danger{border-color: rgba(239,68,68,0.35); }
.badge.promo{
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-color: rgba(231,76,60,0.5);
  color: #fff;
  font-weight: 600;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231,76,60,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(231,76,60,0); }
}

/* Highlight card */
.card.highlight{
  border-color: rgba(231,76,60,0.4);
  background: linear-gradient(135deg, rgba(231,76,60,0.08), rgba(255,255,255,0.03));
  position: relative;
}
.card.highlight::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e74c3c, #f39c12);
}

/* Listings */
.toolbar{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin:16px 0 10px;
}
.filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.field{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.field label{
  font-size:12px;
  color: var(--muted);
}
.field select, .field input{
  border:1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 12px;
  padding:10px 12px;
  min-width: 160px;
  outline:none;
}
.field input{min-width: 200px;}
@media (max-width: 520px){
  .field select, .field input{min-width: 100%;}
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 1100px){
  .cards{grid-template-columns: repeat(2, 1fr);}
}
@media (max-width: 720px){
  .cards{grid-template-columns: 1fr;}
}

.card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
}
.card .thumb{
  aspect-ratio: 1 / 1;
  height: 0;
  min-height: 220px;
  background: #0b1220;
  position: relative;
  overflow: hidden;
}
.card .thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.card .thumb .placeholder{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2332, #0f172a);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}
.card .thumb .placeholder-icon{
  font-size: 48px;
  margin-bottom: 10px;
  opacity: 0.5;
}
.card-body{
  padding:14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-title{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
.card h3{
  margin:0;
  font-size:16px;
  line-height: 1.4;
  min-height: 2.8em;
}
.card .meta{
  margin-top:6px;
  color: rgba(229,231,235,0.78);
  font-size:13px;
}
.price{
  margin-top:10px;
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.price strong{
  font-size:18px;
  color: var(--brand-light);
}
.price span{
  font-size:12px;
  color: var(--muted);
}
.card-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: auto;
  padding-top: 12px;
}

/* Detail */
.breadcrumbs{
  padding:14px 0 0;
  font-size:12px;
  color: var(--muted);
}
.detail{
  padding:18px 0 40px;
}
.detail-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:20px;
}
@media (max-width: 980px){
  .detail-grid{grid-template-columns: 1fr;}
}

.gallery{
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,0.03);
}
.gallery-main{
  aspect-ratio: 3 / 2;
}
.gallery-main img{width:100%; height:100%; object-fit:cover;}
.gallery-thumbs{
  display:flex;
  gap:8px;
  padding:10px;
  border-top:1px solid var(--border);
  overflow:auto;
}
.thumb-btn{
  border:1px solid var(--border);
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
  overflow:hidden;
  cursor:pointer;
  padding:0;
  width:86px;
  min-width:86px;
  aspect-ratio: 3 / 2;
}
.thumb-btn img{width:100%; height:100%; object-fit:cover;}

.panel{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  padding:16px;
  box-shadow: var(--shadow);
}
.panel h2, .panel h3{margin:0 0 10px;}
.panel p{margin:0 0 10px; color: rgba(229,231,235,0.82);}

.specs{
  width:100%;
  border-collapse: collapse;
  font-size:13px;
}
.specs td{
  border-top:1px solid var(--border);
  padding:10px 0;
}
.specs td:first-child{
  color: var(--muted);
  width: 38%;
}

.note{
  font-size:12px;
  color: var(--muted);
}
hr.sep{
  border:none;
  border-top:1px solid var(--border);
  margin:14px 0;
}

/* Forms */
form{
  display:grid;
  gap:10px;
}
.input, textarea{
  border:1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 12px;
  padding:10px 12px;
  outline:none;
}
textarea{min-height:120px; resize:vertical;}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
@media (max-width: 620px){
  .form-row{grid-template-columns:1fr;}
}
.help{
  font-size:12px;
  color: var(--muted);
}

/* Footer */
footer.site-footer{
  border-top:1px solid var(--border);
  margin-top:30px;
  padding:24px 0 40px;
  background: rgba(0,0,0,0.08);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap:16px;
}
@media (max-width: 920px){
  .footer-grid{grid-template-columns: 1fr;}
}
.footer-grid h4{margin:0 0 10px; font-size:14px;}
.footer-grid p, .footer-grid a{
  margin:0 0 8px;
  font-size:13px;
  color: rgba(229,231,235,0.78);
}
.smallprint{
  margin-top:12px;
  font-size:12px;
  color: rgba(229,231,235,0.55);
}



/* FAQ */
.faq-list{
  display:grid;
  gap:10px;
}
.faq-item{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  overflow:hidden;
}
.faq-q{
  width:100%;
  text-align:left;
  background: transparent;
  color: var(--text);
  border:none;
  padding:14px 16px;
  cursor:pointer;
  font-size:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.faq-q span{
  color: var(--muted);
  font-size:12px;
}
.faq-a{
  border-top:1px solid var(--border);
  padding:14px 16px;
  color: rgba(229,231,235,0.82);
  font-size:13px;
}

/* Form Validation States */
.input:invalid:not(:placeholder-shown),
textarea.input:invalid:not(:placeholder-shown) {
  border-color: var(--danger);
}

.input:valid:not(:placeholder-shown),
textarea.input:valid:not(:placeholder-shown) {
  border-color: var(--brand2);
}

.form-error {
  color: var(--danger);
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.form-error.visible {
  display: block;
}

/* Loading States */
.btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Image Loading Placeholder */
.img-loading {
  background: linear-gradient(90deg, var(--card) 25%, rgba(255,255,255,0.05) 50%, var(--card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.toast.visible {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  border-color: rgba(34,197,94,0.5);
}

.toast.error {
  border-color: rgba(239,68,68,0.5);
}

/* Responsive Image Container */
.img-container {
  position: relative;
  overflow: hidden;
}

.img-container img {
  transition: opacity 0.3s ease;
}

.img-container img[data-src] {
  opacity: 0;
}

.img-container img.loaded {
  opacity: 1;
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .btn,
  .nav-toggle,
  .filters,
  form {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .card,
  .panel {
    break-inside: avoid;
    border: 1px solid #ccc;
    box-shadow: none;
  }
}

/* Visually Hidden (Screen Reader Only) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Better focus for buttons */
.btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Improve card hover */
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
}

/* Gallery improvements */
.gallery-main img {
  transition: opacity 0.3s ease;
}

.thumb-btn {
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.thumb-btn:hover,
.thumb-btn:focus-visible {
  border-color: var(--brand);
  transform: scale(1.05);
}

.thumb-btn[aria-pressed="true"] {
  border-color: var(--brand);
}

/* Vehicle Detail - Description 和 Highlights 等高对齐 */
.detail-grid {
  align-items: stretch;
}

.detail-grid > div:first-child {
  display: flex;
  flex-direction: column;
}

.detail-grid > div:last-child {
  display: flex;
  flex-direction: column;
}

.detail-grid > div:last-child > .panel:first-child {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Highlights 拉伸填充剩余空间，内容从上方开始 */
.detail-grid > div:last-child > .panel:first-child h3:last-of-type {
  text-align: center;
}

.detail-grid > div:last-child > .panel:first-child #features {
  flex: 1;
  margin-top: 12px;
}

.detail-grid > div:last-child > .panel:first-child #features ul {
  margin: 0;
}

/* Book inspection 和 Enquire 并排显示，与上方 detail-grid 列宽对齐 */
.action-panels {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.action-panels .panel {
  margin-top: 0;
}

@media (max-width: 768px) {
  .action-panels {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   移动端适配 (Mobile Responsive)
   ======================================== */

@media (max-width: 768px) {
  /* 容器内边距 */
  .container {
    padding: 0 16px;
  }

  /* 导航栏补偿 */
  main {
    padding-top: 80px;
  }
  main.section {
    padding-top: 80px;
  }

  /* Hero 区域 */
  .hero-content {
    padding: 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .kicker {
    font-size: 11px;
  }

  /* 按钮优化 - 触摸友好 */
  .btn {
    padding: 12px 16px;
    font-size: 15px;
    min-height: 44px;
  }

  .btn-row {
    gap: 10px;
  }

  .btn.small {
    padding: 10px 14px;
    font-size: 14px;
  }

  /* Hero 指标卡片 */
  .hero-visual .metrics {
    grid-template-columns: 1fr;
    gap: 8px;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .metric {
    padding: 10px;
  }

  .metric strong {
    font-size: 13px;
  }

  .metric span {
    font-size: 11px;
  }

  /* Section 标题 */
  .section h2 {
    font-size: 20px;
  }

  .section p.lead {
    font-size: 14px;
  }

  /* Panel 和 Card */
  .panel {
    padding: 14px;
  }

  .feature {
    padding: 14px;
  }

  /* 工具栏/筛选器 */
  .toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .filters {
    flex-direction: column;
    gap: 8px;
  }

  .field {
    width: 100%;
  }

  .field select,
  .field input {
    min-width: 100%;
    width: 100%;
    padding: 12px;
    font-size: 16px; /* 防止 iOS 缩放 */
  }

  /* 表格 */
  .specs {
    font-size: 12px;
  }

  .specs td {
    padding: 8px 0;
  }

  /* 表单 */
  .input,
  textarea {
    padding: 12px;
    font-size: 16px; /* 防止 iOS 缩放 */
  }

  textarea {
    min-height: 100px;
  }

  /* 车辆详情页 */
  .detail {
    padding: 14px 0 30px;
  }

  .gallery-main {
    aspect-ratio: 4 / 3;
  }

  .gallery-thumbs {
    padding: 8px;
    gap: 6px;
  }

  .thumb-btn {
    width: 70px;
    min-width: 70px;
  }

  /* Description 和 Highlights 在移动端不等高 */
  .detail-grid > div:last-child > .panel:first-child {
    flex: 0 0 auto;
  }

  .detail-grid > div:last-child > .panel:first-child #features {
    flex: 0 0 auto;
  }

  /* Book inspection 框按钮 */
  .action-panels .panel {
    padding: 16px;
  }

  /* Footer */
  footer.site-footer {
    padding: 20px 0 30px;
  }

  .footer-grid h4 {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .footer-grid p,
  .footer-grid a {
    font-size: 12px;
  }

  /* FAQ */
  .faq-q {
    padding: 12px 14px;
    font-size: 13px;
  }

  .faq-a {
    padding: 12px 14px;
    font-size: 12px;
  }
}

/* 超小屏幕 (< 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero-content {
    padding: 16px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-row {
    flex-direction: column;
  }

  .card h3 {
    font-size: 15px;
  }

  .price strong {
    font-size: 16px;
  }

  /* action-panels 内的按钮也全宽 */
  .action-panels .btn-row {
    flex-direction: column;
  }

  .action-panels .btn-row .btn {
    width: 100%;
  }
}
