:root {
      --primary: #0064c8;
      --primary-light: #1677ff;
      --primary-dark: #003d82;
      --primary-soft: #e6f4ff;
      --accent: #ff6a00;
      --accent-soft: #fff7e6;
      --bg: #f5f7fa;
      --bg-white: #ffffff;
      --text: #181818;
      --text-secondary: #5f6570;
      --text-muted: #8c92a0;
      --border: #e8ecf2;
      --shadow: 0 4px 24px rgba(0, 100, 200, 0.08);
      --shadow-lg: 0 20px 60px rgba(0, 61, 130, 0.12);
      --radius: 12px;
      --radius-lg: 20px;
      --header-h: 64px;
      --discount: 0.8;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Noto Sans SC', -apple-system, 'PingFang SC', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    @keyframes pulse-ring {
      0% { transform: scale(0.95); opacity: 0.7; }
      50% { transform: scale(1.05); opacity: 0.3; }
      100% { transform: scale(0.95); opacity: 0.7; }
    }
    @keyframes shimmer {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }
    @keyframes gradient-flow {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    @keyframes line-grow {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }
    @keyframes spin-slow {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    @keyframes blob {
      0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(0,0); }
      50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: translate(20px,-20px); }
    }
    @keyframes slideUp {
      from { opacity: 0; transform: translateY(20px) scale(0.98); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    @keyframes toastIn {
      from { opacity: 0; transform: translateX(-100%); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes countPop {
      0% { transform: scale(1); }
      50% { transform: scale(1.08); }
      100% { transform: scale(1); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .container { width: min(1280px, 92vw); margin: 0 auto; }
    .container-wide { width: min(1440px, 96vw); margin: 0 auto; }

    .top-notice {
      background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
      background-size: 200% 100%;
      animation: gradient-flow 6s ease infinite;
      color: #fff;
      padding: 0.5rem 0;
      font-size: 0.8rem;
      font-weight: 500;
      overflow: hidden;
    }

    .notice-marquee {
      display: inline-block;
      white-space: nowrap;
      animation: scrollNotice 35s linear infinite;
      padding-left: 100%;
    }

    @keyframes scrollNotice {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }

    .notice-marquee span { margin: 0 2.5rem; }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      height: var(--header-h);
      background: rgba(255,255,255,0.94);
      backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
      transition: box-shadow 0.3s, border-color 0.3s;
    }

    header.scrolled { box-shadow: var(--shadow); }

    .nav {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      text-decoration: none;
      color: var(--text);
      line-height: 1;
      flex-shrink: 0;
      padding: 0.15rem 0.35rem 0.15rem 0;
      border-radius: 12px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .logo:hover {
      transform: translateY(-1px);
    }

    .logo-brand {
      display: block;
      height: 28px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 2px 6px rgba(0, 100, 200, 0.12));
    }

    .logo-divider {
      width: 1px;
      height: 26px;
      background: linear-gradient(180deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
      flex-shrink: 0;
    }

    .logo-suffix {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.15rem;
      min-width: 0;
    }

    .logo-suffix-main {
      font-size: 1.15rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      line-height: 1;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 45%, var(--primary-light) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .logo-suffix-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.12rem 0.45rem;
      border-radius: 999px;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: #fff;
      background: linear-gradient(135deg, #ff8a2a 0%, var(--accent) 55%, #e85d00 100%);
      box-shadow: 0 2px 8px rgba(255, 106, 0, 0.35);
      white-space: nowrap;
    }

    .logo-suffix-badge::before {
      content: "";
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #fff;
      opacity: 0.9;
      animation: pulse-ring 2s ease-in-out infinite;
    }

    .nav-menu {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-menu a {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      position: relative;
      transition: color 0.2s;
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s;
    }

    .nav-menu a:hover { color: var(--primary); }
    .nav-menu a:hover::after { width: 100%; }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

  .tg-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.5rem 1rem;
      border-radius: 8px;
      font-size: 0.82rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.25s;
      border: 1px solid var(--border);
      background: #fff;
      color: #0088cc;
    }

    .tg-btn:hover {
      background: #e3f4fc;
      border-color: #0088cc;
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0, 136, 204, 0.2);
    }

    .tg-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.65rem 1.35rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: #fff;
      box-shadow: 0 4px 16px rgba(0, 100, 200, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0, 100, 200, 0.45);
    }

    .btn-accent {
      background: linear-gradient(135deg, var(--accent), #ff8533);
      color: #fff;
      box-shadow: 0 4px 16px rgba(255, 106, 0, 0.35);
    }

    .btn-outline {
      background: #fff;
      color: var(--primary);
      border: 1px solid var(--primary);
    }

    .btn-outline:hover { background: var(--primary-soft); }

    .btn-lg { padding: 0.9rem 2rem; font-size: 1rem; border-radius: 10px; }

    .hero-full {
      min-height: calc(100vh - var(--header-h) - 36px);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: linear-gradient(165deg, #f0f6ff 0%, #fff 40%, #f5f9ff 100%);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .hero-blob {
      position: absolute;
      width: 500px;
      height: 500px;
      background: linear-gradient(135deg, rgba(22, 119, 255, 0.12), rgba(0, 100, 200, 0.06));
      animation: blob 12s ease-in-out infinite;
    }

    .hero-blob-1 { top: -15%; right: -10%; }
    .hero-blob-2 {
      bottom: -20%;
      left: -15%;
      width: 600px;
      height: 600px;
      animation-delay: -4s;
      background: linear-gradient(135deg, rgba(255, 106, 0, 0.08), rgba(22, 119, 255, 0.05));
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0, 100, 200, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 100, 200, 0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 4rem;
      align-items: center;
      padding: 4rem 0;
      width: min(1280px, 92vw);
      margin: 0 auto;
    }

    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; text-align: center; }
      .hero-visual { order: -1; }
      .hero-badges, .hero-cta { justify-content: center; }
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4rem 1rem;
      background: var(--primary-soft);
      border: 1px solid rgba(0, 100, 200, 0.15);
      border-radius: 999px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 1.25rem;
      animation: fadeUp 0.8s ease backwards;
    }

    .hero-tag .dot {
      width: 8px;
      height: 8px;
      background: #52c41a;
      border-radius: 50%;
      animation: pulse-ring 2s ease infinite;
    }

    .hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 900;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 1.25rem;
      animation: fadeUp 0.8s 0.1s ease backwards;
    }

    .hero h1 .gradient-text {
      background: linear-gradient(135deg, var(--primary), var(--primary-light), #36cfc9);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradient-flow 4s ease infinite;
    }

    .hero-desc {
      font-size: 1.1rem;
      color: var(--text-secondary);
      max-width: 540px;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.8s 0.2s ease backwards;
    }

    @media (max-width: 1024px) { .hero-desc { margin-left: auto; margin-right: auto; } }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-bottom: 2rem;
      animation: fadeUp 0.8s 0.3s ease backwards;
    }

    .hero-badge {
      padding: 0.45rem 0.9rem;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text-secondary);
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      transition: all 0.25s;
    }

    .hero-badge:hover {
      border-color: var(--primary);
      color: var(--primary);
      transform: translateY(-2px);
    }

    .hero-badge strong { color: var(--primary); }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      animation: fadeUp 0.8s 0.4s ease backwards;
    }

    @media (max-width: 1024px) {
      .hero-cta .btn { flex: 1 1 auto; min-width: 140px; }
    }

    .hero-visual { animation: fadeUp 0.8s 0.2s ease backwards; }

    .hero-card {
      background: #fff;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
      overflow: hidden;
      position: relative;
    }

    .hero-card-head {
      padding: 1.5rem 2rem;
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
      color: #fff;
      text-align: center;
    }

    .hero-card-head h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
    .hero-card-head p { font-size: 0.85rem; opacity: 0.9; }

    .price-showcase {
      padding: 2rem;
      text-align: center;
    }

    .price-discount {
      font-size: 4.5rem;
      font-weight: 900;
      line-height: 1;
      background: linear-gradient(135deg, var(--accent), #ff8533);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .price-discount small { font-size: 1.5rem; }

    .price-note { font-size: 0.88rem; color: var(--text-muted); margin-top: 0.5rem; }

    .promise-list {
      padding: 0 2rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .promise-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.85rem 1rem;
      background: var(--primary-soft);
      border-radius: 10px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--primary-dark);
      transition: transform 0.2s;
    }

    .promise-item:hover { transform: translateX(4px); }

    .promise-item .icon {
      width: 36px;
      height: 36px;
      background: #fff;
      border-radius: 8px;
      display: grid;
      place-items: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .stats-bar {
      background: #fff;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 2.5rem 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2rem;
      text-align: center;
    }

    @media (max-width: 900px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
      .stat-item:last-child { grid-column: 1 / -1; justify-self: center; width: min(100%, 200px); }
    }

    .stat-item strong {
      display: block;
      font-size: 2rem;
      font-weight: 900;
      color: var(--primary);
      line-height: 1.2;
    }

    .stat-item span { font-size: 0.85rem; color: var(--text-muted); }

    .stat-item strong.counting { animation: countPop 0.4s ease; }

    .countdown-strip {
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: 1.25rem 0;
      box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    }

    .countdown-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 1.5rem 2rem;
    }

    .countdown-inner > p { font-weight: 700; color: var(--text); font-size: 0.95rem; }

    .cd-group { display: flex; gap: 0.5rem; }

    .cd-unit {
      min-width: 56px;
      padding: 0.5rem 0.35rem;
      background: var(--primary-soft);
      border-radius: 10px;
      text-align: center;
      border: 1px solid rgba(0, 100, 200, 0.12);
    }

    .cd-unit b {
      display: block;
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--primary);
      font-variant-numeric: tabular-nums;
    }

    .cd-unit small { font-size: 0.68rem; color: var(--text-muted); }

    .hot-section {
      padding: 5rem 0;
      background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
    }

    .hot-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    @media (max-width: 900px) { .hot-grid { grid-template-columns: 1fr; } }

    .hot-card {
      background: #fff;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      position: relative;
    }

    .hot-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
      border-color: var(--primary-light);
    }

    .hot-card.rank-1 { border-top: 4px solid var(--accent); }
    .hot-card.rank-2 { border-top: 4px solid var(--primary); transform: scale(1.02); }
    @media (max-width: 900px) { .hot-card.rank-2 { transform: none; } }
    .hot-card.rank-3 { border-top: 4px solid #52c41a; }

    .hot-card-head {
      padding: 1.25rem 1.5rem;
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .hot-rank {
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: #fff;
      font-weight: 900;
      border-radius: 8px;
      display: grid;
      place-items: center;
      font-size: 0.9rem;
    }

    .hot-card.rank-1 .hot-rank { background: linear-gradient(135deg, var(--accent), #ff8533); }

    .hot-card-body { padding: 1.5rem; }

    .hot-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
    .hot-specs { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.7; }

    .hot-price-row { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 1rem; }
    .hot-price-row .was { text-decoration: line-through; color: var(--text-muted); font-size: 0.9rem; }
    .hot-price-row .now { font-size: 2rem; font-weight: 900; color: var(--accent); }

    .banner-slider {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-bottom: 3rem;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
    }

    .banner-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .banner-slide {
      min-width: 100%;
      padding: 3rem 2.5rem;
      background: linear-gradient(135deg, var(--primary-soft) 0%, #fff 50%, var(--accent-soft) 100%);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 2rem;
      align-items: center;
    }

    @media (max-width: 768px) {
      .banner-slide { grid-template-columns: 1fr; text-align: center; padding: 2rem 1.5rem; }
    }

    .banner-slide h3 { font-size: 1.5rem; font-weight: 900; color: var(--primary-dark); margin-bottom: 0.5rem; }
    .banner-slide p { color: var(--text-secondary); font-size: 0.95rem; max-width: 480px; }
    .banner-slide .banner-num {
      font-size: 3.5rem;
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }

    .banner-dots {
      position: absolute;
      bottom: 1rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.5rem;
    }

    .banner-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: none;
      background: rgba(0,100,200,0.25);
      cursor: pointer;
      transition: all 0.3s;
    }

    .banner-dot.active { width: 28px; border-radius: 999px; background: var(--primary); }

    .scene-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    @media (max-width: 900px) { .scene-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 500px) { .scene-grid { grid-template-columns: 1fr; } }

    .scene-card {
      padding: 1.75rem;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      transition: all 0.35s;
    }

    .scene-card:hover {
      border-color: var(--primary-light);
      box-shadow: var(--shadow);
      transform: translateY(-4px);
    }

    .scene-card-head {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.75rem;
    }

    .scene-card .emoji { font-size: 1.25rem; line-height: 1; flex-shrink: 0; }
    .scene-card h4 { font-size: 1rem; line-height: 1.3; margin: 0; }
    .scene-card p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }
    .scene-card .rec { font-size: 0.75rem; color: var(--primary); font-weight: 600; margin-top: 0.75rem; }

    .compare-wrap {
      overflow-x: auto;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      background: #fff;
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.88rem;
      min-width: 640px;
    }

    .compare-table th,
    .compare-table td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--border); }

    .compare-table th {
      background: var(--primary-soft);
      font-weight: 700;
      color: var(--primary-dark);
    }

    .compare-table tr:hover td { background: rgba(0, 100, 200, 0.03); }

    .compare-table .price-cell { font-weight: 800; color: var(--accent); font-size: 1rem; }

    .toast-wrap {
      position: fixed;
      bottom: 100px;
      left: 24px;
      z-index: 2000;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      pointer-events: none;
    }

    .toast-item {
      padding: 0.75rem 1.1rem;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      border-left: 4px solid var(--primary);
      font-size: 0.82rem;
      animation: toastIn 0.5s ease;
      max-width: 320px;
    }

    .toast-item strong { color: var(--primary); }

    .back-top {
      position: fixed;
      bottom: 28px;
      left: 28px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid var(--border);
      color: var(--primary);
      font-size: 1.2rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
      z-index: 998;
      box-shadow: var(--shadow);
    }

    .back-top.show { opacity: 1; visibility: visible; }
    .back-top:hover { background: var(--primary); color: #fff; transform: translateY(-4px); }

    .product-card {
      animation: slideUp 0.5s ease backwards;
    }

    .region-panel.active .product-card:nth-child(1) { animation-delay: 0.05s; }
    .region-panel.active .product-card:nth-child(2) { animation-delay: 0.1s; }
    .region-panel.active .product-card:nth-child(3) { animation-delay: 0.15s; }
    .region-panel.active .product-card:nth-child(4) { animation-delay: 0.2s; }
    .region-panel.active .product-card:nth-child(5) { animation-delay: 0.25s; }
    .region-panel.active .product-card:nth-child(6) { animation-delay: 0.3s; }
    .region-panel.active .product-card:nth-child(7) { animation-delay: 0.35s; }
    .region-panel.active .product-card:nth-child(8) { animation-delay: 0.4s; }

    .product-toolbar {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      align-items: center;
      margin-bottom: 2rem;
    }

    .search-box {
      flex: 1;
      min-width: 240px;
      max-width: 400px;
      position: relative;
    }

    .search-box input {
      width: 100%;
      padding: 0.75rem 1rem 0.75rem 2.75rem;
      border: 1px solid var(--border);
      border-radius: 10px;
      font-family: inherit;
      font-size: 0.9rem;
      transition: all 0.25s;
    }

    .search-box input:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(0, 100, 200, 0.12);
    }

    .search-box::before {
      content: '🔍';
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: 0.9rem;
    }

    .product-count {
      font-size: 0.88rem;
      color: var(--text-muted);
      font-weight: 600;
    }

    .product-count em { color: var(--primary); font-style: normal; font-weight: 800; }

    .promise-banner {
      padding: 4rem 0;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
      background-size: 200% 200%;
      animation: gradient-flow 8s ease infinite;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .promise-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .promise-banner-inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    @media (max-width: 900px) { .promise-banner-inner { grid-template-columns: 1fr; } }

    .promise-banner h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 900;
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .promise-banner p { font-size: 1rem; opacity: 0.92; line-height: 1.8; }

    .promise-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      align-content: start;
    }

    @media (min-width: 901px) {
      .promise-banner-inner { align-items: stretch; }
      .promise-cards { min-height: 100%; }
    }

    .promise-mini {
      padding: 1.25rem;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: var(--radius);
      transition: all 0.3s;
    }

    .promise-mini:hover {
      background: rgba(255,255,255,0.2);
      transform: translateY(-4px);
    }

    .promise-mini h4 { font-size: 0.95rem; margin-bottom: 0.35rem; }
    .promise-mini p { font-size: 0.8rem; opacity: 0.85; }

    .section {
      padding: 5rem 0;
    }

    .section-alt { background: #fff; }

    .section-head {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-head .label {
      display: inline-block;
      padding: 0.35rem 1rem;
      background: var(--primary-soft);
      color: var(--primary);
      font-size: 0.8rem;
      font-weight: 700;
      border-radius: 999px;
      margin-bottom: 0.75rem;
      letter-spacing: 0.05em;
    }

    .section-head h2 {
      font-size: 1.2rem;
      font-weight: 900;
      margin-bottom: 0.6rem;
      letter-spacing: -0.02em;
    }

    .section-head p {
      color: var(--text-secondary);
      font-size: 1rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .region-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 2.5rem;
      padding: 0.35rem;
      background: var(--bg);
      border-radius: 14px;
      max-width: 100%;
    }

    .region-flag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1.35em;
      height: 0.9em;
      flex-shrink: 0;
      border-radius: 2px;
      overflow: hidden;
      box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    }

    .region-flag svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .region-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.65rem 1.25rem;
      border: none;
      background: transparent;
      font-family: inherit;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-secondary);
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.25s;
      white-space: nowrap;
      line-height: 1;
    }

    .region-btn > span {
      line-height: 1.2;
    }

    .region-btn:hover { color: var(--primary); background: rgba(255,255,255,0.8); }

    .region-btn.active {
      background: #fff;
      color: var(--primary);
      box-shadow: var(--shadow);
    }

    .region-panel { display: none; }
    .region-panel.active {
      display: block;
      animation: fadeIn 0.5s ease;
    }

    .region-header {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1.75rem;
      padding: 1.25rem 1.5rem;
      background: linear-gradient(90deg, var(--primary-soft), #fff);
      border-radius: var(--radius);
      border-left: 4px solid var(--primary);
    }

    .region-header h3 {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.2rem;
      font-weight: 800;
      line-height: 1.2;
    }
    .region-header p { font-size: 0.88rem; color: var(--text-secondary); }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.25rem;
    }

    .product-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      position: relative;
      overflow: hidden;
      transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
      display: flex;
      flex-direction: column;
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--primary-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s;
    }

    .product-card:hover {
      border-color: rgba(0, 100, 200, 0.25);
      box-shadow: var(--shadow-lg);
      transform: translateY(-8px);
    }

    .product-card:hover::before { transform: scaleX(1); }

    .product-card.hot {
      border-color: rgba(255, 106, 0, 0.3);
      background: linear-gradient(180deg, #fff 0%, var(--accent-soft) 100%);
    }

    .card-tags {
      display: flex;
      gap: 0.4rem;
      margin-bottom: 0.75rem;
      flex-wrap: wrap;
    }

    .card-tag {
      padding: 0.2rem 0.55rem;
      font-size: 0.68rem;
      font-weight: 700;
      border-radius: 4px;
    }

    .tag-sale { background: var(--accent-soft); color: var(--accent); }
    .tag-hot { background: #fff1f0; color: #cf1322; }
    .tag-test { background: #f6ffed; color: #389e0d; }

    .product-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
    .product-id { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 1rem; }

    .spec-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
      flex: 1;
      margin-bottom: 1.25rem;
    }

    .spec-item {
      font-size: 0.8rem;
      padding: 0.4rem 0.5rem;
      background: var(--bg);
      border-radius: 6px;
    }

    .spec-item label { display: block; font-size: 0.68rem; color: var(--text-muted); margin-bottom: 0.1rem; }
    .spec-item span { font-weight: 600; color: var(--text); }

    .card-price {
      padding-top: 1rem;
      border-top: 1px dashed var(--border);
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 0.75rem;
    }

    .price-old { font-size: 0.82rem; color: var(--text-muted); text-decoration: line-through; }
    .price-new { font-size: 1.6rem; font-weight: 900; color: var(--accent); line-height: 1; }
    .price-new sub { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); }
    .price-off { font-size: 0.72rem; color: var(--primary); font-weight: 600; margin-top: 0.2rem; }

    .card-actions {
      display: flex;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .card-actions .btn { flex: 1; padding: 0.55rem; font-size: 0.82rem; }

    .view-toggle {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 2rem;
    }

    .view-btn {
      padding: 0.6rem 1.5rem;
      border: 1px solid var(--border);
      background: #fff;
      font-family: inherit;
      font-size: 0.88rem;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.25s;
      color: var(--text-secondary);
    }

    .view-btn.active {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }

    #allProductsView { display: none; }
    #allProductsView.active { display: block; }
    #regionView.hidden { display: none; }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    @media (max-width: 900px) {
      .features-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 520px) {
      .features-grid { grid-template-columns: 1fr; }
    }

    .feature-card {
      padding: 2rem;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      transition: all 0.35s;
      position: relative;
      overflow: hidden;
    }

    .feature-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--primary-light));
      transform: scaleX(0);
      transition: transform 0.4s;
    }

    .feature-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-6px);
    }

    .feature-card:hover::after { transform: scaleX(1); }

    .feature-icon {
      width: 56px;
      height: 56px;
      background: var(--primary-soft);
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-size: 1.6rem;
      margin-bottom: 1.25rem;
      transition: transform 0.3s;
    }

    .feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); }

    .feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
    .feature-card p { font-size: 0.88rem; color: var(--text-secondary); }

    .promo-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }

    @media (max-width: 900px) { .promo-strip { grid-template-columns: 1fr 1fr; } }

    .promo-item {
      padding: 1.5rem;
      background: #fff;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      text-align: center;
      transition: all 0.3s;
      cursor: default;
    }

    .promo-item:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow);
      transform: scale(1.02);
    }

    .promo-item .num {
      font-size: 1.75rem;
      font-weight: 900;
      color: var(--primary);
      margin-bottom: 0.35rem;
    }

    .promo-item h4 { font-size: 0.92rem; margin-bottom: 0.25rem; }
    .promo-item p { font-size: 0.78rem; color: var(--text-muted); }

    .process-line {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      position: relative;
      width: 100%;
    }

    .process-line::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 28px;
      right: 28px;
      height: 2px;
      background: var(--border);
      z-index: 0;
    }

    .process-line::after {
      content: '';
      position: absolute;
      top: 28px;
      left: 28px;
      right: 28px;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--primary-light));
      z-index: 1;
      animation: line-grow 2s 0.5s ease forwards;
      transform-origin: left;
    }

    @media (max-width: 768px) {
      .process-line {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .process-line::before, .process-line::after { display: none; }
    }

    .process-step {
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .process-step:first-child { text-align: left; }
    .process-step:last-child { text-align: right; }

    .process-step .circle {
      width: 56px;
      height: 56px;
      margin: 0 auto 1rem;
      background: #fff;
      border: 2px solid var(--primary);
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-weight: 900;
      color: var(--primary);
      font-size: 1.1rem;
      transition: all 0.3s;
    }

    .process-step:first-child .circle { margin-left: 0; margin-right: auto; }
    .process-step:last-child .circle { margin-left: auto; margin-right: 0; }

    @media (max-width: 768px) {
      .process-step,
      .process-step:first-child,
      .process-step:last-child { text-align: left; }
      .process-step .circle,
      .process-step:first-child .circle,
      .process-step:last-child .circle { margin-left: 0; margin-right: auto; }
    }

    .process-step:hover .circle {
      background: var(--primary);
      color: #fff;
      transform: scale(1.1);
    }

    .process-step h4 { font-size: 0.95rem; margin-bottom: 0.35rem; }
    .process-step p { font-size: 0.8rem; color: var(--text-muted); }

    .contact-section {
      padding: 5rem 0;
      background: linear-gradient(180deg, #fff 0%, var(--primary-soft) 100%);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      align-items: stretch;
    }

    @media (max-width: 600px) { .contact-grid { grid-template-columns: 1fr; } }

    .contact-card {
      display: block;
      padding: 1.75rem 1.5rem;
      background: #fff;
      border-radius: var(--radius-lg);
      border: 2px solid var(--border);
      text-decoration: none;
      color: inherit;
      transition: all 0.35s;
      position: relative;
      overflow: hidden;
      height: 100%;
    }

    .contact-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 136, 204, 0.05), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .contact-card:hover {
      border-color: #0088cc;
      box-shadow: 0 16px 48px rgba(0, 136, 204, 0.2);
      transform: translateY(-8px);
    }

    .contact-card:hover::before { opacity: 1; }

    .contact-card-inner {
      display: grid;
      grid-template-columns: 48px 1fr;
      grid-template-rows: auto auto 1fr auto;
      gap: 0.3rem 1rem;
      height: 100%;
      text-align: left;
    }

    .contact-card .tg-large {
      grid-row: 1 / 4;
      grid-column: 1;
      align-self: start;
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, #0088cc, #00a2e8);
      border-radius: 12px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .contact-card .tg-large svg { width: 26px; height: 26px; fill: #fff; }

    .contact-card h3 {
      grid-column: 2;
      grid-row: 1;
      font-size: 1rem;
      font-weight: 800;
      margin: 0;
      position: relative;
    }

    .contact-card .contact-handle {
      grid-column: 2;
      grid-row: 2;
      font-size: 0.88rem;
      color: var(--text-secondary);
      margin: 0;
      position: relative;
    }

    .contact-card .contact-tags {
      grid-column: 2;
      grid-row: 3;
      font-size: 0.8rem;
      color: var(--text-muted);
      margin: 0.5rem 0 0;
      line-height: 1.5;
      position: relative;
    }

    .contact-card .online {
      grid-column: 2;
      grid-row: 4;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.35rem 0.85rem;
      background: #f6ffed;
      color: #52c41a;
      font-size: 0.78rem;
      font-weight: 700;
      border-radius: 999px;
      position: relative;
      margin-top: 1rem;
      justify-self: start;
    }

    .contact-card .online::before {
      content: '';
      width: 8px;
      height: 8px;
      background: #52c41a;
      border-radius: 50%;
      animation: pulse-ring 2s infinite;
    }

    .cta-full {
      padding: 5rem 0;
      text-align: center;
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .cta-orbit {
      position: absolute;
      width: 300px;
      height: 300px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: spin-slow 20s linear infinite;
    }

    .cta-orbit-2 {
      width: 450px;
      height: 450px;
      animation-direction: reverse;
      animation-duration: 30s;
    }

    .cta-full h2 { font-size: 2rem; font-weight: 900; margin-bottom: 0.75rem; position: relative; }
    .cta-full p { opacity: 0.9; margin-bottom: 2rem; font-size: 1.05rem; position: relative; }
    .cta-full .btn-row { position: relative; justify-content: center; margin: 0 auto; }

    footer {
      padding: 2rem 0;
      background: #fff;
      border-top: 1px solid var(--border);
      text-align: center;
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    footer a { color: var(--primary); text-decoration: none; }

    .action-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
      margin-top: 1.25rem;
      max-width: 520px;
    }

    @media (max-width: 480px) {
      .action-grid { grid-template-columns: 1fr; max-width: 100%; }
    }

    .action-grid--cta {
      margin-top: 0;
      max-width: 640px;
      grid-template-columns: repeat(3, 1fr);
    }

    @media (max-width: 640px) {
      .action-grid--cta { grid-template-columns: 1fr; max-width: 320px; }
    }

    .btn-glass {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.75rem 1rem;
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.88rem;
      text-decoration: none;
      transition: all 0.25s;
      background: rgba(255, 255, 255, 0.95);
      color: var(--primary-dark);
      border: 2px solid transparent;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
      text-align: center;
      white-space: nowrap;
    }

    .btn-glass:hover {
      background: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .btn-glass-accent {
      background: linear-gradient(135deg, var(--accent), #ff8533);
      color: #fff;
      border-color: transparent;
      box-shadow: 0 4px 16px rgba(255, 106, 0, 0.35);
    }

    .btn-glass-accent:hover {
      background: linear-gradient(135deg, #ff8533, var(--accent));
      color: #fff;
    }

    .btn-glass-outline {
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      border: 2px solid rgba(255, 255, 255, 0.55);
      box-shadow: none;
    }

    .btn-glass-outline:hover {
      background: rgba(255, 255, 255, 0.22);
      color: #fff;
      border-color: rgba(255, 255, 255, 0.85);
    }

    .cta-full .btn-row.action-grid--cta .btn-glass {
      padding: 0.9rem 1.25rem;
      font-size: 0.95rem;
      border-radius: 10px;
    }

    .cs-widget {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 999;
      width: 320px;
      max-width: calc(100vw - 48px);
      font-size: 0.85rem;
    }

    .cs-widget.collapsed .cs-body { display: none; }
    .cs-widget.collapsed .cs-toggle-icon { transform: rotate(180deg); }

    .cs-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.85rem 1rem;
      background: linear-gradient(135deg, #0088cc, #00a2e8);
      color: #fff;
      border-radius: 14px 14px 0 0;
      cursor: pointer;
      user-select: none;
    }

    .cs-widget.collapsed .cs-head { border-radius: 14px; }

    .cs-head-left { display: flex; align-items: center; gap: 0.6rem; }
    .cs-head-left strong { font-size: 0.95rem; display: block; }
    .cs-head-left small { font-size: 0.72rem; opacity: 0.9; }

    .cs-head-dot {
      width: 10px;
      height: 10px;
      background: #52c41a;
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(82, 196, 26, 0.35);
      animation: pulse-ring 2s infinite;
    }

    .cs-toggle-icon {
      font-size: 1rem;
      transition: transform 0.3s;
      opacity: 0.9;
    }

    .cs-body {
      background: #fff;
      border: 1px solid var(--border);
      border-top: none;
      border-radius: 0 0 14px 14px;
      box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      animation: fadeIn 0.3s ease;
    }

    .cs-tip {
      padding: 0.75rem 1rem;
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-size: 0.78rem;
      line-height: 1.5;
      border-bottom: 1px solid var(--border);
    }

    .cs-staff {
      padding: 0.75rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }

    .cs-person {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem;
      background: var(--bg);
      border-radius: 12px;
      text-decoration: none;
      color: inherit;
      border: 1px solid transparent;
      transition: all 0.25s;
    }

    .cs-person:hover {
      border-color: #0088cc;
      background: #e3f4fc;
      transform: translateX(4px);
    }

    .cs-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, #0088cc, #1677ff);
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 800;
      font-size: 0.75rem;
      flex-shrink: 0;
    }

    .cs-person-info { flex: 1; min-width: 0; }
    .cs-person-info strong { display: block; font-size: 0.88rem; color: var(--text); }
    .cs-person-info em {
      display: block;
      font-style: normal;
      font-size: 0.75rem;
      color: #0088cc;
      font-weight: 600;
    }
    .cs-person-info span { font-size: 0.72rem; color: var(--text-muted); }

    .cs-person-arrow {
      color: var(--text-muted);
      font-size: 1.1rem;
    }

    .cs-hot {
      margin: 0 1rem 0.75rem;
      padding: 0.85rem;
      background: linear-gradient(135deg, var(--accent-soft), #fff);
      border: 1px solid rgba(255, 106, 0, 0.25);
      border-radius: 12px;
    }

    .cs-hot-label {
      font-size: 0.68rem;
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.35rem;
    }

    .cs-hot h4 { font-size: 0.88rem; margin-bottom: 0.25rem; }
    .cs-hot .cs-hot-price {
      font-size: 1.25rem;
      font-weight: 900;
      color: var(--accent);
    }
    .cs-hot .cs-hot-price small {
      font-size: 0.72rem;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: line-through;
      margin-left: 0.35rem;
    }

    .cs-quick {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
      padding: 0 1rem 1rem;
    }

    .cs-quick a {
      padding: 0.55rem 0.5rem;
      text-align: center;
      font-size: 0.75rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 8px;
      transition: all 0.2s;
    }

    .cs-q-primary {
      background: var(--primary);
      color: #fff;
      grid-column: 1 / -1;
    }
    .cs-q-primary:hover { background: var(--primary-light); }

    .cs-q-secondary {
      background: var(--bg);
      color: var(--primary);
      border: 1px solid var(--border);
    }
    .cs-q-secondary:hover { border-color: var(--primary); }

    .card-actions { flex-direction: column; }
    .card-actions .btn-tg {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      width: 100%;
      padding: 0.6rem;
      font-size: 0.8rem;
    }
    .card-actions .btn-tg small {
      font-size: 0.68rem;
      font-weight: 500;
      opacity: 0.85;
    }

    .product-card.card-more {
      background: linear-gradient(145deg, var(--primary-soft), #fff);
      border: 2px dashed var(--primary-light);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 320px;
    }

    .product-card.card-more .more-icon {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 1.75rem;
      margin-bottom: 1rem;
      color: #fff;
    }

    .product-card.card-more h4 { font-size: 1.1rem; margin-bottom: 0.5rem; padding: 0; }
    .product-card.card-more p {
      font-size: 0.85rem;
      color: var(--text-secondary);
      margin-bottom: 1.25rem;
      padding: 0 1rem;
    }

    @media (max-width: 768px) {
      .nav-menu { display: none; }
      .cs-widget { width: 300px; right: 12px; bottom: 12px; }
      .logo { gap: 0.5rem; }
      .logo-brand { height: 24px; }
      .logo-divider { height: 22px; }
      .logo-suffix-main { font-size: 1rem; letter-spacing: 0.08em; }
      .logo-suffix-badge { font-size: 0.58rem; padding: 0.1rem 0.38rem; }
      .nav-actions .tg-btn .label { display: none; }
      .nav-actions .tg-btn { padding: 0.45rem 0.55rem; }
    }

    @media (max-width: 420px) {
      .logo-suffix-badge { display: none; }
      .logo-suffix { justify-content: center; }
    }
