/* QuickView 面板内的询盘按钮。样式对齐站内既有的红色主 CTA。
   用 .rey-quickviewPanel 前缀提高特异度，避免被 Rey 的 a/button 基础样式压掉
   （同一套主题里 button[type=...] 的 (0,1,1) 已经坑过三次）。 */
.rey-quickviewPanel .acs-qv-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 13px 26px;
  border-radius: 6px;
  background: #e63946;
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-decoration: none !important;
  line-height: 1;
  transition: background .2s ease, transform .2s ease;
}

.rey-quickviewPanel .acs-qv-cta:hover,
.rey-quickviewPanel .acs-qv-cta:focus-visible {
  background: #c92b39;
  color: #fff !important;
  transform: translateY(-1px);
}

.rey-quickviewPanel .acs-qv-cta-arr {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 520px) {
  .rey-quickviewPanel .acs-qv-cta {
    width: 100%;
    justify-content: center;
  }
}
