:root {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --surface2: #eef2f8;
    --border: rgba(15, 23, 42, 0.12);
    --accent: #4f8ef7;
    --accent2: #a259ff;
    --accent3: #00d4aa;
    --text: #111827;
    --muted: #5b6475;
    --tag-bg: rgba(79,142,247,0.12);
    --card-radius: 16px;
    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NOISE OVERLAY ─────────────────────────── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' result='noise'/%3C/filter%3E%3Crect width='200' height='200' fill='%23fff' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.08;
  }

  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }

  /* ── HEADER ─────────────────────────────────── */
  header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }

  .header-inner {
    max-width: 1320px; margin: 0 auto;
    padding: 0 24px;
    display: flex; align-items: center; gap: 32px;
    height: 64px;
  }

  .logo {
    font-family: var(--font-head);
    font-size: 22px; font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    white-space: nowrap;
    letter-spacing: -0.5px;
  }
  .logo span { -webkit-text-fill-color: var(--accent3); }

  nav { display: flex; gap: 4px; flex: 1; }
  nav a {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13.5px; font-weight: 500;
    color: var(--muted);
    transition: all 0.2s;
    white-space: nowrap;
  }
  nav a:hover, nav a.active { color: var(--text); background: var(--surface2); }
  nav a.active { color: var(--accent); }

  .header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

  .search-box {
    display: flex; align-items: center;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 0 10px 0 14px;
    width: 300px;
    height: 40px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .search-box:focus-within {
    border-color: #9ca3af;
    box-shadow: 0 0 0 2px rgba(156,163,175,0.2);
  }
  .search-box input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    color: #111827;
    font-size: 13px;
  }
  .search-box input::placeholder { color: #6b7280; font-size: 13px; }
  .search-btn {
    width: 30px; height: 30px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #111827;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
  }
  .search-btn:hover { background: #e5e7eb; }
  .search-icon { width: 18px; height: 18px; opacity: 0.95; }

  .btn-primary {
    background: linear-gradient(135deg, var(--accent), #3a72e0);
    color: #fff;
    border: none; border-radius: 10px;
    padding: 8px 18px;
    font-family: var(--font-body); font-size: 13px; font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.15s;
  }
  .btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

  /* ── TICKER ─────────────────────────────────── */
  .ticker-bar {
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
    padding: 7px 0;
    overflow: hidden;
  }
  .ticker-inner {
    display: flex; gap: 0;
    animation: ticker 38s linear infinite;
    white-space: nowrap;
    width: max-content;
  }
  .ticker-inner span {
    padding: 0 40px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.95);
  }
  .ticker-inner span::before { content: '◆ '; opacity: 0.7; }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── LAYOUT ─────────────────────────────────── */
  .container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

  .page-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    padding: 40px 0;
  }

  /* ── HERO SECTION ───────────────────────────── */
  .hero-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    margin-bottom: 40px;
  }

  .hero-card {
    position: relative; overflow: hidden;
    border-radius: var(--card-radius);
    background: var(--surface);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s;
  }
  .hero-card:hover { transform: translateY(-3px); border-color: rgba(79,142,247,0.3); }

  .hero-main { grid-row: 1 / 3; }

  .hero-img {
    width: 100%; aspect-ratio: 16/10;
    background: linear-gradient(135deg, #1a2340 0%, #0f1628 40%, #1a1240 100%);
    position: relative; overflow: hidden;
  }
  .hero-img .phone-mock {
    position: absolute; bottom: -10px; right: 30px;
    width: 130px;
    filter: drop-shadow(0 20px 40px rgba(79,142,247,0.3));
    animation: float 4s ease-in-out infinite;
  }
  .hero-img .glow {
    position: absolute; bottom: 20px; right: 50px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(79,142,247,0.4) 0%, transparent 70%);
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
  }
  .hero-img .badge-new {
    position: absolute; top: 16px; left: 16px;
    background: var(--accent3);
    color: #000; font-size: 10px; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
    letter-spacing: 0.8px; text-transform: uppercase;
  }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
  @keyframes pulse { 0%,100%{opacity:0.6} 50%{opacity:1} }

  .hero-content { padding: 20px; }
  .hero-tag {
    display: inline-block;
    background: var(--tag-bg);
    color: var(--accent);
    font-size: 11px; font-weight: 600;
    padding: 3px 10px; border-radius: 6px;
    letter-spacing: 0.5px; text-transform: uppercase;
    margin-bottom: 10px;
  }
  .hero-title {
    font-family: var(--font-head);
    font-size: 20px; font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .hero-main .hero-title { font-size: 26px; }
  .hero-meta { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 12px; }
  .hero-meta span { display: flex; align-items: center; gap: 4px; }

  .sub-img {
    width: 100%; aspect-ratio: 16/9;
    object-fit: cover;
    background: linear-gradient(135deg, #1f1535 0%, #0d1a2e 100%);
    position: relative; overflow: hidden;
    border-radius: var(--card-radius) var(--card-radius) 0 0;
    min-height: 140px;
  }

  /* ── SECTION TITLE ──────────────────────────── */
  .section-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
  }
  .section-title {
    font-family: var(--font-head);
    color: #6F7AFA;
    font-size: 20px; font-weight: 700;
    display: flex; align-items: center; gap: 10px;
  }
  .section-title::before {
    content: '';
    display: block;
    width: 4px; height: 22px;
    background: linear-gradient(180deg, var(--accent), var(--accent2));
    border-radius: 2px;
  }
  .see-all {
    font-size: 13px; font-weight: 500;
    color: var(--accent); display: flex; align-items: center; gap: 4px;
  }
  .see-all:hover { text-decoration: underline; }

  /* ── PHONE CARDS ────────────────────────────── */
  .phones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }

  .phone-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    position: relative;
  }
  .phone-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79,142,247,0.35);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  }

  .phone-card-img {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--surface2) 0%, #1c1f32 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .phone-card-img svg { width: 80px; height: 80px; opacity: 0.8; }

  .phone-badge {
    position: absolute; top: 10px; left: 10px;
    font-size: 10px; font-weight: 700;
    padding: 3px 9px; border-radius: 6px;
    letter-spacing: 0.5px; text-transform: uppercase;
  }
  .badge-upcoming { background: rgba(162,89,255,0.2); color: var(--accent2); }
  .badge-new { background: rgba(0,212,170,0.15); color: var(--accent3); }
  .badge-hot { background: rgba(255,100,80,0.15); color: #ff6450; }

  .wishlist-btn {
    position: absolute; top: 10px; right: 10px;
    width: 32px; height: 32px;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
  }
  .wishlist-btn:hover { background: rgba(255,80,80,0.2); }

  .phone-card-body { padding: 14px 16px 16px; }
  .phone-brand { font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
  .phone-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
  
  .phone-specs {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-bottom: 12px;
  }
  .spec-chip {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 11px; color: var(--muted);
  }

  .phone-price-row { display: flex; align-items: center; justify-content: space-between; }
  .phone-price { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--text); }
  .phone-price small { font-family: var(--font-body); font-size: 11px; color: var(--muted); font-weight: 400; display: block; }
  
  .rating {
    display: flex; align-items: center; gap: 4px;
    font-size: 12px; font-weight: 600;
    background: rgba(0,212,170,0.12);
    color: var(--accent3);
    padding: 3px 8px; border-radius: 6px;
  }

  /* ── NEWS LIST ───────────────────────────────── */
  .news-list { display: flex; flex-direction: column; gap: 2px; margin-bottom: 40px; }

  .news-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 8px;
  }
  .news-item:hover { border-color: rgba(79,142,247,0.3); background: var(--surface2); }

  .news-thumb {
    width: 90px; height: 68px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--surface2) 0%, #1c2040 100%);
    overflow: hidden;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
  }
  .news-body { display: flex; flex-direction: column; gap: 4px; }
  .news-category { font-size: 10px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.5px; }
  .news-title { font-size: 14px; font-weight: 600; line-height: 1.4; }
  .news-meta { font-size: 11px; color: var(--muted); margin-top: auto; display: flex; gap: 8px; }

  /* ── COMPARE SECTION ─────────────────────────── */
  .compare-box {
    background: linear-gradient(135deg, #111525 0%, #0e1220 100%);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 24px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
  }
  .compare-box::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(79,142,247,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .compare-box .section-title { margin-bottom: 16px; }
  .compare-inputs { display: flex; gap: 12px; align-items: center; }
  .compare-select {
    flex: 1;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    color: var(--text);
    font-family: var(--font-body); font-size: 13px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
  }
  .compare-select:hover { border-color: rgba(79,142,247,0.4); }
  .vs-badge {
    width: 36px; height: 36px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800; color: #fff;
  }

  /* ── BRANDS ─────────────────────────────────── */
  .brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    padding: 16px;
    /*background: linear-gradient(135deg, rgba(79,142,247,0.04) 0%, rgba(162,89,255,0.04) 100%); */
    border-radius: var(--card-radius);
    border: 1px solid rgba(79,142,247,0.1);
  }

  .brand-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
  }

  .brand-chip:hover {
    transform: translateY(-3px);
  }

  .brand-chip:hover .brand-logo-wrap {
    box-shadow: 0 8px 20px rgba(79,142,247,0.2);
    border-color: var(--accent);
  }

  .brand-logo-wrap {
    width: 70px;
    height: 70px;
    /*background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border: 2px solid var(--border);*/
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-bottom: 8px; */
    transition: all 0.15s ease;
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);*/
  }

  .brand-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
  }

  .brand-name {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.2px;
    text-transform: capitalize;
  }

  .brand-chip:hover .brand-name {
    color: var(--accent);
  }

  /* ── SIDEBAR ─────────────────────────────────── */
  .sidebar { display: flex; flex-direction: column; gap: 24px; }

  .sidebar-widget {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    overflow: hidden;
  }
  .widget-head {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-head); font-size: 15px; font-weight: 700;
    display: flex; align-items: center; gap: 8px;
  }
  .widget-head .icon { font-size: 16px; }

  .widget-list { padding: 8px 0; }
  .widget-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 18px;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid rgba(255,255,255,0.03);
  }
  .widget-item:last-child { border-bottom: none; }
  .widget-item:hover { background: var(--surface2); }

  .widget-rank {
    width: 22px; height: 22px; flex-shrink: 0;
    border-radius: 6px;
    background: var(--surface2);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: var(--muted);
  }
  .widget-rank.top { background: rgba(79,142,247,0.15); color: var(--accent); }

  .widget-phone-img {
    width: 36px; height: 44px; flex-shrink: 0;
    background: var(--surface2);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .widget-info { flex: 1; min-width: 0; }
  .widget-name { font-size: 13px; font-weight: 600; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .widget-price { font-size: 12px; color: var(--accent); font-weight: 600; }

  /* ── SPEC TABLE ──────────────────────────────── */
  .spec-preview {
    padding: 16px 18px;
  }
  .spec-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }
  .spec-row:last-child { border-bottom: none; }
  .spec-key { color: var(--muted); font-weight: 500; }
  .spec-val { font-weight: 600; text-align: right; }

  /* ── PRICE RANGE FILTER ──────────────────────── */
  .filter-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 18px; }
  .filter-chip {
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted); font-family: var(--font-body); font-size: 12px; font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
  }
  .filter-chip:hover, .filter-chip.active { background: var(--tag-bg); color: var(--accent); border-color: rgba(79,142,247,0.4); }

  /* ── UPCOMING PHONES ────────────────────────── */
  .upcoming-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
  }
  .upcoming-card:hover { border-color: rgba(162,89,255,0.35); transform: translateX(3px); }
  .upcoming-thumb {
    width: 90px; flex-shrink: 0;
    background: linear-gradient(135deg, #1a1535 0%, #0d1030 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
  }
  .upcoming-info { padding: 14px; flex: 1; }
  .upcoming-name { font-family: var(--font-head); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
  .upcoming-date { font-size: 11px; color: var(--accent2); font-weight: 600; margin-bottom: 6px; display: flex; align-items: center; gap: 4px; }
  .upcoming-specs { font-size: 11px; color: var(--muted); }
  .upcoming-list { display: flex; flex-direction: column; gap: 8px; }

  /* ── REVIEW CARD ────────────────────────────── */
  .review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }
  .review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s;
  }
  .review-card:hover { border-color: rgba(79,142,247,0.3); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
  .review-img {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #12203a 0%, #1a1235 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    position: relative;
  }
  .play-btn {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.2s;
  }
  .play-btn svg { width: 44px; height: 44px; }
  .review-card:hover .play-btn { opacity: 1; }
  .review-body { padding: 14px 16px; }
  .review-label { font-size: 10px; font-weight: 700; color: var(--accent2); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
  .review-title { font-size: 14px; font-weight: 600; line-height: 1.4; margin-bottom: 8px; }
  .review-score {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px;
  }
  .score-pill {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff; font-weight: 700; font-size: 13px;
    padding: 2px 10px; border-radius: 6px;
  }

  /* ── FOOTER ─────────────────────────────────── */
  footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
    margin-top: 48px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-brand .logo { display: inline-block; margin-bottom: 12px; font-size: 20px; }
  .footer-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
  .social-links { display: flex; gap: 8px; }
  .social-link {
    width: 34px; height: 34px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .social-link:hover { border-color: rgba(79,142,247,0.4); background: var(--tag-bg); }
  .footer-col h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; margin-bottom: 14px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col ul li a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--accent); }
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 12px; color: var(--muted);
  }

  /* ── PHONE SVG MOCKS ────────────────────────── */
  .phone-svg { filter: drop-shadow(0 8px 24px rgba(79,142,247,0.25)); }

  /* ── HERO GRADIENT BLOBS ─────────────────────── */
  .bg-blob {
    position: fixed; border-radius: 50%;
    filter: blur(80px); pointer-events: none; z-index: 0;
    opacity: 0.04;
  }
  .blob1 { width: 600px; height: 600px; background: var(--accent); top: -200px; right: -100px; }
  .blob2 { width: 400px; height: 400px; background: var(--accent2); bottom: 100px; left: -100px; }

  /* ── TABS ───────────────────────────────────── */
  .tabs { display: flex; gap: 4px; margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 0; }
  .tab {
    padding: 8px 18px;
    font-size: 13px; font-weight: 500;
    color: var(--muted); cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.2s;
  }
  .tab:hover { color: var(--text); }
  .tab.active { color: var(--accent); border-bottom-color: var(--accent); font-weight: 600; }

  /* ── ANNOUNCEMENTS BANNER ─────────────────────── */
  .announcement {
    background: linear-gradient(90deg, rgba(79,142,247,0.1) 0%, rgba(162,89,255,0.1) 100%);
    border: 1px solid rgba(79,142,247,0.2);
    border-radius: var(--card-radius);
    padding: 14px 20px;
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 24px;
  }
  .announcement .icon { font-size: 20px; flex-shrink: 0; }
  .announcement .text { font-size: 13px; }
  .announcement .text strong { color: var(--accent); }

  /* ── COLOR BARS ─────────────────────────────── */
  .color-bar {
    height: 3px; border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    margin: 0 -1px;
  }

  /* ── FADE IN ────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-up { animation: fadeUp 0.5s ease both; }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }
  .delay-4 { animation-delay: 0.4s; }

  /* ── RESPONSIVE ─────────────────────────────── */
  @media (max-width: 1100px) {
    .page-grid { grid-template-columns: 1fr; }
    .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
    .brands-grid { grid-template-columns: repeat(6, 1fr); }
  }
  @media (max-width: 768px) {
    .phones-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-main { grid-row: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    nav { display: none; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .review-grid { grid-template-columns: 1fr; }
    .sidebar { grid-template-columns: 1fr; }
  }
