:root {
  --primary: #2f6bff;
  --primary-dark: #1f4fd1;
  --accent: #ff3b30;
  --sale: #ff3b30;
  --ink: #1a1f2b;
  --muted: #6b7280;
  --line: #e6e8ee;
  --bg: #f6f7fb;
  --card: #ffffff;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(20, 30, 60, .08);
  --shadow-lg: 0 14px 40px rgba(20, 30, 60, .14);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
.muted { color: var(--muted); }

/* 公告条 */
.announcement {
  background: linear-gradient(90deg, var(--primary), #5b8bff);
  color: #fff; text-align: center; font-size: 13px; padding: 8px 12px;
  letter-spacing: .3px;
}

/* 头部 */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.header-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: 18px; padding: 12px 18px; }
.logo { font-weight: 800; font-size: 22px; color: var(--primary); white-space: nowrap; }
.main-nav { display: flex; gap: 18px; flex: 1; }
.main-nav a { font-size: 14px; font-weight: 600; color: var(--ink); padding: 6px 2px; position: relative; }
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.main-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.search-box { display: flex; align-items: center; background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 4px 6px 4px 14px; }
.search-box input { border: none; background: transparent; outline: none; width: 180px; font-size: 13px; }
.search-box button { border: none; background: var(--primary); color: #fff; border-radius: 999px; width: 32px; height: 32px; }
.icon-btn { position: relative; font-size: 20px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; }
.icon-btn:hover { background: var(--bg); }
.lang-select { font-size: 13px; font-weight: 600; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 10px; height: 38px; padding: 0 10px; cursor: pointer; outline: none; }
.lang-select:hover { border-color: var(--primary); }
.lang-select:focus { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(99,102,241,0.15); }
.cart-count { position: absolute; top: -2px; right: -2px; background: var(--accent); color: #fff; font-size: 11px; min-width: 18px; height: 18px; border-radius: 999px; display: grid; place-items: center; padding: 0 4px; }
.nav-toggle { display: none; border: none; background: transparent; font-size: 22px; }

/* 视图容器 */
#view { min-height: 60vh; }
.container { max-width: 1240px; margin: 0 auto; padding: 28px 18px; }
.section-title { font-size: 24px; font-weight: 800; margin: 0 0 4px; }
.section-sub { color: var(--muted); margin: 0 0 20px; font-size: 14px; }

/* Hero */
.hero { background: radial-gradient(1200px 400px at 80% -10%, #d9e4ff 0%, transparent 60%), linear-gradient(120deg, #0b1f4d, #1f3e8c); color: #fff; }
.hero-inner { max-width: 1240px; margin: 0 auto; padding: 64px 18px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center; }
.hero h1 { font-size: 42px; line-height: 1.15; margin: 0 0 14px; font-weight: 800; }
.hero p { font-size: 17px; opacity: .9; max-width: 520px; }
.hero .cta { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; border-radius: 999px; padding: 12px 22px; font-weight: 700; font-size: 15px; transition: transform .12s, box-shadow .12s; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(47,107,255,.35); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.35); }
.hero-visual { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.hero-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 18px; backdrop-filter: blur(4px); }
.hero-card .big { font-size: 30px; font-weight: 800; }
.hero-card .small { font-size: 13px; opacity: .85; }

/* 信任条 */
.trust-bar { background: #fff; border-bottom: 1px solid var(--line); }
.trust-inner { max-width: 1240px; margin: 0 auto; padding: 16px 18px; display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-around; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.trust-item .ic { font-size: 22px; }

/* 产品网格 */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-thumb { position: relative; aspect-ratio: 1/1; background: #f0f2f8; display: grid; place-items: center; overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.badge-row { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; flex-wrap: wrap; }
.badge { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 999px; color: #fff; }
.badge-sale { background: var(--sale); }
.badge-tag { background: #111827; opacity: .85; }
.brand-pill { position: absolute; top: 10px; right: 10px; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 999px; color: #fff; }
.product-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-name { font-size: 14px; font-weight: 700; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 38px; }
.product-meta { font-size: 12px; color: var(--muted); }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.price { color: var(--accent); font-weight: 800; font-size: 18px; }
.price-cmp { color: var(--muted); text-decoration: line-through; font-size: 13px; }
.add-cart { border: none; background: var(--primary); color: #fff; border-radius: 10px; padding: 10px; font-weight: 700; font-size: 13px; }
.add-cart:hover { background: var(--primary-dark); }
.product-attrs { padding: 9px 12px; background: #f3f4f6; border-top: 1px solid var(--line); font-size: 9px; color: #6b7280; font-weight: 500; text-transform: uppercase; letter-spacing: .2px; margin-top: auto; }
.attr-text { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Shop 布局 */
.shop-layout { display: grid; grid-template-columns: 230px 1fr; gap: 24px; align-items: start; }
.filters { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; position: sticky; top: 80px; }
.filters h4 { margin: 0 0 10px; font-size: 14px; }
.filter-group { margin-bottom: 18px; }
.filter-group label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.filter-group select, .filter-group input { width: 100%; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; font-size: 13px; }
.chip { display: inline-block; font-size: 12px; padding: 5px 10px; border: 1px solid var(--line); border-radius: 999px; margin: 0 6px 6px 0; cursor: pointer; background: #fff; }
.chip.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.shop-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; flex-wrap: wrap; gap: 10px; }
.shop-head .count { color: var(--muted); font-size: 13px; }
.brand-banner { width: 100%; margin-bottom: 18px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; aspect-ratio: 1152 / 450; }
.brand-banner img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.empty { text-align: center; padding: 60px 0; color: var(--muted); }

/* 产品详情 */
.pdp { position: relative; }
.pdp-gallery { width: calc(50% - 18px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.pdp-info { position: absolute; top: 0; right: 0; bottom: 18px; width: calc(50% - 18px); overflow-y: auto; padding-right: 10px; }
.pdp-info::-webkit-scrollbar { width: 6px; }
.pdp-info::-webkit-scrollbar-track { background: transparent; }
.pdp-info::-webkit-scrollbar-thumb { background: #c9cdd6; border-radius: 999px; }
.pdp-gallery .main-img { aspect-ratio: 1/1; border-radius: 10px; overflow: hidden; background: #f0f2f8; }
.pdp-gallery .main-img img { width: 100%; height: 100%; object-fit: contain; }
.pdp-gallery .thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.pdp-gallery .thumb { width: 60px; height: 60px; border-radius: 8px; object-fit: contain; background: #f0f2f8; border: 2px solid transparent; cursor: pointer; }
.pdp-gallery .thumb.active { border-color: var(--accent); }
.pdp-info h1 { font-size: 26px; margin: 0 0 8px; }
.pdp-price { font-size: 28px; color: var(--accent); font-weight: 800; }
.pdp-price .cmp { font-size: 16px; color: var(--muted); text-decoration: line-through; margin-left: 10px; font-weight: 500; }
.pdp-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0; }

.qty-row { display: flex; align-items: center; gap: 12px; margin: 16px 0; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.qty button { width: 38px; height: 38px; border: none; background: #fff; font-size: 18px; }
.qty input { width: 52px; text-align: center; border: none; outline: none; font-size: 15px; }
.flavor-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.flavor { font-size: 12px; padding: 5px 10px; background: var(--bg); border-radius: 999px; }
.spec-label { display: block; font-size: 13px; color: var(--muted); margin-top: 14px; margin-bottom: 2px; }
.pdp-tagline { color: var(--muted); font-size: 14px; margin: 4px 0 2px; }
.save-badge { font-size: 13px; color: #fff; background: var(--sale); font-weight: 700; padding: 2px 8px; border-radius: 999px; margin-left: 10px; }
.badge-video { background: #6d28d9; }
.pdp-gallery .thumb-video { position: relative; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.pdp-gallery .thumb-video .play { width: 26px; height: 26px; border-radius: 50%; background: rgba(0,0,0,.55); color: #fff; font-size: 13px; display: flex; align-items: center; justify-content: center; }
.pdp-video { width: 100%; max-height: 520px; border-radius: 10px; background: #000; outline: none; }

/* PDP 选项选择器（尼古丁 / 口味） */
.pdp-options { display: flex; flex-direction: column; gap: 16px; margin: 18px 0; }
.pdp-option-group { display: flex; flex-direction: column; gap: 8px; }
.option-label { font-size: 14px; color: var(--muted); font-weight: 500; }
.option-label .option-value { color: var(--ink); font-weight: 700; }
.option-list { display: flex; flex-wrap: wrap; gap: 8px; }
.option-btn { font-size: 13px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); cursor: pointer; transition: all .15s; font-weight: 500; }
.option-btn:hover { border-color: var(--primary); color: var(--primary); }
.option-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
/* PDP 短描述 */
.pdp-lead { font-size: 15px; line-height: 1.7; color: #334155; margin-bottom: 14px; }
.pdp-lead p { margin: 0 0 12px; }
.pdp-lead p:last-child { margin-bottom: 0; }

.flavor-grid { display: flex; flex-wrap: wrap; gap: 8px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.flavor-chip { display: inline-flex; align-items: center; font-size: 13px; padding: 6px 12px; border: 1px solid #d1d5db; border-radius: 8px; background: #fff; color: var(--ink); cursor: pointer; transition: all .15s; line-height: 1.4; white-space: nowrap; }
.flavor-chip:hover { border-color: var(--primary); color: var(--primary); }
.flavor-chip.active { background: #1a4c44; border-color: #1a4c44; color: #fff; }

/* PDP 阶梯价格 */
.pdp-tier { margin: 18px 0; }
.tier-table { width: 100%; border-collapse: collapse; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.tier-table thead { background: #0f3938; color: #fff; }
.tier-table th { padding: 10px 14px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px; text-align: left; }
.tier-table td { padding: 10px 14px; font-size: 14px; border-bottom: 1px solid var(--line); background: #fff; }
.tier-table tr:last-child td { border-bottom: none; }
.tier-table .tier-price { color: var(--accent); font-weight: 800; }

/* PDP 信任徽章 */
.pdp-trust { display: flex; flex-direction: column; gap: 12px; margin: 18px 0; }
.trust-badge { display: flex; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.trust-icon { font-size: 22px; line-height: 1; flex-shrink: 0; }
.trust-body { display: flex; flex-direction: column; gap: 4px; }
.trust-title { font-size: 14px; font-weight: 800; color: var(--ink); }
.trust-desc { font-size: 12px; color: var(--muted); line-height: 1.55; }

/* PDP 页：整体内容占满 80% 屏宽 */
.pdp-page .container { max-width: 80vw; }
.pdp-page main { padding-bottom: 90px; }
.pdp-page .pdp-banner-inner { max-width: 80vw; }

/* PDP 底部浮动加购条 */
.pdp-sticky-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(20,30,60,.10); }
.pdp-sticky-bar .bar-inner { max-width: 80vw; margin: 0 auto; padding: 12px 18px; display: flex; align-items: center; gap: 16px; }
.bar-thumb { width: 48px; height: 48px; border-radius: 8px; object-fit: contain; background: #f0f2f8; border: 1px solid var(--line); flex-shrink: 0; }
.bar-meta { flex: 1; min-width: 0; }
.bar-name { font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bar-tagline { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bar-price { font-size: 18px; font-weight: 800; color: var(--accent); white-space: nowrap; }
.bar-cmp { font-size: 13px; color: var(--muted); text-decoration: line-through; margin-left: 8px; font-weight: 500; }
.pdp-sticky-bar .bar-qty { flex-shrink: 0; }
.pdp-sticky-bar .btn { flex-shrink: 0; }

/* 新版 PDP：Tab 分页布局（WooCommerce 风格） */
.pdp-banner { width: 100%; background: #f6f7fb; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pdp-banner-inner { max-width: 1240px; margin: 0 auto; padding: 28px 18px; }
.pdp-banner img { width: 100%; height: auto; display: block; border-radius: var(--radius); box-shadow: var(--shadow); }
.pdp-section-title { font-size: 22px; font-weight: 800; margin: 0 0 18px; }
.pdp-desc-body { font-size: 15px; line-height: 1.85; color: #334155; }
.pdp-desc-body p { margin: 0 0 16px; }
.pdp-desc-body .desc-h3 { font-size: 20px; font-weight: 800; color: var(--ink); margin: 32px 0 14px; }
.pdp-desc-body .desc-h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin: 22px 0 10px; }
.pdp-desc-body .desc-list { margin: 0 0 18px; padding-left: 22px; }
.pdp-desc-body .desc-list li { margin-bottom: 8px; }
.pdp-video-section { margin-top: 32px; }
.pdp-video-section h3 { font-size: 18px; margin: 0 0 12px; }

.pdp-detail { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.pdp-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--line); background: #fff; overflow-x: auto; }
.pdp-tab { flex: 1; min-width: 140px; padding: 14px 18px; background: #fff; border: none; border-bottom: 2px solid transparent; font-size: 14px; font-weight: 700; color: var(--muted); cursor: pointer; white-space: nowrap; }
.pdp-tab:hover { color: var(--ink); }
.pdp-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.pdp-panels { padding: 22px; }
.pdp-panel { display: none; }
.pdp-panel.active { display: block; }
.spec-table { width: 100%; border-collapse: collapse; max-width: 720px; }
.spec-table th, .spec-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
.spec-table th { width: 40%; background: var(--bg); color: var(--muted); font-weight: 600; }
.spec-table td { background: #fff; }
.faq-item { border: 1px solid var(--line); border-radius: 10px; margin-bottom: 8px; background: #fff; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 12px 14px; font-weight: 600; font-size: 14px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--muted); font-size: 18px; font-weight: 400; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .faq-a { padding: 0 14px 14px; font-size: 14px; line-height: 1.7; color: #475569; }

/* 购物车 */
.cart-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cart-table th, .cart-table td { padding: 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
.cart-table th { background: var(--bg); font-size: 13px; color: var(--muted); }
.cart-item-flavor { font-size: 12px; color: var(--muted); margin-top: 2px; }
/* 起订量提示 + 到达下限时禁用「−」 */
.cart-moq { font-size: 11px; color: #9ca3af; margin-top: 4px; text-align: center; }
.qty button:disabled { opacity: .35; cursor: not-allowed; }
.moq-hint { color: var(--accent); font-weight: 600; margin: 6px 0 0; }
.cart-summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; margin-top: 20px; }
.cart-summary .row { display: flex; justify-content: space-between; padding: 6px 0; }
.cart-summary .total { font-size: 20px; font-weight: 800; border-top: 1px solid var(--line); margin-top: 8px; padding-top: 12px; }
.cart-empty { text-align: center; padding: 60px 0; }
.thumb-sm { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; background: #f0f2f8; }

/* 表单 */
.form-card { max-width: 520px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.form-card h2 { margin: 0 0 18px; font-size: 22px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea, .field select { width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; font-size: 14px; font-family: inherit; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* 页脚 */
.site-footer { background: #0b1326; color: #c9d2e3; margin-top: 50px; }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 40px 18px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col h4 { color: #fff; margin: 0 0 12px; font-size: 15px; }
.footer-col a { display: block; color: #c9d2e3; font-size: 14px; padding: 4px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12px; color: #8a96ad; max-width: 1240px; margin: 0 auto; }

/* 支付方式（结账页） */
.pay-methods { display: flex; flex-direction: column; gap: 10px; }
.pay-opt { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; cursor: pointer; font-size: 14px; font-weight: 600; transition: border-color .15s, background .15s; }
.pay-opt:hover { border-color: var(--primary); }
.pay-opt input { width: 18px; height: 18px; accent-color: var(--primary); }
.pay-opt:has(input:checked) { border-color: var(--primary); background: rgba(26,76,68,.06); }
.pay-ico { font-size: 18px; }

/* 结账页：选中支付方式后的收款信息卡片 */
.pay-detail { margin-top: 14px; border: 1px dashed var(--line); border-radius: 12px; padding: 14px 16px; background: #fafbfc; }
.pay-row { display: flex; align-items: center; gap: 10px; padding: 5px 0; }
.pay-row .pay-k { flex: 0 0 130px; color: #6b7280; font-size: 12px; font-weight: 600; }
.pay-row .pay-v { flex: 1; font-size: 13px; font-weight: 600; color: #111; word-break: break-all; }
.pay-copy { flex: 0 0 auto; border: 1px solid var(--line); background: #fff; border-radius: 8px; padding: 4px 10px; font-size: 12px; font-weight: 600; cursor: pointer; color: var(--primary); }
.pay-copy:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.pay-hint { margin: 10px 0 0; font-size: 12px; line-height: 1.5; color: #6b7280; background: rgba(26,76,68,.06); border-radius: 8px; padding: 8px 10px; }
.pay-none { margin: 4px 0 0; font-size: 12px; color: #9ca3af; }

/* 页脚支付方式 */
.footer-pay { max-width: 1240px; margin: 0 auto; padding: 18px 18px 26px; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-pay-label { color: #fff; font-size: 14px; font-weight: 700; margin-right: 4px; }
.pay-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: #e6ecf7; padding: 7px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; }
.footer-pay-desc { margin-left: auto; font-size: 12px; }
@media (max-width: 760px) { .footer-pay-desc { margin-left: 0; width: 100%; } }

/* Toast */
.toast { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px); background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 999px; font-size: 14px; opacity: 0; pointer-events: none; transition: all .25s; z-index: 200; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* 响应式 */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .pdp { display: block; }
  .pdp-gallery { width: 100%; }
  .pdp-info { position: static; width: 100%; height: auto; overflow: visible; padding-right: 0; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .main-nav { position: fixed; top: 110px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 14px 18px; border-bottom: 1px solid var(--line); display: none; box-shadow: var(--shadow-lg); }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .search-box input { width: 110px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .pdp-page .container { max-width: 94vw; }
  .pdp-page .pdp-banner-inner, .pdp-sticky-bar .bar-inner { max-width: 94vw; }
  .pdp-sticky-bar .bar-thumb { width: 40px; height: 40px; }
  .pdp-sticky-bar .bar-tagline { display: none; }
  .pdp-sticky-bar .bar-qty button { width: 30px; height: 30px; }
  .pdp-sticky-bar .bar-qty input { width: 40px; }
}
@media (max-width: 460px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
}

/* 分销推广提示条 */
.ref-banner {
  background: linear-gradient(90deg, #fff7ed, #fef3c7);
  color: #b45309;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  border-bottom: 1px solid #fde68a;
}
/* 账户页选项卡 */
.tabs { display: flex; gap: 8px; margin: 14px 0; }
.tab { flex: 1; padding: 9px; border: 1px solid var(--line); background: #fff; border-radius: 8px; cursor: pointer; font-weight: 600; color: var(--muted); }
.tab.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* 账户页 —— 我的分销商 */
.account-role-badge { display: flex; align-items: center; gap: 8px; margin: 8px 0 14px; font-size: 13px; color: var(--muted); }
.account-role-badge .sep { color: var(--line); font-weight: 700; }
.dist-card { background: #f8fafc; border: 1px solid var(--line); border-radius: 12px; padding: 16px; margin-bottom: 12px; }
.dist-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.dist-header h4 { margin: 0 0 4px; font-size: 17px; }
.dist-meta { font-size: 12px; color: var(--muted); }
.dist-status { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.dist-status.active { background: #dcfce7; color: #166534; }
.dist-status.disabled { background: #fee2e2; color: #991b1b; }
.dist-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px; margin-bottom: 14px; }
.dist-info-grid div { display: flex; flex-direction: column; gap: 2px; }
.dist-info-grid div span { font-size: 12px; color: var(--muted); }
.dist-info-grid div b { font-size: 14px; font-weight: 600; word-break: break-all; }
.dist-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 12px; }
.dist-stats .n { font-size: 16px; font-weight: 700; color: var(--text); }
.dist-stats .l { font-size: 11px; color: var(--muted); margin-top: 2px; }
.dist-note { font-size: 12px; color: var(--muted); margin: 8px 0 0; }
.dist-empty { background: #f8fafc; border: 1px dashed var(--line); border-radius: 12px; padding: 18px; text-align: center; }
.dist-hint-list { text-align: left; font-size: 13px; color: var(--muted); margin: 10px 0 0 18px; line-height: 1.7; }

/* 账户页 —— 普通用户丰富面板 */
.account-page { padding-top: 18px; padding-bottom: 30px; }
.account-page .container { padding: 0; }
.account-header { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.account-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #6366f1); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 700; flex-shrink: 0; }
.account-intro h2 { margin: 0 0 4px; font-size: 22px; }
.account-intro p { margin: 0; }
.account-grid { margin-bottom: 18px; }
.account-grid.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.account-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); }
.account-card h3 { margin: 0 0 14px; font-size: 16px; font-weight: 700; }
.profile-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px; margin-bottom: 16px; }
.profile-list div { display: flex; flex-direction: column; gap: 2px; }
.profile-list div span { font-size: 12px; color: var(--muted); }
.profile-list div b { font-size: 14px; font-weight: 600; word-break: break-word; }
.account-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.account-stats .n { font-size: 18px; font-weight: 700; color: var(--text); }
.account-stats .l { font-size: 11px; color: var(--muted); margin-top: 2px; }
.account-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.account-actions .btn { flex: 1; min-width: 90px; padding: 9px 12px; font-size: 13px; text-align: center; text-decoration: none; }
.account-section-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.account-section-title h3 { margin: 0; }
.account-section-title .link { font-size: 13px; color: var(--primary); text-decoration: none; font-weight: 600; }
.account-section-title .link:hover { text-decoration: underline; }
.account-orders-list { display: flex; flex-direction: column; gap: 10px; }
.account-order-item { display: flex; justify-content: space-between; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; background: #fafafa; color: inherit; }
.account-order-item:hover { background: #f3f4f6; border-color: #d1d5db; }
.ao-main { flex: 1; min-width: 0; }
.ao-id { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.ao-meta { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.ao-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-align: right; }
.ao-info { display: flex; flex-direction: column; align-items: flex-end; }
.ao-chevron { font-size: 22px; line-height: 1; color: #9ca3af; transition: transform .15s ease, color .15s ease; }
.account-order-item:hover .ao-chevron { transform: translateX(3px); color: #2563eb; }
.ao-status { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; margin-bottom: 4px; }
.ao-total { font-size: 15px; font-weight: 700; }
.status-pending { background: #fef3c7; color: #92400e; }
.status-paid { background: #dbeafe; color: #1e40af; }
.status-shipped { background: #e0e7ff; color: #3730a3; }
.status-completed { background: #dcfce7; color: #166534; }
.status-cancelled { background: #fee2e2; color: #991b1b; }
.status-refunded { background: #ffedd5; color: #9a3412; }
.status-closed { background: #e5e7eb; color: #374151; }
.dist-bind-box { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line); text-align: left; }
.dist-bind-box label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.dist-bind-box .row { display: flex; gap: 8px; }
.dist-bind-box input { flex: 1; padding: 9px 12px; border: 1px solid var(--line); border-radius: 8px; font-size: 14px; }

/* 订单详情页 */
.order-detail-page { padding-top: 18px; padding-bottom: 30px; }
.od-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
.od-header h2 { margin: 0 0 4px; font-size: 22px; }
.od-id { font-size: 14px; color: var(--muted); }
.od-status { display: inline-block; padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.od-items-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.od-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.od-item:last-child { border-bottom: none; }
.od-item-thumb { width: 48px; height: 48px; flex-shrink: 0; border-radius: 8px; overflow: hidden; background: #f3f4f6; display: block; }
.od-item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.od-item-name { flex: 1; font-weight: 600; }
.od-item-main { flex: 1; min-width: 0; }
.od-item-main .od-item-name { display: block; flex: none; }
.od-item-specs { font-size: 12px; color: var(--muted); margin-top: 2px; }
a.od-item-name { color: inherit; text-decoration: underline; text-decoration-color: rgba(17, 24, 39, .3); text-underline-offset: 3px; }
a.od-item-name:hover { color: var(--accent); text-decoration-color: currentColor; }
.od-item-qty { color: var(--muted); font-size: 13px; min-width: 32px; text-align: center; }
.od-item-price { font-weight: 700; min-width: 70px; text-align: right; }
.od-total-row { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px dashed var(--line); font-size: 16px; font-weight: 700; }
.od-rows { display: flex; flex-direction: column; gap: 6px; padding-top: 10px; }
.od-srow { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 14px; }
.od-srow span { color: var(--muted); }
.od-srow b { font-weight: 600; }
.od-promise { display: flex; gap: 10px; align-items: flex-start; margin-top: 14px; padding: 10px 12px; background: #f0f7ff; border: 1px solid #d6e6ff; border-radius: 10px; }
.od-promise-ico { font-size: 18px; line-height: 1.25; }
.od-promise-label { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.od-promise-text { font-size: 13px; font-weight: 600; }
.od-note-block { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line); }
.od-note-label { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.od-note-text { font-size: 14px; line-height: 1.5; word-break: break-word; }
.od-note-text.is-empty { color: var(--muted); }
.od-summary-list div b.mono { font-family: monospace; font-size: 12px; }
.od-info-list { grid-template-columns: 1fr; margin-bottom: 0; gap: 12px; }
.od-timeline { display: flex; gap: 6px; margin-top: 14px; }
.od-tl-step { position: relative; flex: 1; text-align: center; }
.od-tl-step::before { content: ''; position: absolute; top: 9px; left: -50%; right: 50%; height: 2px; background: var(--line); z-index: 0; }
.od-tl-step:first-child::before { display: none; }
.od-tl-dot { position: relative; width: 20px; height: 20px; border-radius: 50%; background: var(--line); margin: 0 auto 6px; z-index: 1; border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line); }
.od-tl-step.active .od-tl-dot { background: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.od-tl-step.done .od-tl-dot { background: var(--accent); }
.od-tl-label { font-size: 11px; font-weight: 600; color: var(--muted); }
.od-tl-step.active .od-tl-label { color: var(--text); }
.od-tl-time { font-size: 10px; color: var(--muted); margin-top: 2px; }
.od-pay-pending { background: #fffbeb; border: 1px solid #fde68a; border-radius: 10px; padding: 16px; }
.od-pay-pending p { margin: 0 0 12px; color: #92400e; }
.od-pay-done { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; padding: 16px; color: #166534; }
.od-pay-done p { margin: 6px 0 0; }
.od-pay-hint { margin-bottom: 10px; font-weight: 600; }
.od-pay-info { display: grid; grid-template-columns: 1fr; gap: 8px; }
.od-pay-info div { display: flex; flex-direction: column; gap: 2px; }
.od-pay-info div span { font-size: 12px; color: var(--muted); }
.od-pay-info div b { font-size: 14px; word-break: break-all; }
.od-logistics { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--line); }
.od-logistics-head { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; margin-bottom: 8px; }

/* 付款凭证提交（银行转账 / 加密货币） */
.od-proof-form { margin-top: 14px; padding-top: 12px; border-top: 1px dashed #fcd34d; }
.od-proof-form label { display: block; font-size: 13px; font-weight: 600; color: #92400e; margin-bottom: 8px; }
.od-proof-form .row { display: flex; gap: 8px; }
.od-proof-form input { flex: 1; min-width: 0; padding: 9px 11px; border: 1px solid var(--line); border-radius: 8px; font-size: 13px; }
.od-proof-done { margin-top: 14px; padding: 10px 12px; border-radius: 8px; font-size: 13px; color: #166534; background: rgba(16,163,74,.08); border: 1px solid rgba(16,163,74,.3); }
.od-proof-done .mono { margin-top: 4px; word-break: break-all; }

/* 订单列表 Tab 与卡片 */
.order-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.order-tab { position: relative; padding: 8px 14px; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--muted); cursor: pointer; transition: all .12s; }
.order-tab:hover { border-color: var(--primary); color: var(--primary); }
.order-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.order-tab-count { display: inline-block; margin-left: 6px; padding: 1px 6px; background: rgba(0,0,0,.08); border-radius: 999px; font-size: 11px; }
.order-tab.active .order-tab-count { background: rgba(255,255,255,.25); }
.order-cards { display: flex; flex-direction: column; gap: 14px; }
.order-card { border: 1px solid var(--line); border-radius: 12px; background: #fff; overflow: hidden; }
.order-card-head { padding: 10px 14px; background: #f9fafb; border-bottom: 1px solid #f3f4f6; }
.order-head-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 12px; color: var(--muted); }
.order-head-meta b { color: var(--ink); font-weight: 600; margin-right: 4px; }
.order-card-status { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.status-pending { background: #fff7ed; color: #9a3412; }
.status-paid { background: #eff6ff; color: #1e40af; }
.status-shipped { background: #f0fdf4; color: #166534; }
.status-completed { background: #f5f3ff; color: #5b21b6; }
.status-cancelled { background: #f3f4f6; color: #4b5563; }
.status-refunded { background: #ffe4e6; color: #9f1239; }
.status-closed { background: #e5e7eb; color: #374151; }
.order-card-main { display: flex; align-items: stretch; gap: 0; }
.order-items { flex: 1; min-width: 0; padding: 14px; }
.order-item-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f3f4f6; }
.order-item-row.last { border-bottom: none; }
.order-item-row:first-child { padding-top: 0; }
.order-item-row:last-child { padding-bottom: 0; }
.order-item-product { display: flex; align-items: center; gap: 12px; flex: 1.5; min-width: 0; }
.order-item-info { min-width: 0; }
.order-item-name { display: block; font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.35; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.order-item-name:hover { color: var(--primary); }
.order-item-specs { display: flex; flex-wrap: wrap; gap: 4px 12px; margin-top: 4px; }
.order-item-specs .ois-item { font-size: 12px; color: var(--muted); line-height: 1.4; }
.order-item-specs .ois-item em { font-style: normal; color: #9ca3af; }
.order-item-more { font-size: 11px; color: var(--muted); margin-top: 4px; }
.order-item-col { flex: 0.8; text-align: center; font-size: 13px; color: var(--ink); min-width: 70px; }
.order-item-original .orig-price { text-decoration: line-through; color: #9ca3af; }
.order-item-original .orig-price.empty { text-decoration: none; color: #9ca3af; }
.order-item-subtotal { font-weight: 700; }
/* 金额列（非末行的小计 / 末行的实付）统一右对齐并同宽，
   否则「小计」居中、「实付」右对齐会让两行数字左右错位 */
.order-item-col.order-item-subtotal,
.order-item-col.order-item-total { flex: 1; text-align: right; }
.order-item-total { text-align: right; }
.order-item-total .actual-price { font-size: 15px; font-weight: 800; color: var(--ink); }
.order-item-total .shipping-tag { font-size: 11px; color: var(--muted); margin-top: 2px; }
.order-card-side { width: 180px; flex-shrink: 0; padding: 14px; border-left: 1px solid #f3f4f6; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; }
.side-shop { display: flex; flex-direction: column; gap: 2px; align-items: center; }
.side-shop-name { font-size: 13px; font-weight: 700; color: var(--ink); max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.side-shop-link { font-size: 12px; color: var(--muted); text-decoration: none; }
.side-shop-link:hover { color: var(--primary); }
.side-status { font-size: 14px; font-weight: 700; }
/* 可点击的状态：本身就是「下一步」的入口 */
.side-status-btn { display: inline-flex; align-items: center; gap: 4px; border: none; font: inherit; font-size: 14px; font-weight: 700; background: transparent; padding: 2px 6px; border-radius: 6px; cursor: pointer; }
.side-status-btn .ss-go { font-size: 15px; line-height: 1; opacity: .55; transition: transform .12s, opacity .12s; }
.side-status-btn:hover { text-decoration: underline; }
.side-status-btn:hover .ss-go { transform: translateX(3px); opacity: 1; }
.side-status-btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.side-signed { font-size: 12px; color: var(--muted); }
.side-actions { display: flex; flex-direction: column; gap: 6px; width: 100%; margin-top: 4px; }
.side-actions .btn-oa { width: 100%; padding: 6px 10px; font-size: 12px; }
.side-actions .btn-oa-primary { color: #fff; }
.ao-thumb { width: 64px; height: 64px; flex-shrink: 0; border-radius: 8px; overflow: hidden; background: #f3f4f6; display: block; }
.ao-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.btn-oa { display: inline-flex; align-items: center; justify-content: center; padding: 7px 14px; border-radius: 8px; border: 1px solid var(--line); background: #fff; font-size: 13px; font-weight: 600; color: var(--ink); cursor: pointer; }
.btn-oa:hover { border-color: var(--primary); color: var(--primary); }
.btn-oa-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-oa-primary:hover { background: var(--primary-dark); }
.order-card-foot { display: flex; gap: 10px; padding: 10px 14px; border-top: 1px solid #f3f4f6; background: #fafafa; }
.service-tag { font-size: 12px; color: #16a34a; font-weight: 600; }
.service-tag.late { color: #ea580c; }
.order-empty { padding: 18px 0; text-align: center; }

@media (max-width: 760px) {
  .account-grid.two-col { grid-template-columns: 1fr; }
  .account-stats { grid-template-columns: repeat(2, 1fr); }
  .profile-list { grid-template-columns: 1fr; }
  .account-order-item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ao-right { text-align: left; width: 100%; display: flex; justify-content: space-between; align-items: center; }
  .ao-info { align-items: flex-start; }
  .dist-info-grid { grid-template-columns: 1fr; }
  .dist-stats { grid-template-columns: repeat(2, 1fr); }
  .od-header { flex-direction: column; gap: 8px; }
  .od-timeline { overflow-x: auto; padding-bottom: 6px; }
  .order-tabs { gap: 6px; }
  .order-tab { padding: 6px 10px; font-size: 12px; }
  .order-head-meta { gap: 8px; }
  .order-card-main { flex-direction: column; }
  .order-card-side { width: 100%; border-left: none; border-top: 1px solid #f3f4f6; padding: 12px; }
  .side-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .side-actions .btn-oa { width: auto; flex: 1; min-width: 90px; }
  .order-item-row { flex-wrap: wrap; gap: 8px; }
  .order-item-product { flex: 1 1 100%; }
  .order-item-col { flex: 1; min-width: 60px; text-align: center; }
  .order-item-total { flex: 1 1 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; }
}

/* ---------- 取消订单商品：弹窗 ---------- */
.gbv-modal-mask { position: fixed; inset: 0; background: rgba(15, 23, 42, .45); display: flex; align-items: center; justify-content: center; padding: 20px; z-index: 300; }
.gbv-modal { background: #fff; border-radius: 14px; width: 100%; max-width: 520px; max-height: 86vh; display: flex; flex-direction: column; box-shadow: 0 20px 50px rgba(15, 23, 42, .25); overflow: hidden; }
.gbv-modal-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--line); font-size: 15px; }
.gbv-modal-x { border: none; background: transparent; font-size: 20px; line-height: 1; color: var(--muted); cursor: pointer; padding: 0 4px; }
.gbv-modal-x:hover { color: var(--ink); }
.gbv-modal-body { padding: 14px 18px; overflow: auto; }
.gbv-modal-all { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 8px; background: var(--bg); font-size: 13px; font-weight: 600; cursor: pointer; }
.gbv-modal-list { margin-top: 8px; }
.gbv-modal-row { display: flex; align-items: center; gap: 10px; padding: 10px; border-bottom: 1px solid #f3f4f6; font-size: 13px; cursor: pointer; }
.gbv-modal-row:hover { background: #fafafa; }
.gbv-modal-row input, .gbv-modal-all input { width: 16px; height: 16px; accent-color: var(--primary); flex: none; cursor: pointer; }
.gbv-modal-row .ci-name { flex: 1; min-width: 0; font-weight: 600; color: var(--ink); }
.gbv-modal-row .ci-qty { color: var(--muted); flex: none; }
.gbv-modal-row .ci-price { flex: none; font-weight: 600; min-width: 68px; text-align: right; }
.gbv-modal-hint { margin: 12px 0 0; font-size: 12px; color: var(--muted); line-height: 1.6; }
.gbv-modal-foot { display: flex; justify-content: flex-end; gap: 10px; padding: 14px 18px; border-top: 1px solid var(--line); }
.gbv-modal-foot .btn { min-width: 96px; }
.gbv-modal-foot .btn:disabled { opacity: .5; cursor: not-allowed; }

/* ---------- 订单里已取消的商品行 ---------- */
.order-item-row.cancelled .order-item-name { text-decoration: line-through; color: var(--muted); }
.order-item-row.cancelled .order-item-subtotal { text-decoration: line-through; color: var(--muted); }
.order-item-row.cancelled .order-item-product img { opacity: .45; }
.order-item-row.cancelled .order-item-qty { color: var(--muted); text-decoration: line-through; }
.od-item.cancelled .od-item-name { text-decoration: line-through; color: var(--muted); }
.od-item.cancelled .od-item-price, .od-item.cancelled .od-item-qty { text-decoration: line-through; color: var(--muted); }
.od-item.cancelled .od-item-thumb img { opacity: .45; }
.od-item-cancelled { display: inline-block; margin-top: 4px; font-size: 11px; font-weight: 700; color: #991b1b; background: #fee2e2; border-radius: 4px; padding: 1px 6px; }
