/* 隐藏顶部栏中的所有社交媒体图标 */
.header-top .social-icons,
.header-top .follow-links {
    display: none !important;
}
/* 基础响应式图片规则 - 确保所有图片不超出容器 */
img {
    max-width: 100%;
    height: auto;
    display: block; /* 可防止图片下方出现微小间隙 */
}


/* 通用性更强的样式尝试 */
/* 如果您的专属类名是 special-features */
.special-features [class*="col"] > div,
.special-features [class*="column"] > div {
    background: #f8f9fa !important;
    border-radius: 10px !important;
    padding: 20px !important;
    border-top: 4px solid #3498db !important;
    min-height: 120px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}
/* 第一个模块 */
.special-features [class*="col"]:first-child > div,
.special-features [class*="column"]:first-child > div {
    background: rgba(231, 76, 60, 0.1) !important;
    border-top-color: #e74c3c !important;
}
/* 第二个模块 */
.special-features [class*="col"]:nth-child(2) > div,
.special-features [class*="column"]:nth-child(2) > div {
    background: rgba(52, 152, 219, 0.1) !important;
    border-top-color: #3498db !important;
}
/* 第三个模块 */
.special-features [class*="col"]:last-child > div,
.special-features [class*="column"]:last-child > div {
    background: rgba(39, 174, 96, 0.1) !important;
    border-top-color: #27ae60 !important;
}


