/** Shopify CDN: Minification failed

Line 9:0 Unexpected "<"
Line 551:0 Unexpected "<"

**/
/* home page */
/* inventory solutions section */
<style>
  .is-inventory-section {
    padding: 5px 5px;
    background: #FFFFFF;
    color: #1f2937;
    font-family: system-ui, -apple-system, sans-serif;
    margin-top: -3rem; /* 上方间距 */
    margin-bottom: 1rem; /* 下方间距 */
  }

  .is-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px;
  }

  .is-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .is-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1f2937;
  }

  .is-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .is-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .is-left-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .is-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    background: radial-gradient(circle, #FFFFFF 0%, #DEE4EE 100%);
    backdrop-filter: blur(10px);
    border-radius: 16px;
  }

  .is-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .is-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
  }

  .is-card-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
  }

  .is-card-image {
    margin-top: 15px;
    width: 100%;
  }

  .is-card-image img {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
  }

  .is-card-large {
    height: 100%;
  }

  .is-tag {
    display: inline-block;
    background: #e5eeff;
    color: #3b82f6;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
  }

  .is-large-image {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
  }

  @media (min-width: 768px) {
    .is-inventory-section {
      padding: 80px 20px;
    }

    .is-title {
      font-size: 48px;
    }

    .is-subtitle {
      font-size: 18px;
    }

    .is-cards-grid {
      grid-template-columns: 45% 55%;
      gap: 30px;
    }

    .is-left-cards {
      gap: 30px;
    }

    .is-card {
      padding: 30px;
    }

    .is-card-left, .is-card-right {
      flex-direction: row;
      align-items: center;
      gap: 30px;
    }

    .is-card-right {
      flex-direction: row-reverse;
    }

    .is-card-content {
      text-align: left;
    }

    .is-card-right .is-card-content {
      text-align: right;
    }

    .is-card-title {
      font-size: 24px;
    }

    .is-card-description {
      font-size: 16px;
    }

    .is-card-image {
      margin-top: 0;
      flex-shrink: 0;
      width: 45%;
    }

    .is-card-image img {
      height: 180px;
    }

    .is-large-image {
      height: 380px;
    }
  }

/* prdouct page*/

 /* 产品详情区块 支付/运输/质保/全球 */
.product-info-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 桌面端一行四列 */
  gap: 12px; /* 图标之间的间距 */
  padding: 3px; /* 缩小内边距 */
  background-color: #F8F9FA; /* 浅灰背景 */
  border-radius: 10px; /* 圆角 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 轻微阴影 */
  margin-top: 16px; /* 与上方内容的间距 */
  max-width: 800px; /* 限制区块宽度，避免太占版面 */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1px;
}

.icon-item {
  display: flex;
  flex-direction: column; /* 图标与文字垂直排列 */
  align-items: center; /* 居中对齐 */
  text-align: center;
  padding: 8px; /* 缩小单个块的内部间距 */
}

.icon-img {
  width: 28px; /* 缩小图标大小 */
  height: 28px;
  margin-bottom: 4px; /* 图标与文字的间距 */
}

.icon-text {
  font-size: 12px; /* 缩小文字大小 */
  color: #333; /* 深灰色 */
  font-weight: 500; /* 字体加粗 */
  line-height: 1.4; /* 行高 */
}

@media (max-width: 768px) {
  .product-info-icons {
    grid-template-columns: repeat(2, 1fr); /* 移动端两列布局 */
    gap: 10px; /* 缩小间距 */
    padding: 10px; /* 减小内边距 */
  }

  .icon-img {
    width: 24px; /* 缩小图标尺寸 */
    height: 24px;
  }

  .icon-text {
    font-size: 11px; /* 缩小文字大小 */
  }
}

/* 产品详情页小徽标样式 */
/* 整体容器样式 */
.status-container {
  display: flex;
  gap: 10px; /* 调整两个矩形之间的间距 */
  margin: 10px 0;
}

/* 单个矩形的样式 */
.status-box {
  flex: 1; /* 两个矩形均分宽度 */
  border: 2px solid #ddd; /* 默认边框颜色 */
  border-radius: 8px;
  padding: 10px;
  position: relative;
  text-align: center;
  font-size: 14px; /* 控制文字大小 */
}

