:root {
      --primary: #1d1d1f;
      --primary-light: #333333;
      --primary-dark: #000000;
      --primary-soft: #f5f5f7;
      --accent: #FF3B30;
      --accent-light: #FF453A;
      --accent-dark: #CC2D25;
      --accent-soft: #FFF5F5;
      --bg: #fafafa;
      --bg-white: #ffffff;
      --text: #1d1d1f;
      --text-secondary: #6e6e73;
      --text-muted: #86868b;
      --border: #e8e8ed;
      --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
      --radius: 12px;
      --radius-lg: 20px;
      --header-h: 64px;
      --discount: 0.8;
      --brand: #555555;
      --brand-light: #777777;
      --brand-soft: #f0f0f0;
    }

    *, *::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(1280px, 92vw); margin: 0 auto; }

    .top-notice {
      background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-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;
      position: relative;
    }

    .logo:hover {
      transform: translateY(-1px);
    }

    .logo-brand {
      display: block;
      height: 28px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 2px 6px rgba(255, 59, 48, 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.55rem;
      min-width: 0;
    }

    .logo-suffix-main {
      font-size: 0.95rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      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-badge-tag {
      position: absolute;
      top: 9px;
      left: 100px;
      padding: 0.2rem 0.4rem;
      font-size: 0.58rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      color: #fff;
      background: linear-gradient(135deg, #ff4d4f, #ff7875);
      border-radius: 4px;
      box-shadow: 0 3px 10px rgba(255, 77, 79, 0.35);
      transform: rotate(-15deg);
      animation: badgeSwing 3s ease-in-out infinite;
      transform-origin: top left;
      white-space: nowrap;
    }

    .logo-badge-tag::before {
      content: "";
      position: absolute;
      top: -4px;
      left: -4px;
      width: 8px;
      height: 8px;
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    }

    @keyframes badgeSwing {
      0%, 100% { transform: rotate(-15deg); }
      50% { transform: rotate(-30deg); }
    }

    .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: var(--primary);
    }

    .tg-btn:hover {
      background: var(--primary-soft);
      border-color: var(--primary);
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .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: var(--accent);
      color: #fff;
      box-shadow: 0 4px 16px rgba(255, 59, 48, 0.3);
    }

    .btn-primary:hover {
      background: var(--accent-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(255, 59, 48, 0.4);
    }

    .btn-accent {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .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(180deg, #fafafa 0%, #f5f5f7 30%, #fff 60%, #f5f5f7 100%);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .hero-blob {
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 59, 48, 0.06) 0%, transparent 70%);
      border-radius: 50%;
      filter: blur(60px);
      animation: float 16s ease-in-out infinite;
    }

    .hero-blob-1 { 
      top: -30%; 
      right: -15%; 
      background: radial-gradient(circle, rgba(255, 59, 48, 0.08) 0%, transparent 70%);
    }
    .hero-blob-2 {
      bottom: -35%;
      left: -20%;
      width: 500px;
      height: 500px;
      animation-delay: -8s;
      background: radial-gradient(circle, rgba(255, 149, 0, 0.05) 0%, transparent 65%);
      filter: blur(50px);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 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, 0, 0, 0.1);
      border-radius: 999px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text-secondary);
      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), #666666);
      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(--accent); }

    .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(--text-secondary);
      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: 1rem 0;
    }

    .countdown-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
    }

    .countdown-inner > p { 
      font-weight: 700; 
      color: var(--text); 
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .cd-group { 
      display: flex; 
      gap: 0.35rem; 
      align-items: center;
    }

    .cd-separator {
      font-size: 1.5rem;
      font-weight: 300;
      color: var(--text-muted);
      margin: 0 0.25rem;
    }

    .cd-unit {
      width: 52px;
      height: 64px;
      padding: 0.6rem 0;
      background: #fff;
      border-radius: 8px;
      text-align: center;
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0.15rem;
    }

    .cd-unit b {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--primary);
      font-variant-numeric: tabular-nums;
      line-height: 1.2;
    }

    .cd-unit small { 
      font-size: 0.65rem; 
      color: var(--text-muted);
      letter-spacing: 0.02em;
    }

    .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(--border);
    }

    .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: var(--accent);
      color: #fff;
      font-weight: 900;
      border-radius: 8px;
      display: grid;
      place-items: center;
      font-size: 0.9rem;
    }

    

    .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(255, 59, 48, 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(--border);
      box-shadow: var(--shadow);
      transform: translateY(-4px);
    }

    .scene-card-head {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.75rem;
    }

    .scene-icon { 
      width: 20px; 
      height: 20px; 
      flex-shrink: 0; 
      color: #fff; 
      padding: 6px; 
      background: linear-gradient(135deg, #ff4d4f, #ff7875); 
      border-radius: 8px; 
      box-shadow: 0 2px 8px rgba(255, 77, 79, 0.3);
    }
    .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(--text-secondary);
    }

    .compare-table tr:hover td { background: rgba(0, 0, 0, 0.02); }

    .compare-table .price-cell { font-weight: 800; color: var(--primary); 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, 0, 0, 0.08);
    }

    .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: 5rem 0;
      background: #1a1a1a;
      color: #fff;
    }

    .promise-banner-inner {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 4rem;
      align-items: start;
    }

    @media (max-width: 900px) { 
      .promise-banner-inner { 
        grid-template-columns: 1fr; 
        gap: 2rem;
      } 
    }

    .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: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      align-content: start;
    }

    @media (min-width: 901px) {
      .promise-banner-inner { align-items: flex-start; }
      .promise-cards { min-height: 100%; }
    }

    .promise-mini {
      padding: 1.5rem;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .promise-mini:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.12);
      transform: translateY(-2px);
    }

    .promise-mini-head {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      margin-bottom: 0.5rem;
    }

    .promise-icon {
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .promise-icon svg {
      width: 16px;
      height: 16px;
      color: var(--accent);
    }

    .promise-mini h4 { font-size: 0.95rem; margin: 0; }
    .promise-mini p { font-size: 0.8rem; opacity: 0.85; margin: 0; }

    .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(--text-secondary);
      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, 0, 0, 0.1);
      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(--accent);
      color: #fff;
      border-color: var(--accent);
    }

    #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: 1.5rem;
      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(-4px);
    }

    .feature-card:hover::after { transform: scaleX(1); }

    .feature-card-head {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .feature-icon {
      width: 36px;
      height: 36px;
      background: var(--primary-soft);
      border-radius: 10px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      transition: transform 0.3s;
    }

    .feature-icon svg { width: 18px; height: 18px; color: var(--accent); }

    .feature-card:hover .feature-icon { transform: scale(1.05); }

    .feature-card h3 { font-size: 1rem; font-weight: 600; margin: 0; }
    .feature-card p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }

    .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(--border);
      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(255, 59, 48, 0.05), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .contact-card:hover {
      border-color: var(--border);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
      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: var(--accent);
      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: 6rem 0;
      text-align: center;
      background: linear-gradient(180deg, #141414 0%, #1a1a1a 50%, #141414 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .cta-full::before {
      content: '';
      position: absolute;
      top: -40%;
      left: 50%;
      transform: translateX(-50%);
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(255, 59, 48, 0.08) 0%, transparent 65%);
      border-radius: 50%;
      filter: blur(70px);
    }

    .cta-full::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: 20%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 149, 0, 0.05) 0%, transparent 60%);
      border-radius: 50%;
      filter: blur(50px);
    }

    .cta-orbit {
      position: absolute;
      width: 350px;
      height: 350px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: spin-slow 25s linear infinite;
    }

    .cta-orbit-2 {
      width: 500px;
      height: 500px;
      border-color: rgba(255, 255, 255, 0.03);
      animation-direction: reverse;
      animation-duration: 35s;
    }

    .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(--text-secondary); 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: var(--accent);
      color: #fff;
      border-color: transparent;
      box-shadow: 0 4px 16px rgba(255, 59, 48, 0.3);
    }

    .btn-glass-accent:hover {
      background: var(--accent-dark);
      color: #fff;
      box-shadow: 0 6px 20px rgba(255, 59, 48, 0.4);
    }

    .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: 16px;
      right: 8px;
      z-index: 999;
      width: 168px;
      max-width: calc(100vw - 16px);
    }

    .cs-widget.collapsed .cs-body { display: none; }
    .cs-widget.collapsed .cs-chevron { transform: rotate(180deg); }

    .cs-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.35rem;
      padding: 0.58rem 0.65rem;
      background: var(--bg-white);
      color: var(--text);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      cursor: pointer;
      user-select: none;
      box-shadow: var(--shadow-lg);
      transition: border-radius 0.25s ease, box-shadow 0.25s ease;
    }

    .cs-head:hover { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1); }

    .cs-widget:not(.collapsed) .cs-head {
      border-radius: var(--radius) var(--radius) 0 0;
      border-bottom-color: transparent;
    }

    .cs-head-main {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      min-width: 0;
    }

    .cs-head-icon {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      color: var(--text);
    }

    .cs-head strong {
      font-size: 0.8125rem;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    .cs-online {
      width: 6px;
      height: 6px;
      background: #34c759;
      border-radius: 50%;
      flex-shrink: 0;
      box-shadow: 0 0 0 2px rgba(52, 199, 89, 0.25);
    }

    .cs-chevron {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      color: var(--text-muted);
      transition: transform 0.25s ease;
    }

    .cs-body {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-top: none;
      border-radius: 0 0 var(--radius) var(--radius);
      box-shadow: var(--shadow-lg);
      padding: 0.35rem;
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      animation: slideUp 0.25s ease;
    }

    .cs-person {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      padding: 0.65rem 0.7rem;
      border-radius: 8px;
      text-decoration: none;
      color: inherit;
      transition: background 0.2s ease;
    }

    .cs-person:hover { background: var(--primary-soft); }

    .cs-avatar {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 600;
      font-size: 0.75rem;
      flex-shrink: 0;
    }

    .cs-avatar--tg { background: #229ed9; }

    .cs-person-info { flex: 1; min-width: 0; }

    .cs-person-info strong {
      display: block;
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.3;
    }

    .cs-person-info em {
      display: block;
      font-style: normal;
      font-size: 0.75rem;
      color: var(--text-muted);
      line-height: 1.3;
    }

    .cs-arrow {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      color: var(--text-muted);
      opacity: 0;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .cs-person:hover .cs-arrow {
      opacity: 1;
      transform: translateX(2px);
    }

    .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: 160px; right: 6px; bottom: 10px; }
      .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; }
    }

    .card-actions-row {
      display: flex;
      gap: 0.75rem;
      align-items: center;
    }

    .like-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.55rem 0.75rem;
      border: 1px solid var(--border);
      background: #fff;
      border-radius: 999px;
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
      color: var(--text-secondary);
      font-size: 0.85rem;
      font-weight: 600;
      min-width: 76px;
      justify-content: center;
    }

    .like-btn:hover {
      border-color: var(--text-secondary);
      color: var(--text-secondary);
      background: var(--primary-soft);
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .like-btn:active {
      transform: translateY(0) scale(0.96);
    }

    .like-btn[data-liked="true"] {
      border-color: var(--accent);
      color: var(--accent);
      background: var(--accent-soft);
    }

    .like-btn[data-liked="true"] .like-icon {
      fill: var(--accent);
      animation: likePop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .like-icon {
      width: 18px;
      height: 18px;
      transition: fill 0.25s;
    }

    .like-count {
      min-width: 24px;
      text-align: center;
    }

    @keyframes likePop {
      0% { transform: scale(1); }
      50% { transform: scale(1.3); }
      100% { transform: scale(1); }
    }