/* ===== 专属价格转化区块样式 - 不影响其他页面 ===== */
.price-conversion-block {
    max-width: 1100px !important; /* 宽度与其他section统一 */
    margin: 40px auto !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    border-radius: 16px !important;
    padding: 30px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #eaeaea !important;
}
.price-conversion-block .price-title {
    font-size: 22px !important;
    color: #2c3e50 !important;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
    text-align: center !important;
}
.price-conversion-block .price-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    margin-bottom: 25px !important;
}
.price-conversion-block .original-price {
    font-size: 26px !important;
    color: #95a5a6 !important;
    text-decoration: line-through !important;
    font-weight: 500 !important;
}
.price-conversion-block .discount-price {
    font-size: 40px !important;
    color: #e74c3c !important;
    font-weight: 700 !important;
}
.price-conversion-block .currency {
    font-size: 24px !important;
    vertical-align: top !important;
    margin-right: 2px !important;
}
.price-conversion-block .discount-badge {
    background: #e74c3c !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 5px 12px !important;
    border-radius: 20px !important;
    margin-left: 10px !important;
    vertical-align: middle !important;
}
/* 优化后的优惠码区域 - 更清晰 */
.price-conversion-block .offer-info {
    background: #fff !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 25px !important;
    border: 2px dashed #3498db !important;
    text-align: center !important;
}
.price-conversion-block .offer-text {
    font-size: 16px !important;
    color: #2c3e50 !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
}
.price-conversion-block .promo-code {
    display: inline-block !important;
    background: white !important; /* 改为白色背景 */
    color: #2c3e50 !important; /* 改为深色文字 */
    font-size: 22px !important; /* 加大字号 */
    font-weight: 800 !important; /* 加粗 */
    padding: 12px 24px !important;
    border-radius: 8px !important;
    letter-spacing: 2px !important; /* 增加字母间距 */
    border: 3px solid #3498db !important; /* 添加醒目边框 */
    font-family: monospace !important; /* 使用等宽字体，更似代码 */
}
/* 主按钮 - 橙色 */
.price-conversion-block .cta-button {
    display: block !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    background: linear-gradient(135deg, #ff7b00, #ff5500) !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 18px 30px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4) !important;
    text-decoration: none !important;
    text-align: center !important;
    animation: price-button-pulse 2s infinite !important;
}
.price-conversion-block .cta-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5) !important;
    background: linear-gradient(135deg, #ff6b00, #ff3d00) !important;
}
/* 专属的脉冲动画 */
@keyframes price-button-pulse {
    0% { box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4); }
    50% { box-shadow: 0 6px 25px rgba(255, 107, 0, 0.7); }
    100% { box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4); }
}
.price-conversion-block .shipping-note {
    text-align: center !important;
    margin-top: 20px !important;
    font-size: 14px !important;
    color: #7f8c8d !important;
    line-height: 1.5 !important;
}
/* 响应式设计 */
@media (max-width: 768px) {
    .price-conversion-block {
        padding: 25px 20px !important;
        margin: 30px 15px !important;
        border-radius: 12px !important;
    }
    .price-conversion-block .price-title {
        font-size: 20px !important;
    }
    .price-conversion-block .discount-price {
        font-size: 34px !important;
    }
    .price-conversion-block .original-price {
        font-size: 22px !important;
    }
    .price-conversion-block .price-container {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .price-conversion-block .promo-code {
        font-size: 20px !important;
        padding: 10px 20px !important;
    }
    .price-conversion-block .cta-button {
        padding: 16px 25px !important;
        font-size: 18px !important;
        max-width: 280px !important;
    }
}
@media (max-width: 480px) {
    .price-conversion-block .discount-price {
        font-size: 30px !important;
    }
    .price-conversion-block .original-price {
        font-size: 20px !important;
    }
    .price-conversion-block .promo-code {
        font-size: 18px !important;
        letter-spacing: 1px !important;
    }
}
/* ===== 专属样式结束 ===== */


/* Trust Strip Styles - Hair Growth Cap */
.trust-strip-section {
  max-width: 1000px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.trust-strip-section .trust-strip {
  background: linear-gradient(135deg, #1a2980, #26d0ce);
  color: white;
  border-radius: 16px;
  padding: 16px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  box-shadow: 0 6px 20px rgba(26, 41, 128, 0.2);
}

.trust-strip-section .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.trust-strip-section .trust-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.trust-strip-section .trust-icon {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.trust-strip-section .trust-separator {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  font-weight: bold;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .trust-strip-section .trust-strip {
    padding: 14px 18px;
    gap: 10px;
    border-radius: 14px;
  }
  
  .trust-strip-section .trust-item {
    font-size: 14px;
    padding: 6px 12px;
  }
  
  .trust-strip-section .trust-icon {
    font-size: 16px;
    width: 24px;
    height: 24px;
  }
  
  .trust-strip-section .trust-separator {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .trust-strip-section .trust-strip {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    padding: 12px 15px;
    border-radius: 12px;
  }
  
  .trust-strip-section .trust-separator {
    display: none;
  }
  
  .trust-strip-section .trust-item {
    justify-content: center;
    padding: 10px 15px;
  }
  
  .trust-strip-section .trust-item:not(:last-child) {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 0;
    padding-bottom: 12px;
  }
  
  .trust-strip-section .trust-item:last-child {
    padding-bottom: 0;
  }
}



/* 调整后的LLLT技术模块 - 节省垂直空间 */
.hair-laser-simple-box {
  max-width: 1100px;
  margin: 40px auto;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hair-laser-simple-box .hl-header {
  text-align: center;
  margin-bottom: 30px;
}

.hair-laser-simple-box .hl-tag {
  display: inline-block;
  background: #1a2980;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 25px;
  margin-bottom: 15px;
}

.hair-laser-simple-box .hl-main-title {
  font-size: 28px;
  color: #333;
  font-weight: bold;
  margin-bottom: 15px;
}

.hair-laser-simple-box .hl-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.hair-laser-simple-box .hl-intro {
  background: #f5f7ff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  font-size: 16px;
  color: #444;
  line-height: 1.5;
  border-left: 4px solid #1a2980;
}

/* 新的两列布局 */
.hair-laser-simple-box .hl-content-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.hair-laser-simple-box .hl-left-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hair-laser-simple-box .hl-right-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hair-laser-simple-box .hl-image-box {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.hair-laser-simple-box .hl-image-title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  padding: 15px 20px 10px;
  background: white;
}

.hair-laser-simple-box .hl-image-container {
  flex: 1;
  background: #f9f9f9;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hair-laser-simple-box .hl-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* 问答样式 */
.hair-laser-simple-box .hl-faq-item {
  background: white;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #eaeaea;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.hair-laser-simple-box .hl-faq-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.hair-laser-simple-box .hl-faq-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-right: 15px;
  font-size: 16px;
  flex-shrink: 0;
}

.hair-laser-simple-box .hl-faq-icon.red { background: #e74c3c; }
.hair-laser-simple-box .hl-faq-icon.purple { background: #9b59b6; }
.hair-laser-simple-box .hl-faq-icon.blue { background: #3498db; }
.hair-laser-simple-box .hl-faq-icon.green { background: #27ae60; }

.hair-laser-simple-box .hl-faq-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.hair-laser-simple-box .hl-faq-subtitle {
  font-size: 14px;
  color: #777;
}

.hair-laser-simple-box .hl-faq-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  padding-top: 15px;
  border-top: 1px dashed #eee;
}

/* 底部结论 */
.hair-laser-simple-box .hl-conclusion {
  background: linear-gradient(135deg, #1a2980, #26d0ce);
  color: white;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
}

.hair-laser-simple-box .hl-conclusion-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hair-laser-simple-box .hl-conclusion-text {
  font-size: 16px;
  line-height: 1.5;
}

/* 响应式 */
@media (max-width: 768px) {
  .hair-laser-simple-box {
    padding: 20px;
  }
  
  .hair-laser-simple-box .hl-content-row {
    flex-direction: column;
  }
  
  .hair-laser-simple-box .hl-left-side {
    gap: 15px;
  }
  
  .hair-laser-simple-box .hl-right-side {
    gap: 15px;
  }
  
  .hair-laser-simple-box .hl-main-title {
    font-size: 24px;
  }
}



/* 真实生活设计板块 - 修正布局 */
.real-life-design-section-2024 {
  max-width: 1100px;
  margin: 40px auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #f9f9ff 0%, #f0f5ff 100%);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e8ff;
}

.real-life-design-section-2024 .rld-section-header {
  text-align: center;
  margin-bottom: 30px;
}

.real-life-design-section-2024 .rld-section-label {
  display: inline-block;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.real-life-design-section-2024 .rld-section-title {
  font-size: 26px;
  color: #2c3e50;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.real-life-design-section-2024 .rld-section-subtitle {
  font-size: 16px;
  color: #5d6d7e;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

/* 主要内容容器 - 使用flex确保左右分布 */
.real-life-design-section-2024 .rld-content-container {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
  align-items: flex-start;
}

/* 左侧文字内容 */
.real-life-design-section-2024 .rld-text-content {
  flex: 1;
  width: 50%;
}

.real-life-design-section-2024 .rld-core-concept {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #6a11cb;
}

.real-life-design-section-2024 .rld-core-concept p {
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  font-style: italic;
}

/* 特性列表 */
.real-life-design-section-2024 .rld-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.real-life-design-section-2024 .rld-features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
  color: #2c3e50;
  line-height: 1.4;
}

.real-life-design-section-2024 .rld-features-list li:before {
  content: "✓";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  margin-right: 10px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: bold;
}

/* 使用场景标签 */
.real-life-design-section-2024 .rld-scenes-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.real-life-design-section-2024 .rld-scene-tag {
  background: white;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 14px;
  color: #2c3e50;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e0e8ff;
}

.real-life-design-section-2024 .rld-note {
  font-size: 14px;
  color: #5d6d7e;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* 右侧图片区域 */
.real-life-design-section-2024 .rld-image-content {
  flex: 1;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.real-life-design-section-2024 .rld-product-image {
  width: 100%;
  max-width: 450px;
  height: 320px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  background: #f5f7ff;
}

.real-life-design-section-2024 .rld-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.real-life-design-section-2024 .rld-product-image:hover img {
  transform: scale(1.05);
}

/* 图片加载备用样式 */
.real-life-design-section-2024 .rld-product-image.rld-fallback {
  background: linear-gradient(135deg, #e0e8ff, #f0f5ff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.real-life-design-section-2024 .rld-product-image.rld-fallback:before {
  content: "";
  position: absolute;
  width: 70%;
  height: 50%;
  background: #2c3e50;
  border-radius: 10px;
  top: 25%;
  left: 15%;
}

.real-life-design-section-2024 .rld-product-image.rld-fallback:after {
  content: "Apex Laseron I";
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-weight: 600;
  font-size: 18px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* 结论 */
.real-life-design-section-2024 .rld-conclusion {
  text-align: center;
  font-size: 18px;
  color: #2c3e50;
  font-weight: 600;
  padding-top: 20px;
  border-top: 2px dashed #e0e8ff;
  font-style: italic;
  margin-top: 10px;
}

/* 响应式设计 */
@media (max-width: 900px) {
  .real-life-design-section-2024 .rld-content-container {
    flex-direction: column;
    gap: 25px;
  }
  
  .real-life-design-section-2024 .rld-text-content,
  .real-life-design-section-2024 .rld-image-content {
    width: 100%;
  }
  
  .real-life-design-section-2024 .rld-product-image {
    max-width: 500px;
    height: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .real-life-design-section-2024 {
    padding: 25px;
    border-radius: 12px;
  }
  
  .real-life-design-section-2024 .rld-section-title {
    font-size: 24px;
  }
  
  .real-life-design-section-2024 .rld-section-subtitle {
    font-size: 15px;
  }
  
  .real-life-design-section-2024 .rld-core-concept {
    padding: 18px;
  }
  
  .real-life-design-section-2024 .rld-core-concept p {
    font-size: 15px;
  }
  
  .real-life-design-section-2024 .rld-features-list li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .real-life-design-section-2024 .rld-scenes-tags {
    justify-content: center;
  }
  
  .real-life-design-section-2024 .rld-product-image {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .real-life-design-section-2024 {
    padding: 20px;
    margin: 30px auto;
  }
  
  .real-life-design-section-2024 .rld-section-title {
    font-size: 22px;
  }
  
  .real-life-design-section-2024 .rld-section-label {
    font-size: 13px;
    padding: 5px 15px;
  }
  
  .real-life-design-section-2024 .rld-product-image {
    height: 220px;
  }
  
  .real-life-design-section-2024 .rld-scene-tag {
    font-size: 13px;
    padding: 7px 14px;
  }
  
  .real-life-design-section-2024 .rld-conclusion {
    font-size: 17px;
  }
}



/* 三步使用指南 - 宽文本框紧凑布局 */
.simple-3step-guide-compact {
  max-width: 1100px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #d6e4ff;
}

.simple-3step-guide-compact .guide-header {
  text-align: center;
  margin-bottom: 30px;
}

.simple-3step-guide-compact .guide-label {
  display: inline-block;
  background: linear-gradient(135deg, #ff7b00, #ff5500);
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.simple-3step-guide-compact .guide-title {
  font-size: 26px;
  color: #333;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.3;
}

.simple-3step-guide-compact .guide-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

/* 三步流程 - 紧凑宽文本框 */
.simple-3step-guide-compact .steps-container {
  width: 100%;
  margin-bottom: 25px;
}

.simple-3step-guide-compact .steps-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}

.simple-3step-guide-compact .step-box {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 20px 15px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  text-align: center;
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.simple-3step-guide-compact .step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #ff7b00, #ff5500);
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 3px solid white;
  box-shadow: 0 3px 8px rgba(255, 123, 0, 0.3);
}

.simple-3step-guide-compact .step-icon {
  font-size: 34px;
  margin-bottom: 10px;
  display: block;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.simple-3step-guide-compact .step-title {
  font-size: 17px;
  color: #333;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.3;
}

.simple-3step-guide-compact .step-description {
  font-size: 13px;
  color: #666;
  line-height: 1.3;
  margin: 0;
  padding: 0 5px;
}

/* 底部信息区域 - 紧凑布局 */
.simple-3step-guide-compact .info-container {
  width: 100%;
}

.simple-3step-guide-compact .info-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.simple-3step-guide-compact .info-box {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 20px 15px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
}

.simple-3step-guide-compact .info-box .info-icon {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.simple-3step-guide-compact .info-box .info-title {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  margin-bottom: 6px;
  line-height: 1.3;
}

.simple-3step-guide-compact .info-box .info-text {
  font-size: 13px;
  color: #666;
  line-height: 1.3;
  margin: 0;
  padding: 0 5px;
}

/* 充电信息盒子 */
.simple-3step-guide-compact .charging-box {
  flex: 1;
  background: linear-gradient(135deg, #27ae60, #219653);
  color: white;
  border-radius: 12px;
  padding: 20px 15px;
  box-shadow: 0 3px 12px rgba(39, 174, 96, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
}

.simple-3step-guide-compact .charging-box .charging-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.simple-3step-guide-compact .charging-box .charging-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
  line-height: 1.3;
}

.simple-3step-guide-compact .charging-box .charging-text {
  font-size: 13px;
  line-height: 1.3;
  opacity: 0.9;
  margin: 0;
  padding: 0 5px;
}

/* 响应式设计 */
@media (max-width: 900px) {
  .simple-3step-guide-compact {
    padding: 25px;
  }
  
  .simple-3step-guide-compact .steps-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .simple-3step-guide-compact .step-box {
    min-height: auto;
  }
  
  .simple-3step-guide-compact .info-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .simple-3step-guide-compact .info-box,
  .simple-3step-guide-compact .charging-box {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .simple-3step-guide-compact {
    padding: 20px;
  }
  
  .simple-3step-guide-compact .guide-title {
    font-size: 24px;
  }
  
  .simple-3step-guide-compact .guide-subtitle {
    font-size: 15px;
  }
  
  .simple-3step-guide-compact .step-box,
  .simple-3step-guide-compact .info-box,
  .simple-3step-guide-compact .charging-box {
    padding: 18px 15px;
  }
  
  .simple-3step-guide-compact .step-title {
    font-size: 16px;
  }
  
  .simple-3step-guide-compact .step-description {
    font-size: 12px;
  }
  
  .simple-3step-guide-compact .step-icon {
    font-size: 32px;
  }
  
  .simple-3step-guide-compact .step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
    top: -10px;
  }
}

@media (max-width: 480px) {
  .simple-3step-guide-compact {
    padding: 18px 15px;
    margin: 30px auto;
  }
  
  .simple-3step-guide-compact .guide-title {
    font-size: 22px;
  }
  
  .simple-3step-guide-compact .guide-label {
    font-size: 13px;
    padding: 6px 16px;
  }
  
  .simple-3step-guide-compact .step-icon {
    font-size: 30px;
  }
  
  .simple-3step-guide-compact .info-box .info-icon,
  .simple-3step-guide-compact .charging-box .charging-icon {
    font-size: 24px;
  }
}




/* 预期效果板块 - 优化布局节省垂直空间 */
.expected-results-section-2024 {
  max-width: 1100px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
}

.expected-results-section-2024 .er-header {
  text-align: center;
  margin-bottom: 25px;
}

.expected-results-section-2024 .er-label {
  display: inline-block;
  background: linear-gradient(135deg, #e67e22, #d35400);
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.expected-results-section-2024 .er-title {
  font-size: 26px;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
}

.expected-results-section-2024 .er-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

/* 主要内容容器 - 紧凑布局 */
.expected-results-section-2024 .er-content-wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

/* 左侧图片区域 - 更紧凑 */
.expected-results-section-2024 .er-image-column {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.expected-results-section-2024 .er-image-title {
  font-size: 17px;
  color: #333;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
}

.expected-results-section-2024 .er-before-after {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expected-results-section-2024 .er-before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.expected-results-section-2024 .er-image-caption {
  text-align: center;
  font-size: 13px;
  color: #777;
  font-style: italic;
}

/* 右侧内容区域 - 紧凑排列 */
.expected-results-section-2024 .er-content-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* 时间线卡片 - 更紧凑 */
.expected-results-section-2024 .er-timeline-card {
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  text-align: center;
}

.expected-results-section-2024 .er-timeline-header {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  margin-bottom: 6px;
}

.expected-results-section-2024 .er-timeline-period {
  font-size: 20px;
  color: #e67e22;
  font-weight: bold;
  margin-bottom: 4px;
}

.expected-results-section-2024 .er-timeline-note {
  font-size: 13px;
  color: #777;
}

/* 结果列表 - 紧凑布局 */
.expected-results-section-2024 .er-results-list {
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.expected-results-section-2024 .er-results-title {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  margin-bottom: 12px;
}

.expected-results-section-2024 .er-result-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.expected-results-section-2024 .er-result-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.expected-results-section-2024 .er-result-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #27ae60, #219653);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: bold;
  margin-top: 2px;
}

.expected-results-section-2024 .er-result-text {
  flex: 1;
}

.expected-results-section-2024 .er-result-text h3 {
  font-size: 14px;
  color: #333;
  font-weight: bold;
  margin-bottom: 4px;
  line-height: 1.3;
}

.expected-results-section-2024 .er-result-text p {
  font-size: 13px;
  color: #666;
  line-height: 1.3;
}

/* 重要提示 - 紧凑样式 */
.expected-results-section-2024 .er-important-note {
  background: #fff8e1;
  border-radius: 12px;
  padding: 12px 15px;
  border: 1px dashed #f39c12;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.expected-results-section-2024 .er-note-icon {
  font-size: 18px;
  color: #e67e22;
  flex-shrink: 0;
  margin-top: 2px;
}

.expected-results-section-2024 .er-note-content h3 {
  font-size: 14px;
  color: #e67e22;
  font-weight: bold;
  margin-bottom: 4px;
}

.expected-results-section-2024 .er-note-content p {
  font-size: 13px;
  color: #7d6608;
  line-height: 1.4;
  margin: 0;
}

/* 响应式设计 */
@media (max-width: 900px) {
  .expected-results-section-2024 .er-content-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  
  .expected-results-section-2024 .er-image-column {
    min-height: 300px;
  }
  
  .expected-results-section-2024 .er-before-after {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .expected-results-section-2024 {
    margin: 30px auto;
  }
  
  .expected-results-section-2024 .er-title {
    font-size: 24px;
  }
  
  .expected-results-section-2024 .er-subtitle {
    font-size: 15px;
  }
  
  .expected-results-section-2024 .er-image-column,
  .expected-results-section-2024 .er-timeline-card,
  .expected-results-section-2024 .er-results-list,
  .expected-results-section-2024 .er-important-note {
    padding: 12px;
  }
  
  .expected-results-section-2024 .er-before-after {
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  .expected-results-section-2024 {
    margin: 25px auto;
  }
  
  .expected-results-section-2024 .er-title {
    font-size: 22px;
  }
  
  .expected-results-section-2024 .er-label {
    font-size: 13px;
    padding: 5px 15px;
  }
  
  .expected-results-section-2024 .er-before-after {
    min-height: 200px;
  }
  
  .expected-results-section-2024 .er-result-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .expected-results-section-2024 .er-result-icon {
    margin-right: 0;
    margin-bottom: 8px;
  }
  
  .expected-results-section-2024 .er-important-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}




/* 安全认证板块 - 宽文本框紧凑布局 */
.safety-cert-section-wide {
  max-width: 1100px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
}

.safety-cert-section-wide .scw-header {
  text-align: center;
  margin-bottom: 25px;
}

.safety-cert-section-wide .scw-label {
  display: inline-block;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.safety-cert-section-wide .scw-title {
  font-size: 26px;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
}

.safety-cert-section-wide .scw-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

/* 主要内容容器 */
.safety-cert-section-wide .scw-main-content {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eaeaea;
}

/* 安全特性网格 - 紧凑宽文本框 */
.safety-cert-section-wide .scw-safety-grid {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.safety-cert-section-wide .scw-safety-item {
  flex: 1;
  background: white;
  border-radius: 10px;
  padding: 18px 15px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 130px;
}

.safety-cert-section-wide .scw-safety-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.safety-cert-section-wide .scw-safety-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  flex-shrink: 0;
}

/* 不同图标的颜色 */
.safety-cert-section-wide .scw-icon-certificate {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
}

.safety-cert-section-wide .scw-icon-nochemicals {
  background: linear-gradient(135deg, #27ae60, #219653);
  color: white;
}

.safety-cert-section-wide .scw-icon-nopain {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
}

.safety-cert-section-wide .scw-icon-longterm {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
  color: white;
}

.safety-cert-section-wide .scw-safety-title {
  font-size: 15px;
  color: #333;
  font-weight: bold;
  margin-bottom: 6px;
  line-height: 1.2;
}

.safety-cert-section-wide .scw-safety-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.3;
  margin: 0;
}

/* 使用体验部分 - 紧凑样式 */
.safety-cert-section-wide .scw-experience-box {
  background: linear-gradient(135deg, #fff8e1, #fff);
  border-radius: 10px;
  padding: 16px 20px;
  border: 1px dashed #f39c12;
  display: flex;
  align-items: center;
  gap: 12px;
}

.safety-cert-section-wide .scw-experience-icon {
  font-size: 20px;
  color: #e67e22;
  flex-shrink: 0;
}

.safety-cert-section-wide .scw-experience-content {
  flex: 1;
}

.safety-cert-section-wide .scw-experience-title {
  font-size: 15px;
  color: #e67e22;
  font-weight: bold;
  margin-bottom: 4px;
}

.safety-cert-section-wide .scw-experience-text {
  font-size: 14px;
  color: #7d6608;
  line-height: 1.4;
  margin: 0;
}

/* 响应式设计 */
@media (max-width: 900px) {
  .safety-cert-section-wide .scw-safety-grid {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .safety-cert-section-wide .scw-safety-item {
    flex: calc(50% - 6px);
    min-width: calc(50% - 6px);
  }
}

@media (max-width: 768px) {
  .safety-cert-section-wide {
    margin: 30px auto;
  }
  
  .safety-cert-section-wide .scw-main-content {
    padding: 20px;
  }
  
  .safety-cert-section-wide .scw-title {
    font-size: 24px;
  }
  
  .safety-cert-section-wide .scw-subtitle {
    font-size: 15px;
  }
  
  .safety-cert-section-wide .scw-safety-item {
    padding: 15px 12px;
    min-height: 120px;
  }
  
  .safety-cert-section-wide .scw-experience-box {
    padding: 14px 16px;
  }
}

@media (max-width: 600px) {
  .safety-cert-section-wide .scw-safety-grid {
    flex-direction: column;
    gap: 10px;
  }
  
  .safety-cert-section-wide .scw-safety-item {
    flex: 100%;
    min-width: 100%;
    flex-direction: row;
    text-align: left;
    min-height: auto;
    padding: 15px;
  }
  
  .safety-cert-section-wide .scw-safety-icon {
    margin-bottom: 0;
    margin-right: 12px;
  }
  
  .safety-cert-section-wide .scw-safety-content {
    text-align: left;
  }
  
  .safety-cert-section-wide .scw-experience-box {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .safety-cert-section-wide {
    margin: 25px auto;
  }
  
  .safety-cert-section-wide .scw-title {
    font-size: 22px;
  }
  
  .safety-cert-section-wide .scw-label {
    font-size: 13px;
    padding: 5px 15px;
  }
  
  .safety-cert-section-wide .scw-main-content {
    padding: 18px 15px;
  }
  
  .safety-cert-section-wide .scw-safety-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}




/* 转化板块 - 简化兼容版（按钮垂直居中修复版） */
.conversion-final-section {
  max-width: 1100px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid #e0e0e0;
}

.conversion-final-section .cfs-container {
  display: flex;
}

/* 左侧图片区域 */
.conversion-final-section .cfs-image-column {
  width: 50%;
  background: #f0f7ff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conversion-final-section .cfs-product-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: block;
}

/* 右侧信息区域 */
.conversion-final-section .cfs-info-column {
  width: 50%;
  padding: 25px;
  background: #ffffff;
}

.conversion-final-section .cfs-title {
  font-size: 26px;
  color: #222;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* 顶部信息行 */
.conversion-final-section .cfs-top-info {
  display: flex;
  margin-bottom: 20px;
  gap: 15px;
}

.conversion-final-section .cfs-shipping-card {
  flex: 2;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  border: 1px solid #ddd;
}

.conversion-final-section .cfs-shipping-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 8px;
}

.conversion-final-section .cfs-shipping-icon {
  font-size: 20px;
}

.conversion-final-section .cfs-shipping-title {
  font-size: 16px;
  font-weight: bold;
  color: #222;
}

.conversion-final-section .cfs-shipping-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conversion-final-section .cfs-shipping-item {
  display: flex;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed #ddd;
}

.conversion-final-section .cfs-shipping-item:last-child {
  border-bottom: none;
}

.conversion-final-section .cfs-country-flag {
  width: 30px;
  font-size: 16px;
}

.conversion-final-section .cfs-country-name {
  width: 70px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.conversion-final-section .cfs-shipping-details {
  flex: 1;
  font-size: 13px;
  color: #555;
}

.conversion-final-section .cfs-free-note {
  background: #e8f5e8;
  border-radius: 6px;
  padding: 8px;
  margin-top: 10px;
  font-size: 13px;
  color: #27ae60;
  font-weight: bold;
  text-align: center;
}

/* 质保卡片 */
.conversion-final-section .cfs-warranty-card {
  flex: 1;
  background: #2c3e50;
  color: white;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.conversion-final-section .cfs-warranty-icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.conversion-final-section .cfs-warranty-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.conversion-final-section .cfs-warranty-text {
  font-size: 13px;
  opacity: 0.9;
}

/* 价格优惠区域 */
.conversion-final-section .cfs-offer-section {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  border: 2px solid #ff7b00;
  box-shadow: 0 4px 15px rgba(255,123,0,0.1);
}

.conversion-final-section .cfs-offer-title {
  font-size: 18px;
  color: #ff5500;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

.conversion-final-section .cfs-price-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.conversion-final-section .cfs-original-price {
  font-size: 20px;
  color: #999;
  text-decoration: line-through;
}

.conversion-final-section .cfs-discount-price {
  font-size: 32px;
  color: #ff5500;
  font-weight: bold;
}

.conversion-final-section .cfs-promo-box {
  background: #f0f8ff;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px dashed #3498db;
}

.conversion-final-section .cfs-promo-text {
  font-size: 13px;
  color: #555;
  margin-bottom: 5px;
}

.conversion-final-section .cfs-promo-code {
  font-size: 18px;
  font-weight: bold;
  color: #2980b9;
}

/* 优化后的按钮样式 - 完美垂直居中 */
.conversion-final-section .cfs-button-group {
  display: flex;
  gap: 15px;
}

.conversion-final-section .cfs-btn-primary {
  flex: 3;
  background: #ff7b00;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(255,123,0,0.3);
  transition: all 0.3s;
  height: 60px;
  position: relative;
  padding: 0; /* 移除内边距，让span处理内容间距 */
}

.conversion-final-section .cfs-btn-primary span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 20px; /* 在span上添加内边距 */
}

.conversion-final-section .cfs-btn-primary:hover {
  background: #ff6b00;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,107,0,0.4);
}

.conversion-final-section .cfs-btn-secondary {
  flex: 1;
  background: #27ae60;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(39,174,96,0.3);
  transition: all 0.3s;
  height: 60px;
  position: relative;
  padding: 0; /* 移除内边距，让span处理内容间距 */
}

.conversion-final-section .cfs-btn-secondary span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 15px; /* 在span上添加内边距 */
}

.conversion-final-section .cfs-btn-secondary:hover {
  background: #219653;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(33,150,83,0.4);
}

/* 响应式设计 */
@media (max-width: 900px) {
  .conversion-final-section .cfs-container {
    flex-direction: column;
  }
  
  .conversion-final-section .cfs-image-column,
  .conversion-final-section .cfs-info-column {
    width: 100%;
  }
  
  .conversion-final-section .cfs-top-info {
    flex-direction: column;
  }
  
  .conversion-final-section .cfs-button-group {
    flex-direction: column;
  }
  
  .conversion-final-section .cfs-btn-primary,
  .conversion-final-section .cfs-btn-secondary {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .conversion-final-section {
    margin: 30px 15px;
  }
  
  .conversion-final-section .cfs-title {
    font-size: 22px;
  }
  
  .conversion-final-section .cfs-discount-price {
    font-size: 28px;
  }
  
  .conversion-final-section .cfs-btn-primary,
  .conversion-final-section .cfs-btn-secondary {
    height: 55px;
  }
}

@media (max-width: 480px) {
  .conversion-final-section .cfs-price-row {
    flex-direction: column;
    gap: 8px;
  }
  
  .conversion-final-section .cfs-btn-primary,
  .conversion-final-section .cfs-btn-secondary {
    height: 50px;
    font-size: 16px;
  }
  
  .conversion-final-section .cfs-btn-primary span,
  .conversion-final-section .cfs-btn-secondary span {
    padding: 0 15px;
  }
}