/* Refurbished 矩形特定样式 */
.status-box.refurbished {
  border-color: #8DC63F; /* Refurbished 的绿色边框 */
}

/* New Factory Sealed 矩形特定样式 */
.status-box.factory-sealed {
  border-color: #A8B8C7; /* Factory Sealed 的蓝色边框 */
}

/* 文案样式 */
.status-text {
  font-weight: bold;
  color: #333;
}

/* Badge 样式 */
.badge {
  position: absolute;
  top: -10px; /* 向上溢出一点 */
  right: -10px; /* 向右溢出一点 */
  background-color: #DFF0C1; /* 淡绿色背景 */
  color: #6A983C; /* 深绿色文字 */
  font-size: 12px; /* 较小的文字 */
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Badge 内的小图标 */
.badge .leaf-icon {
  margin-left: 5px; /* 图标与文字的间距 */
}

/* 响应式调整 */
@media (max-width: 768px) {
  .status-container {
    flex-direction: column; /* 小屏幕下垂直布局 */
  }

  .status-box {
    margin-bottom: 10px; /* 调整间距 */
  }
}

/* Technical detail 样式样式 */
.technical-details {
  margin: 2rem 0;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #F9F9F9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.technical-details h2 {
  margin: 0;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0046AD;
  border-bottom: 1px solid #e5e5e5;
  text-transform: uppercase;
}

.specs-container {
  padding: 1.5rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-item {
  flex: 0 0 40%;
  font-weight: 600;
  padding-right: 20px;
  font-size: 0.9rem;
  color: #333;
}

.spec-parameter {
  flex: 0 0 60%;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .technical-details h2 {
    font-size: 1.1rem;
    padding: 1rem;
  }
  
  .specs-container {
    padding: 1rem;
  }
  
  .spec-item,
  .spec-parameter {
    flex: 0 0 50%;
  }
}

@media screen and (max-width: 480px) {
  .spec-row {
    padding: 12px 0;
  }
  
  .spec-item {
    padding-right: 10px;
  }
}

/* 文档下载样式 */
.product-documents {
  margin: 2rem 0; /* 上下间距一致 */
  border: 1px solid #e5e5e5; /* 边框颜色 */
  border-radius: 10px; /* 边框圆角 */
  background: #F9F9F9; /* 背景颜色 */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* 阴影效果 */
}

.documents-title {
  padding: 1rem 1.5rem; /* 内边距 */
  border-bottom: 1px solid #e5e5e5; /* 底部分隔线 */
}

.documents-title h2 {
  margin: 0; /* 去除标题上下额外间距 */
  font-family: Poppins, sans-serif; /* 字体改为 Poppins */
  font-size: 16px; /* 字体大小 */
  font-weight: 600; /* 字体权重 */
  color: #0046ad; /* 字体颜色 */
}

.documents-content {
  padding: 1.5rem; /* 内容内边距 */
}

.product-documents-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem; /* 标题与内容间距 */
  padding-left: 1.5rem; /* 左边间距 */
}

.product-title {
  display: flex;
  align-items: center; /* Align the icon and title vertically */
}

.product-title h3 {
  font-size: 14px; /* 字体大小 */
  line-height: 23px; /* 行高 */
  font-weight: 400; /* 普通字体粗细 */
  color: #666666; /* 字体颜色 */
  margin: 0;
  word-break: break-word; /* 长文本换行 */
  max-width: 100%; /* 防止内容溢出 */
}

/* PDF icon styling */
.pdf-icon {
  width: 18px; /* Adjusted size to match the example */
  height: 18px; /* Ensure it remains square */
  margin-right: 8px; /* Space between the icon and title */
  vertical-align: middle; /* Vertically align the icon with the text */
}

/* No documents message styling */
.no-documents {
  font-size: 12px; /* 小字体 */
  color: #666; /* 灰色 */
  line-height: 1.6; /* 行高 */
  padding-right: 1.5rem; /* 添加右边距 */
}

/* 新增可点击区域样式 */
.product-documents.has-document {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.product-documents.has-document:hover {
  background-color: #f5f5f5;
}

/* 隐藏下载按钮 */
.download-button {
  display: none;
}

/* 响应式布局 */
@media screen and (max-width: 768px) {
  .documents-title {
    padding: 1rem;
  }
  
  .documents-title h2 {
    font-size: 1rem;
  }
  
  .documents-content {
    padding: 1rem;
  }
  
  .product-documents-header {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1rem; /* 小屏设备左间距 */
  }
}

@media screen and (max-width: 480px) {
  .product-documents-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 产品详情页 specifications section 样式 */
.product-specifications {
  max-width: 1350px;   /* 控制整体宽度 */
  margin: 2rem auto;   /* 上下间距 & 居中 */
  padding: 0;          /* 内边距由子元素决定 */
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #F9F9F9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.specifications-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.specifications-header h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #0046AD;
}

.specifications-content {
  padding: 1.5rem;
}

.specification-item {
  display: flex;
  flex-direction: column;
}

.specification-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* 移动端优化 */
@media screen and (max-width: 768px) {
  .product-specifications {
    max-width: 95%;   /* 小屏幕时更贴合屏幕 */
    margin: 1rem auto;
  }

  .specifications-header h2 {
    font-size: 1.1rem;
  }
  
  .specifications-content {
    padding: 1rem;
  }
}


</style>
/* ========== 特色横幅样式 ========== */
.featured-banner {
  padding: 60px 20px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  max-width: 1400px;
  margin: 0 auto;
}

.banner-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.banner-image {
  flex: 0 1 50%;
}

.banner-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.banner-content {
  flex: 0 1 50%;
}

.banner-content h2 {
  /* 继承主题字体设置 */
  font-weight: 600; 
  line-height: 1.2;
  margin: 0 0 25px 0;
}

.banner-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #444;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.5;
}

.benefits-list li::before {
  content: "✓";
  color: #0046ad;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 1px;
}

@media (max-width: 1200px) {
  .banner-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .banner-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .banner-image,
  .banner-content {
    flex: 1 1 100%;
  }
  
  .banner-content h2 {
    font-size: inherit;
  }
}
/* =======vdc calculator =======
================================*/
.vdc-container {
  font-family: 'Poppins', system-ui, sans-serif;
  background: transparent; /* ✅ 去掉背景 */
  padding: 0; /* ✅ 去掉边距 */
  line-height: 1.5;
}

.vdc-calculator {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  background: transparent; /* ✅ 去掉白色背景 */
}

.vdc-title {
  font-size: 26px;
  font-weight: 700;
  color: #2d3748;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.5rem;
  text-align: left;
}

.vdc-input-section {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.vdc-input-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.vdc-input-label {
  flex: 1 1 100%;
  font-weight: 500;
  color: #2d3748;
  font-size: 0.95rem;
}

.vdc-input-field {
  flex: 1 1 100%;
  display: flex;
  gap: 0.5rem;
}

.vdc-container input[type="number"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  min-width: 0;
}

.vdc-unit-tag {
  background: #ebf4ff;
  color: #5D9CEC;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  border: 1px solid #c3dafe;
  white-space: nowrap;
}

.vdc-container select {
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: white;
  font-size: 0.9rem;
  flex: 1;
  min-width: 0;
}

.vdc-container button {
  width: 100%;
  background: #5D9CEC;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 1rem;
}

.vdc-container button:hover {
  background: #4a8ae4;
}

@media (max-width: 768px) {
  .vdc-container {
    padding: 0;
  }

  .vdc-input-field {
    flex-direction: column;
  }

  .vdc-container select {
    width: 100%;
  }
}

/* =====Voltage Divider Formulas Section===== 
===========================================*/
.vd-formula-section {
  font-family: Arial, sans-serif;
  color: #333;
  max-width: 1400px;
  margin: 40px auto;
  line-height: 1.6;
}

.vd-formula-section h2 {
  margin-top: 40px;
  color: #1a202c;
  font-size: 1.6rem;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 0.5rem;
}

.vd-formula-group {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.vd-formula-block {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  flex: 1 1 45%;
  min-width: 280px;
}

.vd-formula {
  font-family: 'Courier New', monospace;
  font-size: 1.05rem;
  background: #f1f5f9;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.vd-description {
  font-size: 0.95rem;
  color: #4a5568;
}

@media (max-width: 768px) {
  .vd-formula-group {
    flex-direction: column;
  }

  .vd-formula-block {
    width: 100%;
  }
}

/* ========Wire Gauge Calculator Styles ========
==================*/
.wire-calculator {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px rgba(0, 0, 0, 0.06);
  font-family: 'Inter', sans-serif;
}

.wire-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (max-width: 1200px) {
  .wire-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 750px) {
  .wire-grid {
    grid-template-columns: 1fr;
  }
}

.page-width {
  max-width: 100%;
  padding: 0;
}

.calc-header {
  padding: 0;
  border-bottom: 1px solid #e5e7eb;
}

.calc-title {
  font-size: 1.875rem;
  color: #111827;
  margin-bottom: 0;
}

.calc-description {
  color: #6b7280;
  line-height: 1.5;
}

.input-group {
  position: relative;
  padding: 0;
}

.input-label {
  display: block;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.input-field {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.2s;
}

.input-field:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  outline: none;
}

.unit-badge {
  position: absolute;
  right: 2rem;
  top: 52%;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
}
/* ====Wire Gauge Calculations Formula Styles====
======*/
.wire-calc-container {
  font-family: Arial, sans-serif;
  color: #333;
  max-width: 1400px;
  margin: 40px auto;
  line-height: 1.6;
}

.wire-calc-container h2 {
  margin-top: 40px;
  color: #222;
}

.wire-calc-formula-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.wire-calc-block {
  width: 48%;
  margin-bottom: 30px;
}

.wire-calc-formula {
  font-family: 'Courier New', monospace;
  background: #f7f7f7;
  padding: 10px;
  border-radius: 5px;
  display: inline-block;
  font-size: 1.05em;
}

.wire-calc-description {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .wire-calc-block {
    width: 100%;
  }
}

/* ===Wire Gauge Table Styles ====
======*/
.awg-table-wrapper {
  width: 100%;
  overflow-x: auto;
  font-family: Arial, sans-serif;
  color: #222;
}

.awg-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1200px;
}

.awg-table th,
.awg-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
  font-size: 14px;
}

.awg-table th {
  background-color: #2D87D9;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
}

.awg-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.awg-table tr:hover {
  background-color: #f1f1f1;
}

@media screen and (max-width: 768px) {
  .awg-table {
    min-width: 0;
  }
}

/* 调整语言选择器下拉项的文字颜色 */
.selectors-form__item .disclosure-list__option {
  color: black; /* 设置文字颜色为黑色 */
  background-color: white; /* 设置背景颜色为白色 */
}

/* 添加 hover 效果，增强用户体验 */
.selectors-form__item .disclosure-list__item:hover .disclosure-list__option {
  background-color: #f0f0f0; /* 鼠标悬停时改变背景颜色 */
  color: black; /* 确保文字仍然可见 */
}

/* 页面宽度容器 */
.custom-liquid-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Technical Specifications Section */
.ts-section {
  margin: 1rem 0;
}

.ts-wrapper {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #F9F9F9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ts-title {
  margin: 0;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0046AD;
  border-bottom: 1px solid #e5e5e5;
  text-transform: uppercase;
}

.ts-specs-container {
  padding: 1.5rem;
}

.ts-table {
  width: 100%;
  border-collapse: collapse;
}

.ts-spec-row {
  border-bottom: 1px solid #e5e5e5;
}

.ts-spec-item,
.ts-spec-parameter {
  font-size: 0.9rem;
  padding: 10px;
  vertical-align: top;
}

.ts-spec-item {
  font-weight: 600;
  color: #333;
  width: 40%;
}

.ts-spec-parameter {
  color: #666;
  width: 60%;
  line-height: 1.6;
}

/* 📱 响应式优化 */
@media screen and (max-width: 768px) {
  .custom-liquid-container {
    padding: 0 10px;
  }

  .ts-title {
    font-size: 1.1rem;
    padding: 1rem;
  }

  .ts-specs-container {
    padding: 1rem;
  }

  .ts-spec-item,
  .ts-spec-parameter {
    display: block;
    width: 100%;
    padding: 6px 0;
  }

  .ts-spec-row {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
  }
}

@media screen and (max-width: 480px) {
  .custom-liquid-container {
    padding: 0 8px;
  }

  .ts-specs-container {
    padding: 0.8rem;
  }
}



/* 页面宽度容器（复用） */
.custom-liquid-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Product Description Section */
.desc-section {
  margin: 1rem 0;
}

.desc-wrapper {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #F9F9F9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.desc-title {
  margin: 0;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0046AD;
  border-bottom: 1px solid #e5e5e5;
  text-transform: uppercase;
}

.desc-content {
  padding: 1.5rem;
}

.desc-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* 响应式优化 */
@media screen and (max-width: 768px) {
  .custom-liquid-container {
    padding: 0 10px;
  }

  .desc-title {
    font-size: 1.1rem;
    padding: 1rem;
  }
  
  .desc-content {
    padding: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .custom-liquid-container {
    padding: 0 8px;
  }

  .desc-content {
    padding: 0.8rem;
  }
}

/* 页面宽度容器 */
.custom-liquid-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Documents & Downloads Section */
.docs-section {
  margin: 1rem 0;
}

.docs-wrapper {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #F9F9F9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.docs-title {
  margin: 0;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0046AD;
  border-bottom: 1px solid #e5e5e5;
  text-transform: uppercase;
}

.docs-content {
  padding: 1.5rem;
}

.docs-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
}

.docs-file {
  display: flex;
  align-items: center;
  gap: 10px;
}

.docs-icon {
  width: 18px;
  height: 18px;
}

.docs-filename {
  font-size: 0.9rem;
  color: #333;
  word-break: break-word;
}

.docs-button {
  background: #0046AD;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 5px;
  transition: background 0.2s ease;
}

.docs-button:hover {
  background: #003080;
}

.no-documents {
  font-size: 0.9rem;
  color: #666;
}

/* 响应式 */
@media screen and (max-width: 768px) {
  .custom-liquid-container {
    padding: 0 10px;
  }

  .docs-content {
    padding: 1rem;
  }

  .docs-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .docs-button {
    align-self: flex-start;
  }
}

@media screen and (max-width: 480px) {
  .custom-liquid-container {
    padding: 0 8px;
  }

  .docs-content {
    padding: 0.8rem;
  }
}

/* FAQ部分修改问题heading样式 heading为h3但前端页面保持为<span>样式*/
.faq__summary-heading {
  all: unset; /* 清除 h3 默认样式 */
  font-size: inherit;
  font-weight: inherit;
  display: inline;
}

/* Part Number & Variants — card */

.product-block--part_number_variants .x-pn{
  margin-top: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 12px;
  background: #fff;
}

.product-block--part_number_variants .x-pn__row{
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.product-block--part_number_variants .x-pn__row + .x-pn__row{
  margin-top: 10px;
}

.product-block--part_number_variants .x-pn__k{
  flex: 0 0 auto;
  min-width: 130px;
  font-size: 12px;
  line-height: 1.4;
  opacity: .75;
}

.product-block--part_number_variants .x-pn__v{
  flex: 1 1 auto;
  font-size: 13px;
  line-height: 1.55;
  word-break: break-word;
}

/* chips keep */
.product-block--part_number_variants .x-pn__chip{
  display: inline-flex;
  align-items: center;
  margin: 0 8px 8px 0;
  padding: 4px 10px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.2;
  background: #fff;
  white-space: nowrap;
}

/* mobile */
@media (max-width: 480px){
  .product-block--part_number_variants .x-pn__row{
    flex-direction: column;
    gap: 6px;
  }
  .product-block--part_number_variants .x-pn__k{
    min-width: 0;
  }
}
/* lifecycle badge (base) */
.product-block--part_number_variants .x-pn__badge{
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.2;
  background: rgba(0,0,0,.04);
  white-space: nowrap;
}

/* Active */
.product-block--part_number_variants .x-pn__badge[data-life="active"]{
  border-color: rgba(34, 197, 94, .35);
  background: rgba(34, 197, 94, .12);
  color: #14532d;
}

/* EOL / Discontinued */
.product-block--part_number_variants .x-pn__badge[data-life="eol"]{
  border-color: rgba(239, 68, 68, .35);
  background: rgba(239, 68, 68, .12);
  color: #7f1d1d;
}

/* Last-time-buy */
.product-block--part_number_variants .x-pn__badge[data-life="ltb"]{
  border-color: rgba(245, 158, 11, .35);
  background: rgba(245, 158, 11, .14);
  color: #7c2d12;
}

/* Unknown (optional: keep neutral) */
.product-block--part_number_variants .x-pn__badge[data-life="unknown"]{
  border-color: rgba(0,0,0,.12);
  background: rgba(0,0,0,.04);
  color: inherit;
}


/* ================================
   Compatibility & Accessories
   ================================ */

.x-ca-section {
  margin: 1rem 0;
}

/* wrapper style aligns with TS/Description blocks */
.x-ca-wrapper {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #F9F9F9;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* main title aligns with .ts-title */
.x-ca-title {
  margin: 0;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #0046AD;
  border-bottom: 1px solid #e5e5e5;
  text-transform: uppercase;
}

.x-ca-content {
  padding: 1.5rem;
}

/* summary */
.x-ca-summary {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.x-ca-summary p {
  margin: 0 0 0.75rem 0;
}
.x-ca-summary p:last-child {
  margin-bottom: 0;
}

/* group blocks */
.x-ca-group {
  margin-top: 1.25rem;
}

.x-ca-group:first-child {
  margin-top: 0;
}

/* subgroup titles – mimic the “section title vibe” but smaller */
.x-ca-subtitle {
  margin: 0 0 0.75rem 0;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #e5e5e5;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  text-transform: none;
}


/* chips */
.x-ca-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0.75rem;
}

.x-ca-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  background: #fff;
  font-size: 0.82rem;
  color: #333;
  line-height: 1.2;
  white-space: nowrap;
}

/* accessories grid */
.x-ca-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0.75rem;
}

.x-ca-card {
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.x-ca-card:hover {
  border-color: #d2d2d2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.x-ca-img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  border: 1px solid #eee;
  background: #fafafa;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.x-ca-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.x-ca-imgph {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
}

.x-ca-meta {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.x-ca-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #222;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* responsive (match your general breakpoints) */
@media screen and (max-width: 1024px) {
  .x-ca-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .x-ca-title {
    font-size: 1.1rem;
    padding: 1rem;
  }

  .x-ca-content {
    padding: 1rem;
  }
}

@media screen and (max-width: 520px) {
  .x-ca-grid {
    grid-template-columns: 1fr;
  }
}
/* Lifecycle row spacing similar to stock line */
.x-life-row { margin-top: 8px; }

/* Keep label and badge aligned nicely */
.x-life-inline { display: inline-flex; align-items: center; gap: 10px; }
.x-life-label { margin: 0; }

/* Pill badge */
.x-life-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 300;
  font-size:14px;
  line-height: 1;
  border: 1px solid transparent;
  white-space: nowrap;
}

/* Color variants */
.x-life-badge--eol {
  color: #b42318;
  background: #fee4e2;
  border-color: #fda29b;
}

.x-life-badge--last {
  color: #92400e;
  background: #ffedd5;
  border-color: #fdba74;
}

.x-life-badge--active {
  color: #067647;
  background: #d1fadf;
  border-color: #6ce9a6;
}

/* Successor card container */
.x-succ-card {
  margin-top: 12px;
  padding: 12px 12px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  background: rgba(0,0,0,.02);
}

.x-succ-card__title {
  font-size: 14px;
  font-weight: 600;
  opacity: .9;
  margin-bottom: 10px;
}

/* Grid of successor items */
.x-succ-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 989px) {
  .x-succ-grid {
    grid-template-columns: 1fr;
  }
}

/* Each product pill-card */
.x-succ-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  min-height: 62px;
}

.x-succ-item:hover {
  border-color: rgba(0,0,0,.18);
}

.x-succ-item__media {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(0,0,0,.03);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.x-succ-item__img {
  max-width: 36px;
  max-height: 36px;
  object-fit: contain;
  display: block;
}

.x-succ-item__name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}

.x-succ-item__price {
  font-size: 12px;
  opacity: .8;
  margin-top: 2px;
}
.x-succ-block { margin-top: 10px; }

.x-succ-block__label{
  font-weight: 700;
  font-size: 12px; /* 和你 lifecycle label 差不多 */
  margin-bottom: 4px;
}

.x-succ-block__note{
  font-size: 12px;
  opacity: .75;
  margin-bottom: 10px;
  line-height: 1.35;
}
.x-succ-block { margin-top: 10px; }

/* Successor: + note in one row */
.x-succ-head{
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap; /* 屏幕窄时允许换行，避免挤爆 */
  margin-bottom: 10px;
}

.x-succ-head__title{
  font-size: 14px;
  font-weight: 700;
}

.x-succ-head__note{
  font-size: 12px;
  opacity: .75;
  line-height: 1.35;
}

