/*
Theme Name:     MailVerifyAI
Theme URI:      https://mailverifyai.com
Description:    MailVerifyAI 官方网站子主题，基于 Stratus
Author:         MailVerifyAI Team
Author URI:     https://mailverifyai.com
Template:       stratusx
Version:        1.0.0
Text Domain:    emailchecker
*/

/* ============================================
   MAILVERIFYAI — 品牌定制样式
   ============================================ */

/* ---- 变量定义 ---- */
:root {
  --ec-primary: #2563EB;
  --ec-primary-hover: #1D4ED8;
  --ec-success: #10B981;
  --ec-warning: #F59E0B;
  --ec-bg-dark: #0F172A;
  --ec-bg-light: #F8FAFC;
  --ec-text: #1E293B;
  --ec-text-muted: #64748B;
  --ec-border: #E2E8F0;
  --ec-radius: 12px;
  --ec-radius-sm: 8px;
}

/* ---- 全局覆盖 ---- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  color: var(--ec-text);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--ec-text);
}

a {
  color: var(--ec-primary);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--ec-primary-hover);
}

/* ---- 按钮样式 ---- */
.btn-ec {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--ec-radius-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-ec-primary {
  background: var(--ec-primary);
  color: #fff;
}

.btn-ec-primary:hover {
  background: var(--ec-primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-ec-outline {
  background: transparent;
  color: var(--ec-primary);
  border: 2px solid var(--ec-primary);
}

.btn-ec-outline:hover {
  background: var(--ec-primary);
  color: #fff;
}

.btn-ec-success {
  background: var(--ec-success);
  color: #fff;
}

.btn-ec-success:hover {
  background: #059669;
  color: #fff;
}

.btn-ec-lg {
  padding: 16px 40px;
  font-size: 18px;
}

/* ---- Hero 区域 ---- */
.ec-hero {
  position: relative;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  color: #fff;
  padding: 120px 0 100px;
  overflow: hidden;
}

.ec-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1" x="0" y="0" width="60" height="60"/></svg>');
  pointer-events: none;
}

.ec-hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--ec-success);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.ec-hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.15;
}

.ec-hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 560px;
}

.ec-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ec-hero-trust {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.ec-hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---- 区块通用 ---- */
.ec-section {
  padding: 80px 0;
}

.ec-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.ec-section-title h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.ec-section-title p {
  font-size: 18px;
  color: var(--ec-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- 卡片 ---- */
.ec-card {
  background: #fff;
  border-radius: var(--ec-radius);
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  height: 100%;
}

.ec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.03);
}

.ec-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--ec-primary), var(--ec-primary-hover));
  border-radius: var(--ec-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.ec-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.ec-card p {
  color: var(--ec-text-muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.ec-card a {
  font-weight: 600;
  font-size: 14px;
}

/* ---- 数据区块 ---- */
.ec-data-section {
  background: var(--ec-bg-light);
}

.ec-data-chart {
  background: #fff;
  border-radius: var(--ec-radius);
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.ec-bar {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.ec-bar-label {
  width: 100px;
  font-size: 14px;
  font-weight: 500;
}

.ec-bar-track {
  flex: 1;
  height: 28px;
  background: var(--ec-bg-light);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 12px;
}

.ec-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ec-primary), #3B82F6);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  transition: width 1s ease;
}

/* ---- 对比表格 ---- */
.ec-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--ec-radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.ec-compare-table th,
.ec-compare-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--ec-border);
}

.ec-compare-table th {
  background: var(--ec-bg-dark);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.ec-compare-table tr:last-child td {
  border-bottom: none;
}

.ec-check { color: var(--ec-success); font-weight: 700; }
.ec-cross { color: #EF4444; font-weight: 700; }

/* ---- 定价卡片 ---- */
.ec-pricing-card {
  background: #fff;
  border-radius: var(--ec-radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.ec-pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
}

.ec-pricing-card.recommended {
  border-color: var(--ec-success);
  border-top-width: 4px;
}

.ec-pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ec-success);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 0 0 8px 8px;
}

.ec-pricing-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.ec-pricing-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--ec-text);
  margin-bottom: 8px;
}

.ec-pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--ec-text-muted);
}

.ec-pricing-period {
  font-size: 14px;
  color: var(--ec-text-muted);
  margin-bottom: 32px;
}

.ec-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.ec-pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--ec-border);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ec-pricing-features li:last-child {
  border-bottom: none;
}

.ec-pricing-footer {
  font-size: 13px;
  color: var(--ec-text-muted);
  margin-top: 16px;
}

/* ---- FAQ ---- */
.ec-faq-item {
  border-bottom: 1px solid var(--ec-border);
  padding: 24px 0;
}

