/* ========== Global Reset & Variables ========== */
:root {
  --primary: #0a6e4f;
  --primary-light: #1a9c73;
  --primary-dark: #054d36;
  --accent: #e8a317;
  --bg: #f5f8f7;
  --card-bg: #ffffff;
  --text: #1a2e29;
  --text-light: #5a6e69;
  --text-muted: #8a9e99;
  --border: #e0e8e5;
  --danger: #d4380d;
  --success: #52c41a;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(10, 110, 79, 0.08);
  --shadow-hover: 0 6px 24px rgba(10, 110, 79, 0.15);
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 14px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

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

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ========== Container ========== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== 第三方平台备案公示条（审批序号21：显著位置） ========== */
.filing-bar {
  background: linear-gradient(90deg, #b71c1c 0%, #d4380d 50%, #b71c1c 100%);
  color: #fff;
  font-size: 13px;
  border-bottom: 2px solid #fff3;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.filing-bar-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 10px 0;
}
.filing-bar-tag {
  background: #fff;
  color: #b71c1c;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
}
.filing-bar-text {
  flex: 1;
  min-width: 200px;
}
.filing-bar-no {
  background: rgba(255,255,255,0.18);
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 600;
}
.filing-bar-no strong {
  font-weight: 700;
  letter-spacing: 0.5px;
}
.filing-bar-date {
  font-size: 12px;
  opacity: 0.9;
}

/* ========== Header ========== */
.header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header-top {
  background: var(--primary-dark);
  font-size: 12px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.75);
}

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

.header-top a {
  color: rgba(255, 255, 255, 0.85);
}

.header-top a:hover {
  color: #fff;
}

.header-main {
  padding: 14px 0;
}

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

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

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.logo-text h1 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.logo-text p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}

.nav a:hover,
.nav a.active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.cart-badge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.cart-badge:hover {
  background: rgba(255, 255, 255, 0.22);
}

.cart-count {
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

/* ========== Banner ========== */
.banner {
  background: linear-gradient(135deg, #0a6e4f 0%, #1a9c73 50%, #2dbf96 100%);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.banner::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.banner::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.banner h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.8;
}

.banner-btns {
  display: flex;
  gap: 14px;
}

.btn-banner {
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  border: 2px solid transparent;
}

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

.btn-banner-primary:hover {
  background: #d49515;
  color: #fff;
  transform: translateY(-2px);
}

.btn-banner-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-banner-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ========== 质量公告 / 产品安全预警（审批序号22：醒目位置） ========== */
.quality-notice {
  background: linear-gradient(180deg, #fff8e1 0%, #fff3cd 100%);
  border-top: 2px solid #e8a317;
  border-bottom: 2px solid #e8a317;
  padding: 14px 0;
}
.quality-notice .qn-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.quality-notice .qn-icon {
  font-size: 22px;
}
.quality-notice .qn-title {
  font-size: 15px;
  font-weight: 700;
  color: #b71c1c;
  letter-spacing: 1px;
}
.quality-notice .qn-date {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-muted);
}
.quality-notice .qn-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quality-notice .qn-item {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(255,255,255,0.7);
  color: var(--text);
}
.quality-notice .qn-item.qn-empty {
  background: #d4edda;
  color: #155724;
  font-weight: 600;
}
.quality-notice .qn-item.qn-info {
  border-left: 3px solid var(--primary);
}
.quality-notice .qn-item.qn-warn {
  border-left: 3px solid #e8a317;
  background: #fff3cd;
  color: #856404;
}
.quality-notice .qn-item.qn-danger {
  border-left: 3px solid #b71c1c;
  background: #f8d7da;
  color: #721c24;
  font-weight: 600;
}

/* ========== 入驻协议 / 通用条款正文（审批序号16） ========== */
.protocol-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 24px 0 10px;
  padding-left: 12px;
  border-left: 4px solid var(--primary);
}
.protocol-body p,
.protocol-body li {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 8px;
}
.protocol-body ol,
.protocol-body ul {
  padding-left: 24px;
  margin-bottom: 12px;
}
.protocol-body ol li,
.protocol-body ul li {
  margin-bottom: 6px;
}

/* ========== Section ========== */
.section {
  padding: 50px 0;
}

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

.section-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.section-title p {
  font-size: 15px;
  color: var(--text-muted);
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ========== Category Cards ========== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 1px solid var(--border);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.category-card .cat-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.category-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.category-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========== Product Grid ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.product-img {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  /*background:linear-gradient(135deg,#f0f8f5,#e8f5f0);*/
  background-color: #fff;
}

.product-img .reg-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(10, 110, 79, 0.9);
  color: #fff;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 500;
}

.product-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.4;
}

