@font-face {
  font-family: "Figtree";
  src: url("../webfonts/figtree-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("../webfonts/figtree-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ---------- 主题变量 ---------- */
:root {
  --site-primary: #c41230;
  --site-primary-dark: #9c0e26;
  --site-primary-soft: rgba(196, 18, 48, 0.08);
  --site-dark: #14161a;
  --site-dark-2: #1e2228;
  --site-gray: #6c757d;
  --site-light: #f6f7f9;
  --site-radius: 12px;
  --site-shadow: 0 2px 12px rgba(20, 22, 26, 0.08);
  --site-shadow-hover: 0 10px 28px rgba(20, 22, 26, 0.16);

  /* 覆盖 Bootstrap 主色 */
  --bs-primary: #c41230;
  --bs-primary-rgb: 196, 18, 48;
  --bs-link-color: #c41230;
  --bs-link-hover-color: #9c0e26;
  --bs-body-font-family: "Figtree", -apple-system, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  --bs-body-color: #2b2f36;
}

/* ---------- 基础 ---------- */
html { scroll-behavior: smooth; }
body { background-color: #fff; }

.text-site-primary { color: var(--site-primary) !important; }
.bg-site-primary { background-color: var(--site-primary) !important; }
.bg-site-dark { background-color: var(--site-dark) !important; }
.bg-site-light { background-color: var(--site-light) !important; }

a { text-decoration: none; color: var(--site-gray);}

/* 主题按钮（覆盖 .btn-primary 配色） */
.btn-primary {
  --bs-btn-bg: #c41230;
  --bs-btn-border-color: #c41230;
  --bs-btn-hover-bg: #9c0e26;
  --bs-btn-hover-border-color: #9c0e26;
  --bs-btn-active-bg: #8a0c21;
  --bs-btn-active-border-color: #8a0c21;
  --bs-btn-disabled-bg: #c41230;
  --bs-btn-disabled-border-color: #c41230;
}
.btn-outline-primary {
  --bs-btn-color: #c41230;
  --bs-btn-border-color: #c41230;
  --bs-btn-hover-bg: #c41230;
  --bs-btn-hover-border-color: #c41230;
  --bs-btn-active-bg: #c41230;
  --bs-btn-active-border-color: #c41230;
}

/* ---------- 导航栏 ---------- */
.site-topbar {
  background: var(--site-dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-topbar .site-topbar-link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}
.site-topbar .site-topbar-link:hover { color: #fff; }
.site-topbar .site-topbar-vip { color: #ffd27a; }
.site-topbar .site-topbar-vip:hover { color: #ffe9b8; }
.site-topbar-right { display: inline-flex; align-items: center; gap: 1.2rem; }
.site-topbar-right .site-topbar-link + .site-topbar-link { position: relative; }
.site-topbar-right .site-topbar-link + .site-topbar-link::before {
  content: "";
  position: absolute;
  left: -0.6rem;
  top: 50%;
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%);
}

/* ---------- 吸顶导航容器（父容器为 body，可无限粘滞） ---------- */
#site-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
}
#site-navbar.stuck .site-navbar {
  box-shadow: 0 4px 18px rgba(20, 22, 26, 0.14);
}
.site-navbar {
  background: #fff;
  box-shadow: 0 1px 0 rgba(20, 22, 26, 0.08);
}
.site-navbar .navbar-brand {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--site-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-navbar .brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--site-primary), #e8415e);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 3px 10px rgba(196, 18, 48, 0.35);
}
.site-navbar .nav-link {
  color: #3a3f47;
  font-weight: 500;
  padding: 0.6rem 0.95rem !important;
  border-radius: 8px;
  transition: color 0.2s, background-color 0.2s;
}
.site-navbar .nav-link:hover { color: var(--site-primary); }
.site-navbar .nav-link.active {
  color: var(--site-primary);
  background: var(--site-primary-soft);
  font-weight: 600;
}

/* ---------- 导航二级下拉 ---------- */
/* 移除 Bootstrap .dropdown-toggle 自带箭头（保留自定义 Font Awesome 箭头） */
.site-navbar .dropdown-toggle::after,
.site-navbar .dropdown-toggle::before {
  display: none;
}
.site-navbar .nav-caret {
  font-size: 0.7rem;
  transition: transform 0.2s;
  opacity: 0.7;
}
.site-navbar .nav-item.dropdown.show .nav-caret {
  transform: rotate(180deg);
  opacity: 1;
}
.site-navbar .dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(20, 22, 26, 0.14);
  padding: 0.5rem;
  margin-top: 0.35rem;
  min-width: 180px;
}
.site-navbar .dropdown-item {
  border-radius: 8px;
  padding: 0.55rem 0.85rem;
  font-weight: 500;
  color: #3a3f47;
  transition: color 0.15s, background-color 0.15s;
}
.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item:focus {
  color: var(--site-primary);
  background: var(--site-primary-soft);
}
/* 手机端折叠菜单内：下拉平铺展开，去掉阴影悬浮感 */
@media (max-width: 991.98px) {
  .site-navbar .dropdown-menu {
    box-shadow: none;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    background: #f6f7f9;
  }
}

/* ---------- 版块通用 ---------- */
.section-padding { padding: 4.5rem 0; }
.section-padding-sm { padding: 3rem 0; }

.section-title {
  font-weight: 800;
  color: var(--site-dark);
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
  position: relative;
  padding-left: 14px;
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 5px;
  border-radius: 3px;
  background: var(--site-primary);
}
.section-sub { color: var(--site-gray); }

@media (max-width: 575.98px) {
  .section-padding { padding: 3rem 0; }
  .section-title { font-size: 1.4rem; }
}

/* ---------- Hero 轮播 ---------- */
.hero-swiper {
  width: 100%;
  background: var(--site-dark);
}
.hero-slide {
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-slide-bg-red   { background: linear-gradient(135deg, #7c0b20 0%, var(--site-primary) 60%, #e8415e 100%); }
.hero-slide-bg-dark  { background: linear-gradient(135deg, #0d0f12 0%, var(--site-dark) 55%, var(--site-dark-2) 100%); }
.hero-slide-bg-blue  { background: linear-gradient(135deg, #0c1526 0%, #16263f 55%, #24405f 100%); }

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(16, 17, 20, 0.88) 15%, rgba(16, 17, 20, 0.55) 60%, rgba(16, 17, 20, 0.25));
}
.hero-slide .container { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-block;
  color: #ffb3c0;
  background: rgba(196, 18, 48, 0.25);
  border: 1px solid rgba(196, 18, 48, 0.5);
  border-radius: 999px;
  padding: 0.3rem 1rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.hero-title {
  color: #fff;
  font-weight: 800;
  font-size: clamp(1.8rem, 4.2vw, 3.2rem);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.hero-title .accent { color: #ff5c74; }
.hero-desc {
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}
.hero-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 10px;
  height: 10px;
  transition: all 0.25s;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--site-primary);
  width: 26px;
  border-radius: 999px;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: #fff;
  --swiper-navigation-size-offset: 10px;
}
@media (max-width: 767.98px) {
  .hero-slide { min-height: 430px; }
  .hero-desc { font-size: 0.95rem; }
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev { display: none; }
}

/* ---------- 分类导航卡片 ---------- */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.5rem 0.75rem;
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: var(--site-radius);
  color: var(--site-dark);
  font-weight: 600;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.category-card .cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--site-primary-soft);
  color: var(--site-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: background 0.25s, color 0.25s;
}
.category-card small { color: var(--site-gray); font-weight: 400; }
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--site-shadow-hover);
  border-color: rgba(196, 18, 48, 0.35);
  color: var(--site-primary);
}
.category-card:hover .cat-icon {
  background: var(--site-primary);
  color: #fff;
}

/* ---------- 模板卡片 ---------- */
.card-template {
  border: 1px solid #eceef2;
  border-radius: var(--site-radius);
  overflow: hidden;
  background: #fff;
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.card-template:hover {
  /* transform: translateY(-6px); */
  box-shadow: var(--site-shadow-hover);
  border-color: rgba(196, 18, 48, 0.3);
}
.card-img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
}
.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card-img-wrapper .card-img-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 99;
  opacity: 1;
  background: no-repeat center / cover;
}
  .card-img-wrapper .card-img-link.back-1::after{
   background-image: url(../images/bg1.png);
  }
  .card-img-wrapper .card-img-link.back-2::after{
   background-image: url(../images/bg2.png);
  }
  .card-img-wrapper .card-img-link.back-3::after{
   background-image: url(../images/bg3.png);
  }
  .card-img-wrapper .card-img-link.back-4::after{
   background-image: url(../images/bg4.png);
  }
  .card-img-wrapper .card-img-link.back-5::after{
    background-image: url(../images/bg5.png);
  }
  .card-img-wrapper .card-img-link.back-6::after{
    background-image: url(../images/bg6.png);
  }
  .card-img-wrapper .card-img-link.back-7::after{
    background-image: url(../images/bg7.png);
  }
  .card-img-wrapper .card-img-link.back-8::after{
    background-image: url(../images/bg8.png);
  }
  .card-img-wrapper .card-img-link.back-9::after{
    background-image: url(../images/bg9.png);
  }
  .card-img-wrapper .card-img-link.back-0::after{
    background-image: url(../images/bg0.png);
   }
/* .card-template:hover .card-img-wrapper img { transform: scale(1.05); } */

/* ---------- 卡片图片 hover 操作按钮（模板演示 / 模板预览） ---------- */
.card-img-link {
  display: block;
  width: 100%;
  height: 100%;
}
.card-img-actions {
  position: absolute;
  inset: 0;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(17, 19, 23, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.card-template:hover .card-img-actions {
  opacity: 1;
  pointer-events: auto;
}
.card-action-btn {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.5rem 1.05rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transform: translateY(10px);
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.card-template:hover .card-action-btn { transform: translateY(0); }
.card-template:hover .card-action-btn.action-preview { transition-delay: 0.05s; }
.card-action-btn.action-demo {
  background: var(--site-primary);
  color: #fff;
}
.card-action-btn.action-demo:hover,
.card-action-btn.action-demo:focus {
  background: var(--site-primary-dark);
  color: #fff;
}
.card-action-btn.action-preview {
  background: rgba(255, 255, 255, 0.92);
  color: var(--site-dark);
  display: none;
}
.card-action-btn.action-preview:nth-child(1) {
  display: block;
}
.card-action-btn.action-preview:hover,
.card-action-btn.action-preview:focus {
  background: #fff;
  color: var(--site-primary);
}
.card-img-overlay-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.card-body-template {
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.card-title-template {
  font-weight: 700;
  color: var(--site-dark);
  font-size: 1.02rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-desc-template {
  color: var(--site-gray);
  font-size: 0.875rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.card-meta-template {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.6rem;
  border-top: 1px dashed #eceef2;
  color: #9aa1ab;
  font-size: 0.8rem;
}
/* 卡片价格行：价格 + 查看详情按钮 */
.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.6rem;
  border-top: 1px dashed #eceef2;
}
.btn-view-detail {
  display: inline-block;
  background: var(--site-primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-view-detail:hover,
.btn-view-detail:focus {
  background: var(--site-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196, 18, 48, 0.28);
}
.price-current {
  color: var(--site-primary);
  font-weight: 800;
  font-size: 1.25rem;
}
.price-current .yen { font-size: 0.8em; }
.price-original {
  color: #a6adb8;
  text-decoration: line-through;
  font-size: 0.85rem;
  font-weight: 400;
}
.badge-category {
  background: var(--site-primary-soft);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.32em 0.7em;
  border-radius: 6px;
  z-index: 100;
}

/* ---------- 特性 ---------- */
.feature-item {
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: var(--site-radius);
  background: var(--site-light);
  height: 100%;
}
.feature-item .feature-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: #fff;
  color: var(--site-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: var(--site-shadow);
}
.feature-item h5 { font-weight: 700; color: var(--site-dark); }
.feature-item p { color: var(--site-gray); font-size: 0.9rem; margin: 0; }

/* ---------- 统计数字 ---------- */
.stats-section {
  background: var(--site-dark);
  color: #fff;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(196, 18, 48, 0.35), transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(196, 18, 48, 0.22), transparent 45%);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-number .suffix { color: #ff5c74; }
.stat-label { color: rgba(255, 255, 255, 0.65); margin-top: 0.5rem; }
@media (max-width: 575.98px) {
  .stat-number { font-size: 1.9rem; }
}

/* ---------- 列表页控制区 ---------- */
.filter-toolbar {
  background: var(--site-light);
  border: 1px solid #eceef2;
  border-radius: var(--site-radius);
  padding: 1.1rem;
}
.filter-toolbar .btn-group-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-toolbar .filter-btn {
  border: 1px solid #d9dde4;
  color: #4a505a;
  background: #fff;
  border-radius: 8px !important;
  padding: 0.42rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.filter-toolbar .filter-btn:hover {
  border-color: var(--site-primary);
  color: var(--site-primary);
}
.filter-toolbar .filter-btn.active {
  background: var(--site-primary);
  border-color: var(--site-primary);
  color: #fff;
}
.form-select-sort {
  max-width: 190px;
  border-radius: 8px;
  border-color: #d9dde4;
  font-size: 0.9rem;
}
.form-select-sort:focus {
  border-color: var(--site-primary);
  box-shadow: 0 0 0 0.2rem var(--site-primary-soft);
}
/* 搜索按钮 */
.btn-search {
  background: var(--site-primary);
  border-color: var(--site-primary);
  color: #fff;
  font-weight: 600;
  padding: 0.45rem 1.4rem;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn-search:hover,
.btn-search:focus {
  background: var(--site-primary-dark);
  border-color: var(--site-primary-dark);
  color: #fff;
  box-shadow: 0 4px 12px rgba(196, 18, 48, 0.3);
}
/* 搜索框 focus：去除蓝色边框与光晕 */
.filter-toolbar .input-group:focus-within .form-control,
.filter-toolbar .input-group:focus-within .input-group-text {
  border-color: #d9dde4;
}
.filter-toolbar .form-control:focus {
  box-shadow: none;
}
.filter-toolbar .btn-search:focus {
  box-shadow: none;
}
/* 搜索框清除按钮 */
.input-clear-btn {
  border: 0;
  background: transparent;
  color: #b6bcc6;
  padding: 0 0.4rem;
  font-size: 1rem;
  z-index: 3;
  position: absolute !important;
    right: 80px;
    top: 10px;
}
.input-clear-btn:hover {
  color: var(--site-primary);
  background: transparent;
}
.input-clear-btn:focus {
  box-shadow: none;
}
/* ---------- 空状态 ---------- */
.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--site-gray);
}
.empty-state .empty-icon {
  font-size: 3.2rem;
  color: #ccd2da;
  margin-bottom: 1rem;
}

/* ---------- 详情页 ---------- */
.breadcrumb-item a { color: var(--site-gray); }
.breadcrumb-item a:hover { color: var(--site-primary); }
.breadcrumb-item.active { color: #3a3f47; }

.detail-preview {
  border: 1px solid #eceef2;
  border-radius: var(--site-radius);
  overflow: hidden;
  background: var(--site-light);
  position: relative;
  padding: 2rem 2.2rem;
}
.show-content{
  padding: 0rem;
}
.show-content img{
  max-width: 100% !important;
  height: auto !important;
}
.show-content p{
  background-color: transparent;
  line-height: 1.6 !important;
}
/* .detail-preview img {
  width: 100%;
  display: block;
  cursor: zoom-in;
}
.detail-preview .zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(20, 22, 26, 0.75);
  color: #fff;
  border-radius: 999px;
  font-size: 0.8rem;
  padding: 0.3rem 0.85rem;
  pointer-events: none;
} */
.detail-info-card {
  border: 1px solid #eceef2;
  border-radius: var(--site-radius);
  padding: 1.5rem;
  background: #fff;
  box-shadow: var(--site-shadow);
  /* position: sticky; */
  height: 100%;
}
@media (max-width: 991.98px) {
  .detail-info-card { position: static; }
}
.detail-price-box {
  background: var(--site-primary-soft);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  margin: 1rem 0;
}
.detail-action-row .detail-action-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.62rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.detail-action-row .action-demo {
  background: var(--site-primary);
  color: #fff;
}
.detail-action-row .action-demo:hover,
.detail-action-row .action-demo:focus {
  background: var(--site-primary-dark);
  color: #fff;
}
.detail-action-row .action-preview {
  background: #fff;
  color: var(--site-primary);
  border: 1px solid var(--site-primary);
  display: none;
}
.detail-action-row .action-preview:nth-child(2) {
  display: inline-flex;
}
.detail-action-row .action-preview:hover,
.detail-action-row .action-preview:focus {
  background: var(--site-primary-soft);
  color: var(--site-primary);
}
.detail-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.925rem;
}
.detail-info-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed #eceef2;
}
.detail-info-list li:last-child { border-bottom: 0; }
.detail-info-list li > span:first-child { color: var(--site-gray);flex-shrink: 0; }
.detail-info-list li > span:last-child { color: #2b2f36; text-align: right;display: flex; gap: 10px;flex-wrap: wrap; justify-content: flex-end; }
.pay-notice {
  border: 1px dashed rgba(196, 18, 48, 0.45);
  background: var(--site-primary-soft);
  color: var(--site-primary-dark);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.875rem;
  text-align: center;
}
/* 详情页“立即购买”按钮 */
.btn-buy-now {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, var(--site-primary), var(--site-primary-dark));
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(196, 18, 48, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn-buy-now:hover,
.btn-buy-now:focus {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 10px 24px rgba(196, 18, 48, 0.38);
}
/* 状态：已购买 → 下载模板（绿色） */
.btn-download-template {
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.28);
}
.btn-download-template:hover,
.btn-download-template:focus {
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.38);
}
/* 状态：未登录 → 注册/登录（深色描边） */
.btn-login-register {
  background: transparent;
  border: 2px solid var(--site-dark);
  color: var(--site-dark);
  letter-spacing: 1px;
  box-shadow: none;
}
.btn-login-register:hover,
.btn-login-register:focus {
  color: #fff;
  background: var(--site-dark);
  filter: none;
  box-shadow: 0 8px 18px rgba(26, 30, 36, 0.25);
}
.template-detail-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ---------- 相关推荐 ---------- */
.related-section { background: var(--site-light); }

/* ---------- 页脚 ---------- */
.site-footer {
  background: var(--site-dark);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 3.5rem;
}
.site-footer h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  display: inline-block;
  padding: 0.2rem 0;
  font-size: 0.925rem;
  transition: color 0.2s;
}
.site-footer a:hover { color: #ff5c74; }
.site-footer .footer-brand {
  font-weight: 800;
  color: #fff;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.site-footer .footer-brand .brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--site-primary), #e8415e);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- 回到顶部 ---------- */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--site-primary);
  color: #fff;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(196, 18, 48, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 1040;
  cursor: pointer;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--site-primary-dark); }

/* ---------- 页面标题区（列表页 / 详情页顶部） ---------- */
.page-head {
  background: var(--site-light);
  border-bottom: 1px solid #eceef2;
  padding: 2.2rem 1rem;
}
.page-head h1 {
  font-weight: 800;
  color: var(--site-dark);
  font-size: 1.6rem;
  margin: 0;
}
.page-head p {
  color: var(--site-gray);
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
}

/* ---------- 多行筛选面板（行业 / 颜色 / 终端） ---------- */
.filter-panel {
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: var(--site-radius);
  padding: 0;
  overflow: hidden;
}
.filter-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid #f0f1f4;
}
.filter-row-last { border-bottom: 0; }
.filter-label {
  flex-shrink: 0;
  width: 6.5rem;
  font-weight: 600;
  color: var(--site-dark);
  font-size: 0.9rem;
  padding-top: 0.35rem;
  display: flex;
  align-items: center;
}
.filter-label i { color: var(--site-primary); font-size: 0.85rem; }
.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border: 1px solid #e2e5ea;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #4a505a;
  background: #fff;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.filter-chip:hover {
  border-color: var(--site-primary);
  color: var(--site-primary);
  background: var(--site-primary-soft);
}
.filter-chip.active {
  background: var(--site-primary);
  border-color: var(--site-primary);
  color: #fff;
}
@media (max-width: 575.98px) {
  .filter-row {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 0.9rem;
  }
  .filter-label {
    width: auto;
    padding-top: 0;
  }
}

/* ==================== 文章列表页 ==================== */

/* 文章卡片：左缩略图 + 右内容 */
.article-item {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: var(--site-radius);
  padding: 1.1rem;
  transition: all 0.25s;
}
.article-item + .article-item { margin-top: 1rem; }
.article-item:hover {
  border-color: rgba(196, 18, 48, 0.35);
  box-shadow: 0 10px 26px rgba(20, 24, 34, 0.08);
  transform: translateY(-2px);
}
.article-thumb {
  flex-shrink: 0;
  width: 240px;
  border-radius: calc(var(--site-radius) - 6px);
  overflow: hidden;
  position: relative;
  display: block;
}
.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.article-item:hover .article-thumb img { transform: scale(1.04); }
.article-thumb .badge-category {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.article-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0.25rem 0;
}
.article-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--site-dark);
  text-decoration: none;
  display: block;
  margin-bottom: 0.45rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-title:hover { color: var(--site-primary); }
.article-excerpt {
  color: var(--site-gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-meta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #9aa1ac;
}
.article-meta i { margin-right: 4px; }
.article-meta a { color: #9aa1ac; text-decoration: none; }
.article-meta a:hover { color: var(--site-primary); }

/* 文章列表筛选条（复用 filter-chip） */
.article-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

/* 分页 */
.site-pagination {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.site-pagination a {
  position: relative;
    display: block;
    padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
    font-size: var(--bs-pagination-font-size);
    text-decoration: none;
  color: var(--site-dark);
  border: 1px solid #e2e5ea;
  border-radius: 8px;
  margin: 0 3px;
  min-width: 40px;
  text-align: center;
  transition: all 0.2s;
}
.site-pagination a:hover { border-color: var(--site-primary); color: var(--site-primary); }
.site-pagination .page-item.active a {
  background: var(--site-primary);
  border-color: var(--site-primary);
  color: #fff;
}
.site-pagination .page-item.disabled a {
  color: #c3c8d0;
  background: #f7f8fa;
}

/* 手机端：文章卡片上下堆叠 */
@media (max-width: 767.98px) {
  .article-item {
    flex-direction: column;
    gap: 0.85rem;
    padding: 0.85rem;
  }
  .article-thumb { width: 100%; }
  .article-thumb img { height: 180px; }
}

/* ==================== 文章详情页 / 单页面 ==================== */

/* 正文排版 */
.article-content {
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: var(--site-radius);
  padding: 2rem 2.2rem;
}
.article-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--site-dark);
  margin: 2rem 0 0.9rem;
  padding-left: 0.75rem;
  border-left: 4px solid var(--site-primary);
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--site-dark);
  margin: 1.5rem 0 0.7rem;
}
.article-content p {
  color: #3d434d;
  line-height: 1.9;
  font-size: 0.98rem;
  margin-bottom: 1rem;
}
.article-content ul, .article-content ol {
  color: #3d434d;
  line-height: 1.9;
  font-size: 0.98rem;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.article-content img {
  max-width: 100%;
  border-radius: calc(var(--site-radius) - 6px);
  margin: 1rem 0;
}
.article-content blockquote {
  border-left: 4px solid var(--site-primary);
  background: var(--site-primary-soft);
  color: var(--site-dark);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}
.article-content blockquote p:last-child { margin-bottom: 0; }

/* 文章头部 */
.article-head { margin-bottom: 1.5rem; }
.article-head h1 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--site-dark);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.article-head .article-meta { font-size: 0.88rem; }
.article-cover {
  width: 100%;
  border-radius: calc(var(--site-radius) - 6px);
  margin-bottom: 1.5rem;
}
pre{
    overflow: auto;
    background: #000;
    color: #fff;
    padding: 36px 10px 10px 10px;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 4px;
    line-height: 1.6;
    font-size: 16px;
}
pre .btn-pre-copy{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    color: hsla(0,0%,54.9%,.8);
    transition: color .1s;
}
/* 侧栏卡片 */
.side-card {
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: var(--site-radius);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
}
.side-card h6 {
  font-weight: 700;
  color: var(--site-dark);
  font-size: 0.98rem;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.side-card h6 i { color: var(--site-primary); font-size: 0.9rem; }
.side-toc a {
  display: block;
  padding: 0.4rem 0 0.4rem 1rem;
  color: #5a616c;
  text-decoration: none;
  font-size: 0.9rem;
  border-left: 2px solid #eceef2;
  transition: all 0.2s;
}
.side-toc a:hover, .side-toc a.active {
  color: var(--site-primary);
  border-left-color: var(--site-primary);
}
.side-post {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px dashed #eceef2;
}
.side-post:last-child { border-bottom: 0; }
.side-post img {
  width: 62px;
  height: 46px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.side-post .title {
  font-size: 0.88rem;
  color: var(--site-dark);
  text-decoration: none;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.side-post .title:hover { color: var(--site-primary); }
.side-post .date { font-size: 0.76rem; color: #9aa1ac; }

/* 标签云 */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-cloud a {
  font-size: 0.82rem;
  color: #5a616c;
  background: var(--site-light);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  text-decoration: none;
  transition: all 0.2s;
}
.tag-cloud a:hover {
  background: var(--site-primary);
  color: #fff;
}

/* 上一篇 / 下一篇 */
.article-nav {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.article-nav a {
  flex: 1;
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: var(--site-radius);
  padding: 0.9rem 1.1rem;
  text-decoration: none;
  transition: all 0.2s;
  min-width: 0;
}
.article-nav a:hover { border-color: var(--site-primary); }
.article-nav .nav-label {
  display: block;
  font-size: 0.78rem;
  color: #9aa1ac;
  margin-bottom: 0.25rem;
}
.article-nav .nav-title {
  font-size: 0.9rem;
  color: var(--site-dark);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.article-nav a.next { text-align: right; }

/* ==================== 单页面（关于我们） ==================== */

/* 简介横幅 */
.about-banner {
  background: linear-gradient(135deg, var(--site-dark) 0%, #2a2f3a 60%, #3d2330 100%);
  color: #fff;
  padding: 3.5rem 0;
}
.about-banner h1 {
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}
.about-banner p { color: rgba(255, 255, 255, 0.75); margin: 0; }
.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 1.5rem;
}
.about-stat .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}
.about-stat .num span { color: var(--site-primary); }
.about-stat .txt { font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); }

/* 价值观卡片 */
.value-card {
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: var(--site-radius);
  padding: 1.6rem 1.4rem;
  height: 100%;
  transition: all 0.25s;
}
.value-card:hover {
  border-color: rgba(196, 18, 48, 0.35);
  box-shadow: 0 10px 26px rgba(20, 24, 34, 0.08);
  transform: translateY(-3px);
}
.value-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--site-primary-soft);
  color: var(--site-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}
.value-card h5 { font-weight: 700; font-size: 1.02rem; color: var(--site-dark); }
.value-card p { color: var(--site-gray); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* 发展历程时间线 */
.timeline { position: relative; padding-left: 1.75rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: #eceef2;
}
.timeline-item { position: relative; padding-bottom: 1.6rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.75rem;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--site-primary);
}
.timeline-item .year {
  font-weight: 800;
  color: var(--site-primary);
  font-size: 1rem;
}
.timeline-item h6 { font-weight: 700; color: var(--site-dark); margin: 0.2rem 0; }
.timeline-item p { color: var(--site-gray); font-size: 0.9rem; margin: 0; line-height: 1.7; }

@media (max-width: 575.98px) {
  .article-content { padding: 1.25rem 1.1rem; }
  .about-banner { padding: 2.5rem 0; }
  .about-stats { gap: 1.5rem; }
  .article-nav { flex-direction: column; }
}


/* ==================== 订单确认页（checkout） ==================== */
.checkout-card {
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: var(--site-radius);
  padding: 1.5rem 1.6rem;
  margin-bottom: 1.5rem;
}
.checkout-card-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--site-dark);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #f1f3f6;
  margin-bottom: 1.2rem;
}
.checkout-card-title i {
  color: var(--site-primary);
  font-size: 1rem;
}
/* 付款方式选项 */
.pay-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1.5px solid #eceef2;
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.pay-option + .pay-option { margin-top: 0.75rem; }
.pay-option:hover { border-color: rgba(196, 18, 48, 0.35); }
.pay-option input[type="radio"] {
  accent-color: var(--site-primary);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  cursor: pointer;
}
.pay-option:has(input[type="radio"]:checked) {
  border-color: var(--site-primary);
  background: var(--site-primary-soft);
  box-shadow: 0 0 0 3px rgba(196, 18, 48, 0.08);
}
.pay-option .pay-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #f4f6f8;
  color: #3a3f47;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.pay-option:has(input[type="radio"]:checked) .pay-icon {
  background: #fff;
  color: var(--site-primary);
}
.pay-option .pay-name { font-weight: 600; color: var(--site-dark); margin: 0; }
.pay-option .pay-desc {
  color: var(--site-gray);
  font-size: 0.8rem;
  margin: 0.15rem 0 0;
}
/* 商品行 */
.order-product {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.order-product .product-thumb {
  width: 96px;
  height: 96px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eceef2;
  flex-shrink: 0;
  background: var(--site-light);
}
.order-product .product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.order-product .product-info { flex: 1; min-width: 0; }
.order-product .product-title {
  font-weight: 700;
  color: var(--site-dark);
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
}
.order-product .product-title:hover { color: var(--site-primary); }
.order-product .product-sku {
  color: var(--site-gray);
  font-size: 0.82rem;
  margin: 0.25rem 0 0;
}
.order-product .product-price-line {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 0.7rem;
  color: var(--site-gray);
  font-size: 0.9rem;
}
.order-product .product-price-line strong { color: var(--site-primary); font-weight: 700; }
.order-product .product-price-line .line-total { color: var(--site-primary); font-weight: 800; font-size: 1.05rem; }
/* 买家留言 */
.checkout-remark textarea { border-radius: 8px; }
/* 订单摘要侧栏 */
.order-summary {
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: var(--site-radius);
  padding: 1.4rem 1.5rem;
  position: sticky;
  top: 92px;
}
.order-summary-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--site-dark);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #f1f3f6;
  margin-bottom: 1rem;
}
.order-summary .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: var(--site-gray);
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
}
.order-summary .summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 0.9rem;
  border-top: 1px dashed #eceef2;
  margin: 0.9rem 0 1.2rem;
}
.order-summary .summary-total .label { font-weight: 700; color: var(--site-dark); }
.order-summary .summary-total .value {
  color: var(--site-primary);
  font-weight: 800;
  font-size: 1.5rem;
}
.order-summary .summary-total .value .yen { font-size: 0.75em; }
.btn-submit-order {
  display: block;
  width: 100%;
  background: var(--site-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-submit-order:hover {
  background: var(--site-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(196, 18, 48, 0.28);
}
.order-summary .summary-tips {
  color: #a6adb8;
  font-size: 0.78rem;
  text-align: center;
  margin: 0.8rem 0 0;
}
@media (max-width: 991.98px) {
  .order-summary { position: static; }
}
@media (max-width: 575.98px) {
  .checkout-card { padding: 1.1rem 1rem; }
  .order-product { flex-direction: row; }
  .order-product .product-thumb { width: 84px; height: 84px; }
  .order-product .product-price-line { gap: 1rem; }
}
input, textarea, button, select {
    outline: none;
}

/* 下载弹窗样式 */
.download-popup {
  text-align: center;
  padding: 30px;
}
.download-popup .icon-download {
  font-size: 48px;
  color: #5FB878;
  margin-bottom: 15px;
  display: block;
}
.download-popup .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}
.download-popup .desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}
.download-popup .download-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #5FB878;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.download-popup .download-link:hover {
  background-color: #4AAE68;
}

@media (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 82.5rem;
    }
}
/* 主机优惠 */
.discounts{
	width: 100%;
	max-width: 1360px;
	margin: 0 auto;
}
.discounts h1{
    text-align: center;
    line-height: 1.8;
    padding: 20px 0;
}
.discounts .list{
    padding: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}
.discounts .list .title{
    background-color: #003656;
    text-align: center;
    padding: 30px 0;
		border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.discounts .list .title a{
	font-size: 32px;
	color: #fff;
}
.discounts .list ul{
	background-color: #1a1a2e;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 20px;
	border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    list-style: none;
}
.discounts .list ul li{
		background: #162447;
		border: 1px solid #1f4068;
		border-radius: 8px;
		padding: 20px;
		color: #fff;
    list-style: none;
		transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
}
.discounts .list ul li:hover{
	transform: translate(-2px, -3px);
    box-shadow: 5px 5px 5px rgba(250, 250, 250, 0.1);
}
.discounts .list ul li h2{
	font-size: 24px;
	line-height: 1.8;
}
.discounts .list ul li .desc{
	display: flex;
	flex-direction: column;
	padding: 15px 0;
}
.discounts .list ul li .desc span{
	padding-left: 15px;
	position: relative;
}
.discounts .list ul li .desc span::before{
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: #ddd;
	width: 8px;
	height: 1px;
}
.discounts .list ul li p{
	display: flex;
	flex-direction: column;
	text-align: center;
}
.discounts .list ul li p span{}
.discounts .list ul li p .price{
    color: #00ffab;
    font-weight: bold;
    font-size: 36px;
    padding: 10px 0;
}
.discounts .list ul li .button{
	text-align: center;
	    padding-top: 15px;
}
.discounts .list ul li a{
    display: inline-block;
    margin: 0 auto;
    background-color: #00ffab;
    padding: 5px 30px;
    border-radius: 3px;
    color: #1a1a2e;
    font-weight: bold;
}
@media screen and (max-width: 1024px) {
	.discounts .list ul{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 580px) {
	.discounts .list ul{
		grid-template-columns:  1fr;
	}
}
.vip-banner {
  background: linear-gradient(135deg, var(--site-dark) 0%, #242018 55%, #3a2b10 100%);
  color: #fff;
  padding: 4rem 0;
}
.vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(90deg, #f0c94b, #d4af37);
  color: #2b2308;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.vip-banner h1 {
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 0.7rem;
}
.vip-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin: 0;
}
.btn-vip {
  background: linear-gradient(135deg, #f0c94b 0%, #d4af37 100%);
  border: 1px solid #d4af37;
  color: #2b2308;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}
.btn-vip:hover, .btn-vip:focus {
  background: linear-gradient(135deg, #f6d565 0%, #e0bb3f 100%);
  border-color: #e0bb3f;
  color: #2b2308;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.45);
}
.btn-outline-vip {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  font-weight: 600;
}
.btn-outline-vip:hover, .btn-outline-vip:focus {
  background: rgba(212, 175, 55, 0.12);
  border-color: #e0bb3f;
  color: #f0c94b;
}
.vip-benefit-card {
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: var(--site-radius);
  padding: 1.6rem 1.4rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.vip-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--site-shadow-hover);
  border-color: #e6cf87;
}
.vip-benefit-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0c94b, #d4af37);
  color: #2b2308;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.vip-benefit-card h5 { font-weight: 700; margin-bottom: 0.5rem; }
.vip-benefit-card p { color: var(--site-gray); font-size: 0.9rem; margin: 0; }
.vip-pricing-bg {
  background: linear-gradient(160deg, var(--site-dark) 0%, #1c1d21 60%, #241c10 100%);
}
.vip-plan-card {
  position: relative;
  background: #fff;
  border-radius: var(--site-radius);
  padding: 2rem 1.4rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--site-shadow);
  border: 2px solid transparent;
}
.vip-plan-card h5 { font-weight: 700; margin-bottom: 0.2rem; }
.vip-plan-desc { color: var(--site-gray); font-size: 0.85rem; margin-bottom: 0.8rem; }
.vip-plan-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--site-primary);
  line-height: 1;
  margin-bottom: 1rem;
}
.vip-plan-price .yen { font-size: 1.1rem; margin-right: 2px; }
.vip-plan-price .unit { font-size: 0.85rem; color: var(--site-gray); font-weight: 500; }
.vip-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  flex-grow: 1;
}
.vip-plan-features li {
  padding: 0.38rem 0;
  color: #3a3f47;
  font-size: 0.88rem;
  border-bottom: 1px dashed #f0f1f4;
}
.vip-plan-features li:last-child { border-bottom: 0; }
.vip-plan-features i {
  width: 20px;
  color: var(--site-primary);
  margin-right: 6px;
}
.vip-plan-features i.fa-circle-xmark { color: #c9ced6; }
.vip-plan-hot {
  border-color: #d4af37;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.28);
}
.vip-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f0c94b, #d4af37);
  color: #2b2308;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(212, 175, 55, 0.4);
}
.vip-pay-note { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }
.vip-compare-table {
  background: #fff;
  border-radius: var(--site-radius);
  overflow: hidden;
  font-size: 0.88rem;
}
.vip-compare-table thead th {
  background: var(--site-dark);
  color: #fff;
  font-weight: 600;
  border-color: #2a2f3a;
  padding: 0.9rem 0.8rem;
}
.vip-compare-table thead th.vip-col-hot {
  background: linear-gradient(135deg, #f0c94b, #d4af37);
  color: #2b2308;
}
.vip-compare-table tbody td { padding: 0.75rem 0.8rem; vertical-align: middle; }
.vip-compare-table tbody tr:nth-child(even) { background: #fafbfc; }
.vip-compare-table tbody td.vip-col-hot { background: rgba(240, 201, 75, 0.1); font-weight: 600; }
.vip-feature-title { font-weight: 700; margin-bottom: 0.8rem; }
.vip-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vip-feature-list li {
  padding: 0.4rem 0;
  color: #3a3f47;
  font-size: 0.92rem;
}
.vip-feature-list i { color: var(--site-primary); margin-right: 8px; }
.vip-step-card {
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: var(--site-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vip-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--site-shadow-hover);
}
.vip-step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--site-primary-soft);
  color: var(--site-primary);
  font-size: 1.25rem;
  font-weight: 800;
}
.vip-step-card h5 { font-weight: 700; margin-bottom: 0.5rem; }
.vip-step-card p { color: var(--site-gray); font-size: 0.9rem; margin: 0; }
#vipFaq .accordion-item { border: 1px solid #eceef2; border-radius: 10px; margin-bottom: 0.7rem; overflow: hidden; }
#vipFaq .accordion-button { font-weight: 600; color: #14161a; padding: 1rem 1.2rem; }
#vipFaq .accordion-button:not(.collapsed) {
  background: var(--site-primary-soft);
  color: var(--site-primary);
  box-shadow: none;
}
#vipFaq .accordion-button:focus { box-shadow: none; border-color: transparent; }
#vipFaq .accordion-body { color: var(--site-gray); font-size: 0.92rem; }
@media (max-width: 991.98px) {
  .vip-banner { padding: 3rem 0; }
  .vip-banner h1 { font-size: 1.6rem; }
}
@media (max-width: 575.98px) {
  .vip-plan-price { font-size: 1.8rem; }
  .vip-banner .btn-lg { padding: 0.5rem 1.2rem; font-size: 0.95rem; }
}