.ec-faq-question {
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ec-faq-answer {
  margin-top: 12px;
  color: var(--ec-text-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* ---- CTA 区块 ---- */
.ec-cta-section {
  background: linear-gradient(135deg, var(--ec-primary) 0%, var(--ec-primary-hover) 100%);
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.ec-cta-section h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 16px;
}

.ec-cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 40px;
}

.ec-cta-section .btn-ec {
  background: #fff;
  color: var(--ec-primary);
}

.ec-cta-section .btn-ec:hover {
  background: var(--ec-bg-light);
}

/* ---- 导航覆盖 ---- */
.ec-nav {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ec-nav .ec-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ec-nav-scrolled {
  background: rgba(15, 23, 42, 0.98) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 12px 0 !important;
}

.ec-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
}

.ec-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.ec-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ec-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.ec-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ec-nav-brand {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ec-nav-brand:hover { color: #fff; }

.ec-nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ec-nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.ec-nav-links a:hover {
  color: #fff;
}

.ec-nav-cta {
  padding: 10px 24px;
  background: var(--ec-primary);
  color: #fff;
  border-radius: var(--ec-radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.ec-nav-cta:hover {
  background: var(--ec-primary-hover);
  color: #fff;
}

/* ---- 下载页 ---- */
.ec-download-card {
  background: #fff;
  border-radius: var(--ec-radius);
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.ec-download-card:hover {
  transform: translateY(-4px);
}

.ec-download-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--ec-bg-light);
  border-radius: var(--ec-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.ec-download-meta {
  font-size: 13px;
  color: var(--ec-text-muted);
  margin: 8px 0 24px;
}

/* ---- 功能展示区块（图文交替） ---- */
.ec-feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.ec-feature-row.reverse {
  flex-direction: row-reverse;
}

.ec-feature-content {
  flex: 1;
}

.ec-feature-content h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.ec-feature-content p {
  font-size: 16px;
  color: var(--ec-text-muted);
  margin-bottom: 20px;
}

.ec-feature-image {
  flex: 1;
}

.ec-feature-image img {
  width: 100%;
  border-radius: var(--ec-radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ---- Footer ---- */
.ec-footer {
  background: var(--ec-bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 30px;
}

.ec-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.ec-footer-brand {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.ec-footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.ec-footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ec-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ec-footer-links li {
  margin-bottom: 10px;
}

.ec-footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
}

.ec-footer-links a:hover {
  color: #fff;
}

.ec-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
}

/* ---- 容器 ---- */
.ec-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- 网格系统 ---- */
.ec-grid {
  display: grid;
  gap: 24px;
}

.ec-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.ec-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.ec-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ---- 响应式 ---- */
@media (max-width: 992px) {
  .ec-grid-3,
  .ec-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ec-hero h1 {
    font-size: 36px;
  }
  
  .ec-feature-row,
  .ec-feature-row.reverse {
    flex-direction: column;
    gap: 32px;
  }
  
  .ec-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .ec-nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 999;
  }
  
  .ec-nav-links.active {
    display: flex;
  }
  
  .ec-nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  .ec-nav-links li:last-child {
    border-bottom: none;
  }
  
  .ec-nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
  }
  
  .ec-nav-toggle {
    display: flex;
  }
  
  .ec-nav-cta {
    display: none;
  }
}

@media (max-width: 576px) {
  .ec-grid-2,
  .ec-grid-3,
  .ec-grid-4 {
    grid-template-columns: 1fr;
  }
  
  .ec-hero h1 {
    font-size: 28px;
  }
  
  .ec-hero p {
    font-size: 16px;
  }
  
  .ec-section-title h2 {
    font-size: 28px;
  }
  
  .ec-footer-grid {
    grid-template-columns: 1fr;
  }
  
  .ec-hero-cta {
    flex-direction: column;
  }
  
  .btn-ec {
    width: 100%;
  }
}

/* ---- 动画 ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ec-animate {
  animation: fadeInUp 0.6s ease forwards;
}

/* ---- 辅助类 ---- */
.ec-text-center { text-align: center; }
.ec-text-success { color: var(--ec-success); }
.ec-text-primary { color: var(--ec-primary); }
.ec-bg-light { background: var(--ec-bg-light); }
.ec-bg-white { background: #fff; }
.ec-mb-0 { margin-bottom: 0; }
.ec-mb-1 { margin-bottom: 8px; }
.ec-mb-2 { margin-bottom: 16px; }
.ec-mb-3 { margin-bottom: 24px; }
.ec-mb-4 { margin-bottom: 32px; }
.ec-mb-5 { margin-bottom: 48px; }
.ec-mt-3 { margin-top: 24px; }
.ec-mt-4 { margin-top: 32px; }
.ec-mt-5 { margin-top: 48px; }
.ec-pb-0 { padding-bottom: 0; }

/* ---- 语言切换按钮 ---- */
.ec-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.ec-lang-switch:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
}

/* 英文模式下导航高亮 */
.lang-en .ec-nav-links a[aria-current="page"] {
  color: #fff;
}

/* 移动端语言切换按钮适配 */
@media (max-width: 992px) {
  .ec-nav .ec-container {
    flex-wrap: wrap;
  }
  .ec-lang-switch {
    order: 2;
    margin-left: auto;
    margin-right: 12px;
  }
  .ec-nav-cta {
    order: 3;
  }
  .ec-nav-toggle {
    order: 4;
  }
}

/* ============================================================
   EDD (Easy Digital Downloads) 样式覆盖
   ============================================================ */

/* 购买按钮在定价卡片中的样式 */
.ec-pricing-card .edd_download_purchase_form {
    margin: 0;
}
.ec-pricing-card .edd_purchase_submit_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.ec-pricing-card .edd_purchase_submit_wrapper .edd-add-to-cart,
.ec-pricing-card .edd_purchase_submit_wrapper .edd_go_to_checkout {
    width: 100%;
    text-align: center;
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
    box-sizing: border-box;
}
.ec-pricing-card .edd_purchase_submit_wrapper .edd-add-to-cart:hover {
    opacity: .9;
    transform: translateY(-1px);
}
.ec-pricing-card .edd_purchase_submit_wrapper .edd-add-to-cart.btn-ec-primary,
.ec-pricing-card .edd_purchase_submit_wrapper .edd_go_to_checkout.btn-ec-primary {
    background: #2563EB;
    color: #fff;
}
.ec-pricing-card .edd_purchase_submit_wrapper .edd-add-to-cart.btn-ec-success,
.ec-pricing-card .edd_purchase_submit_wrapper .edd_go_to_checkout.btn-ec-success {
    background: #10B981;
    color: #fff;
}
/* 兜底：确保无 JS 回退按钮默认隐藏（EDD JS 正常时会自动处理） */
.ec-pricing-card .edd_purchase_submit_wrapper input.edd-no-js {
    display: none !important;
}

.ec-pricing-card .edd-cart-ajax-alert {
    display: none;
}

/* 结账页面 */
.ec-checkout #edd_checkout_wrap {
    max-width: 800px;
    margin: 0 auto;
}
.ec-checkout #edd_checkout_cart {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--ec-border);
    margin-bottom: 24px;
}
.ec-checkout #edd_checkout_form_wrap {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--ec-border);
}
.ec-checkout .edd-input,
.ec-checkout input[type="text"],
.ec-checkout input[type="email"],
.ec-checkout select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--ec-border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color .2s;
}
.ec-checkout .edd-input:focus {
    outline: none;
    border-color: #2563EB;
}
.ec-checkout #edd_purchase_submit,
.ec-checkout .edd-submit {
    background: #2563EB;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    width: 100%;
}
.ec-checkout #edd_purchase_submit:hover,
.ec-checkout .edd-submit:hover {
    opacity: .9;
    transform: translateY(-1px);
}

/* 登录/注册表单 */
.ec-account #edd_login_form,
.ec-account #edd_register_form {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--ec-border);
}
.ec-account #edd_login_form legend,
.ec-account #edd_register_form legend {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 0;
}
.ec-account #edd_login_form label,
.ec-account #edd_register_form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ec-text-muted);
}
.ec-account #edd_login_form input[type="text"],
.ec-account #edd_login_form input[type="password"],
.ec-account #edd_register_form input[type="text"],
.ec-account #edd_register_form input[type="email"],
.ec-account #edd_register_form input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--ec-border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    margin-bottom: 16px;
}
.ec-account #edd_login_submit,
.ec-account #edd_register_form input[type="submit"] {
    background: #2563EB;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all .2s;
}
.ec-account #edd_login_submit:hover,
.ec-account #edd_register_form input[type="submit"]:hover {
    opacity: .9;
}

/* EDD 注册表单样式 */
#edd_register_form {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--ec-border);
}
#edd_register_form legend {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 0;
}
#edd_register_form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ec-text-muted);
}
#edd_register_form input[type="text"],
#edd_register_form input[type="email"],
#edd_register_form input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--ec-border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    margin-bottom: 16px;
}
#edd_register_form input[type="submit"] {
    background: #2563EB;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all .2s;
}
#edd_register_form input[type="submit"]:hover {
    opacity: .9;
}

/* EDD 结账购物车样式 */
#edd_checkout_cart {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}
#edd_checkout_cart th,
#edd_checkout_cart td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--ec-border);
}
#edd_checkout_cart th {
    font-weight: 600;
    color: var(--ec-text-muted);
    font-size: 14px;
}
#edd_checkout_cart .edd_cart_item_name {
    font-weight: 500;
}
#edd_checkout_cart .edd_cart_item_price {
    text-align: right;
    font-weight: 600;
}