.product-info .product-desc {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 10px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-reg {
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 500;
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.price-now {
  font-size: 22px;
  font-weight: 700;
  color: var(--danger);
}

.price-now small {
  font-size: 13px;
  font-weight: 400;
}

.price-original {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-actions {
  display: flex;
  gap: 8px;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

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

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

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

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

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

.btn-accent:hover {
  background: #d49515;
  color: #fff;
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 12px 32px;
  font-size: 15px;
}

.btn-sm {
  padding: 5px 12px;
  font-size: 12px;
}

/* ========== Features Section ========== */
.features {
  background: #fff;
  padding: 50px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-item {
  text-align: center;
}

.feature-item .feat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}

.feature-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.feature-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========== About Section ========== */
.about-section {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.about-text p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 14px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.about-stat {
  text-align: center;
}

.about-stat .stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
}

.about-stat .stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.about-visual {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  padding: 50px;
  text-align: center;
  color: #fff;
}

.about-visual .big-icon {
  font-size: 80px;
  margin-bottom: 20px;
}

.about-visual h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-visual p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* ========== Footer ========== */
.footer {
  background: #1a2e29;
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col p,
.footer-col li {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  transition: color 0.2s;
}

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

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom p {
  margin-bottom: 4px;
}

/* ========== Breadcrumb ========== */
.breadcrumb {
  padding: 20px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

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

.breadcrumb span {
  margin: 0 8px;
}

/* ========== Product Detail ========== */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.detail-img {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  background: var(--bg);
  border-radius: var(--radius);
}

.detail-info h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.detail-reg {
  background: #f0f8f5;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}

.detail-price {
  background: var(--bg);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.detail-price .price-now {
  font-size: 30px;
  font-weight: 800;
  color: var(--danger);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.detail-meta .meta-item {
  font-size: 13px;
  color: var(--text-light);
}

.detail-meta .meta-item strong {
  color: var(--text);
}

.detail-features {
  margin-bottom: 20px;
}

.detail-features li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.detail-features li::before {
  content: "\2713";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.detail-quantity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.qty-control button {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg);
  font-size: 18px;
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s;
}

.qty-control button:hover {
  background: var(--border);
}

.qty-control input {
  width: 50px;
  height: 36px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 15px;
  outline: none;
}

.detail-actions {
  display: flex;
  gap: 12px;
}

.detail-desc {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  margin-top: 24px;
}

.detail-desc h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg);
  color: var(--text);
}

.detail-desc p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 12px;
}

/* ========== Cart ========== */
.cart-page {
  padding: 20px 0 50px;
}

.cart-table {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cart-header {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
  padding: 14px 20px;
  background: var(--bg);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

.cart-item {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
  padding: 20px;
  border-top: 1px solid var(--border);
  align-items: center;
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  /*background: var(--bg);*/
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}

.cart-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid var(--border);
}

.cart-item-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.cart-item-reg {
  font-size: 12px;
  color: var(--primary);
}

.cart-item-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--danger);
}

.cart-item-remove {
  color: var(--text-muted);
  cursor: pointer;
  font-size: 18px;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: var(--danger);
}

.cart-summary {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-summary-left {
  font-size: 14px;
  color: var(--text-light);
}

.cart-summary-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-total {
  font-size: 14px;
  color: var(--text);
}

.cart-total .total-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--danger);
}

.empty-cart {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.empty-cart .empty-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.3;
}

.empty-cart h3 {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 12px;
}

/* ========== Checkout ========== */
.checkout-page {
  padding: 20px 0 50px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
}

.checkout-section {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 20px;
}

.checkout-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--danger);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(10, 110, 79, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.order-summary {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  position: sticky;
  top: 90px;
}

.order-summary h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.order-items {
  margin-bottom: 18px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
}

.order-item-name {
  color: var(--text-light);
  flex: 1;
}

.order-item-price {
  color: var(--text);
  font-weight: 500;
}

.order-totals {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-light);
}

.order-total-final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  margin-top: 10px;
  padding-top: 14px;
}

.order-total-final .label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.order-total-final .amount {
  font-size: 26px;
  font-weight: 800;
  color: var(--danger);
}

/* ========== Order Success ========== */
.order-success {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 40px auto;
}

.order-success .success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--success);
}

.order-success h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.order-success p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.order-info-box {
  background: var(--bg);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  text-align: left;
}

.order-info-box .info-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
}

.order-info-box .info-row .label {
  color: var(--text-muted);
}

.order-info-box .info-row .value {
  color: var(--text);
  font-weight: 500;
}

/* ========== License Page ========== */
.license-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.license-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.license-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-hover);
}

.license-card .lic-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 16px;
}

.license-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.license-card .lic-number {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.license-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========== Company Subsidiary Cards ========== */
.subsidiary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.subsidiary-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--primary);
  transition: all 0.2s;
}

.subsidiary-card:hover {
  background: #eef5f2;
  transform: translateX(4px);
}

.subsidiary-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.subsidiary-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========== Notice / Disclaimer ========== */
.notice-box {
  background: #fff8e6;
  border: 1px solid #ffe58f;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 13px;
  color: #8a6d3b;
  line-height: 1.8;
}

.notice-box strong {
  color: #6a5520;
}

/* ========== Filter Bar ========== */
.filter-bar {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.filter-btn {
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
  color: var(--text-light);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ========== Responsive ========== */
@media (max-width: 968px) {
  .category-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

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

  .nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .category-grid,
  .features-grid,
  .product-grid,
  .license-grid,
  .subsidiary-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .banner h2 {
    font-size: 26px;
  }

  .cart-header {
    display: none;
  }

  .cart-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
