/* hotads.top — supplemental styles for the static rebuild (blocks not in qtemplate.css) */

/* Homepage "ТОП {формат} сети" blocks */
.top-categories-block { margin: 34px 0; }
.top-categories-block > h2.sravn { margin-bottom: 14px; }
.all-cat-btn-wrap { text-align: center; margin-top: 16px; }
.all-cat-btn {
  display: inline-block; padding: 10px 22px; border-radius: 30px;
  background: rgba(255,255,255,.08); color: #fff; text-decoration: none;
  font-weight: 600; transition: background .2s, transform .2s;
  border: 1px solid rgba(255,255,255,.14);
}
.all-cat-btn:hover { background: rgba(255,255,255,.16); transform: translateY(-1px); }

/* Static comments (migrated read-only) */
.comments-list { display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
.comment {
  display: flex; gap: 12px; padding: 14px 16px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
}
.comment-avatar img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.comment-body { flex: 1; min-width: 0; }
.comment-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; flex-wrap: wrap; }
.comment-name { font-weight: 700; color: #fff; }
.comment-date { font-size: 12px; opacity: .55; }
.comment-text { line-height: 1.5; opacity: .9; word-wrap: break-word; }
.comment-text p { margin: 0 0 6px; }

/* keep long comparison tables scrollable on small screens */
.promo-sravnenie-wrapper { overflow-x: auto; }

/* ========================================================================
   Category + Home redesign: centered hero + sticky format island + table-only
   Scoped to .hero-centered / .format-island / .table-mode (review pages untouched).
   ======================================================================== */

/* --island-h drives where the table header sticks (right below the island) */
.main-area { --island-h: 53px; }

/* --- Sticky, centered "ad formats" island (styled like the table header) --- */
.format-island {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 14px;
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  transition: background .2s ease, border-radius .2s ease, box-shadow .2s ease;
}
/* inner wrapper keeps logo + formats aligned to the content column
   even when the bar itself goes edge-to-edge on scroll */
.format-island .fi-inner {
  display: flex; align-items: center; gap: 12px;
  width: 100%; max-width: 1380px; margin: 0 auto;
  box-sizing: border-box;
}
.format-island .fi-inner > ul { flex: 1 1 auto; }
.format-island ul {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 4px; margin: 0; padding: 0; list-style: none;
}
.format-island li a {
  display: block; padding: 9px 16px; border-radius: 10px;
  color: rgba(255, 255, 255, 0.82); text-decoration: none;
  font-weight: 600; font-size: 14px; white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.format-island li a:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.format-island li.active a { background: #F7653D; color: #fff; }

/* Experimental: island lifted ABOVE the main card (page-bg becomes a column) */
.page-bg--stack { flex-direction: column; align-items: center; }
.page-bg--stack > .fi-sentinel { width: 100%; height: 1px; margin-bottom: -1px; }
.page-bg--stack > .format-island {
  width: 100%;
  max-width: 1380px;
  margin: 0 0 12px;   /* small gap: island sits a bit above the card */
}

/* When stuck to the top on scroll, the bar spreads edge-to-edge (no visible corners).
   The island itself (and the logo) never move — a full-viewport ::before paints the bar,
   so the logo keeps its position relative to the page. */
.page-bg--stack > .format-island.is-stuck {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.page-bg--stack > .format-island.is-stuck::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  z-index: -1;
  background: rgba(0, 0, 0, 0.55);   /* same tone as the non-stuck bar */
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
}

/* logo on the left of the top-bar island */
.format-island.has-logo .fi-logo { display: flex; align-items: center; flex: 0 0 auto; padding-left: 8px; }
.format-island.has-logo .fi-logo img { display: block; height: 30px; width: auto; }

/* The whole page now carries the content-block background: the main content area
   is no longer a separate card — it blends into the page. Only the sidebar and the
   top format bar stay as islands. (Scoped to the experimental split layout.) */
.page-bg--split {
  /* sized to the viewport (not the full page height) so the light centre of the
     gradient is always on screen and the top edge never goes near-black */
  background: radial-gradient(circle at 30% 36%, #6FAFAD 0%, #273751 78%, #1F2F46 100%) fixed;
  background-color: #223148;
}
.page-bg--split .layout-split > .main-container {
  background: none;
  border-radius: 0;
  box-shadow: none;
}

/* Experimental split: the left sidebar becomes its own independent island */
.layout-split {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  max-width: 1380px;
}
.layout-split > .main-container {
  flex: 1 1 auto;
  width: auto;
  max-width: none;
  min-width: 0;
}
.layout-split > .sidebar {
  flex: 0 0 auto;
  height: auto;
  align-self: flex-start;
  top: 66px;                    /* stick just below the format island */
  border-radius: 20px;
  padding: 16px 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}
.page-bg--split .sidebar-logo { display: none; }   /* the logo now lives in the top island */

/* Experimental full-width: drop the left icon rail, content spans the whole row */
.page-bg--nosidebar .layout-split > .sidebar { display: none; }

/* Pull the breadcrumbs up tight against the top format bar */
.page-bg--stack > .format-island { margin-bottom: 8px; }
.page-bg--split .main-area { padding-top: 8px; }
.page-bg--split .breadcrumbs { margin-top: 0; }

/* Review page: keep the dense content (specs, screenshots, comments…) inside a
   translucent rounded card floating on the page gradient — same island aesthetic. */
.page-bg--review .layout-split > .main-container {
  background: rgba(18, 27, 42, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.26);
}
.page-bg--review .main-area { padding: 22px 30px 30px; }

/* --- Centered hero (title + description, nothing else before the table) --- */
.hero-centered {
  text-align: center;
  max-width: 900px;
  margin: 6px auto 26px;
  padding: 4px 20px;
}
.hero-centered h1 {
  font-family: "Fira Sans Condensed", sans-serif;
  font-weight: 900; text-transform: uppercase;
  font-size: clamp(26px, 3.8vw, 44px); line-height: 1.08;
  color: #fff; margin: 0 0 16px;
}
/* two-tone title: accent phrase (yellow, big) + rest (white, smaller, below) */
.hero-centered h1 .t-accent { display: block; color: #E8E78C; }
.hero-centered h1 .t-rest { display: block; color: #fff; font-size: 62%; font-weight: 700; margin-top: 8px; letter-spacing: .3px; }
.hero-centered h1 .title-badge { color: #E8E78C; }
.hero-centered .hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px; line-height: 1.5;
  max-width: 700px; margin: 0 auto;
}

/* Experimental hero (Clickunder): left title+desc + right banner slot */
.hero-lead {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;   /* title sits at the top edge, not vertically centered */
  gap: 26px;
  margin: 8px 0 26px;
}
.hero-lead .hero-lead-text { flex: 1 1 340px; min-width: 280px; text-align: left; }
.hero-lead h1 {
  font-family: "Fira Sans Condensed", sans-serif;
  font-weight: 900; text-transform: uppercase;
  font-size: clamp(24px, 3.2vw, 40px); line-height: 1.08;
  color: #fff; margin: 0 0 14px; padding-left: 16px;
}
.hero-lead h1 .t-accent { display: block; color: #E8E78C; }
.hero-lead h1 .t-rest { display: block; color: #fff; font-size: 60%; font-weight: 700; margin-top: 8px; letter-spacing: .3px; }
.hero-lead .hero-desc { color: rgba(255, 255, 255, 0.8); font-size: 16px; line-height: 1.5; max-width: 560px; margin: 0; padding-left: 24px; }

/* V9 hero: big accent number + dimmed tail, eyebrow moved below the description */
.hero-lead .hero-v9 h1.hl-v9 {
  font: 700 clamp(26px, 3vw, 44px)/1.1 Manrope, sans-serif;
  letter-spacing: -.5px; text-transform: none;
  color: #fff; margin: 0 0 14px; padding-left: 16px;
}
.hero-v9 h1.hl-v9 b { color: #E8E78C; font-weight: 800; font-size: 1.15em; }
.hero-v9 h1.hl-v9 .dim { color: rgba(255,255,255,.55); font-weight: 600; }
.hero-v9 .hero-desc { font-family: Manrope, sans-serif; font-size: 15.5px; color: rgba(255,255,255,.72); }
.hero-v9 .eyebrow-bottom {
  display: block; margin: 18px 0 0; padding-left: 24px;
  font: 600 12px/1 Manrope, sans-serif; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
/* banner slot on the right — shorter than a standard 601×300 creative,
   lifted up level with the breadcrumbs to reclaim the empty space above it */
.hero-lead .hero-banner { flex: 1 1 340px; align-self: flex-start; margin-top: -56px; }
.hero-lead .hero-banner-placeholder { aspect-ratio: 600 / 240; padding: 16px; }

/* ------------------------------------------------------------------------
   (legacy) hero split with banner — kept for reference, no longer used
   ------------------------------------------------------------------------ */

/* --- Hero split 50/50 --- */
.networks-section.hero-split {
  align-items: stretch;
  gap: 24px;
}
.hero-split .networks-left {
  flex: 1 1 360px;
  min-width: 280px;
  padding: 6px 24px 6px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-split .networks-left h1 { margin-bottom: 22px; }
.hero-split .networks-subtitle { max-width: 100%; margin-bottom: 0; }

.hero-banner {
  flex: 1 1 360px;
  min-width: 260px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.hero-banner-label {
  position: absolute;
  top: 2px; right: 14px;
  font-size: 10px; text-transform: uppercase; letter-spacing: .5px;
  color: rgba(255,255,255,.45);
  background: rgba(0,0,0,.28);
  padding: 2px 8px; border-radius: 8px;
  z-index: 2;
}
.hero-banner-link {
  display: block; line-height: 0;
  width: 100%; max-width: 600px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,.38);
  transition: transform .2s ease;
}
.hero-banner-link:hover { transform: translateY(-3px); }
.hero-banner-link img { display: block; width: 100%; height: auto; border-radius: 16px; }

/* neutral ad slot placeholder — just a discreet size label, nothing distracting */
.hero-banner-placeholder {
  aspect-ratio: 600 / 240;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 16px;
  text-decoration: none;
  background: rgba(255,255,255,.02);
  border: 1px dashed rgba(255,255,255,.16);
  box-shadow: none;
  transition: border-color .2s, background .2s;
}
.hero-banner-placeholder:hover { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.04); }
.hbp-size {
  font: 500 12px/1 Montserrat, sans-serif;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.38);
}

/* --- Review page: catalog-style hero (title+desc+nav left, banner right) --- */
.review-hero .hero-lead-text { flex: 1 1 380px; }
.review-hero .review-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin: 16px 0 0; padding-left: 16px;
}
.review-hero .review-actions .menu-formatq { margin: 0; }
.review-hero .review-actions .format-navq { margin: 0; }

/* Аналоги grid: render related networks as real cards (undo the legacy body-mode
   `display:contents` unwrap) so the promo badge stays inside its card instead of
   escaping to the page corner. (Only used by the not-yet-migrated review pages.) */
.page-bg--review .top-networks-grid.body-mode {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 12px;
}
.page-bg--review .top-networks-grid.body-mode > div { display: flex; }

/* --- Review body: intro content (screenshots + review) beside a sticky summary
   sidebar that carries the most important info. The aside is FIRST in the DOM so
   it leads on mobile, but sits in column 2 on desktop via explicit grid placement. */
.review-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 322px;
  gap: 28px;
  align-items: start;
  margin: 6px 0 20px;
}
.review-body .review-main  { grid-column: 1; grid-row: 1; min-width: 0; }
.review-body .review-aside { grid-column: 2; grid-row: 1; position: sticky; top: 66px; align-self: start; }

/* Обзор — the heading lives INSIDE the review container: the dark card now wraps
   both the h2 and the body text (the inner .advantages-obzor loses its own card). */
.review-obzor {
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-radius: 20px; padding: 28px 32px;
}
.review-obzor > h2.sravn { margin: 0 0 14px; text-align: left; }
.review-obzor .advantages-obzor {
  background: none; -webkit-backdrop-filter: none; backdrop-filter: none;
  border-radius: 0; padding: 0; margin: 0;
}

/* summary card — "most important info" at a glance */
.rev-summary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 14px;
}
.rev-summary .rs-head { display: flex; align-items: center; gap: 12px; }
.rev-summary .rs-logo {
  width: 54px; height: 54px; flex: 0 0 auto;
  border-radius: 12px; object-fit: contain;
  background: rgba(255, 255, 255, 0.08); padding: 5px; box-sizing: border-box;
}
.rev-summary .rs-title { display: flex; flex-direction: column; gap: 2px; margin-right: auto; min-width: 0; }
.rev-summary .rs-name { font: 700 18px/1.1 Manrope, sans-serif; color: #fff; }
.rev-summary .rs-cat  { font-size: 12px; color: rgba(255, 255, 255, 0.5); }
.rev-summary .rs-rating { font: 800 24px/1 Manrope, sans-serif; color: #E8E78C; white-space: nowrap; }
.rev-summary .rs-rating small { font-size: 12px; font-weight: 600; color: rgba(255, 255, 255, 0.45); }

.rev-summary .rs-ratingbar {
  height: 6px; border-radius: 3px; overflow: hidden;
  background: rgba(255, 255, 255, 0.12); margin-top: -6px;
}
.rev-summary .rs-ratingbar-fill {
  display: block; height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, #46A5C6 0%, #73D2E6 100%);
}

.rev-summary .rs-cta {
  display: block; text-align: center; width: 100%;
  padding: 14px; border-radius: 12px; box-sizing: border-box;
}
.rev-summary .rs-cta:hover { background-color: #e5532d; }

/* secondary "case studies" link */
.rev-summary .rs-cases {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: -4px; padding: 10px; border-radius: 12px;
  font: 600 13px Manrope, sans-serif; color: #A4FFF5; text-decoration: none;
  background: rgba(164, 255, 245, 0.08); border: 1px solid rgba(164, 255, 245, 0.2);
  transition: background .2s, border-color .2s;
}
.rev-summary .rs-cases:hover { background: rgba(164, 255, 245, 0.14); border-color: rgba(164, 255, 245, 0.4); }
.rev-summary .rs-cases .material-symbols-rounded { font-size: 18px; }

/* subtle views footer */
.rev-summary .rs-foot {
  display: flex; align-items: center; gap: 6px;
  padding-top: 12px; margin-top: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px; color: rgba(255, 255, 255, 0.45);
}
.rev-summary .rs-foot .material-symbols-rounded { font-size: 16px; }

.rev-summary .rs-specs { display: flex; flex-direction: column; }
.rev-summary .rs-specs .titleinfo {
  padding: 0 0 2px; font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.5);
}
.rev-summary .rs-specs .promo-row { padding: 7px 0; gap: 12px; align-items: baseline; }
.rev-summary .rs-specs .promo-label { color: rgba(255, 255, 255, 0.6); font-size: 12.5px; flex: 0 0 auto; }
.rev-summary .rs-specs .promo-value { color: #fff; font-size: 12.5px; font-weight: 400; text-align: right; }

/* promo box inside the summary card */
.rev-summary .rs-promo {
  background: rgba(247, 101, 61, 0.12);
  border: 1px dashed rgba(247, 101, 61, 0.5);
  border-radius: 12px; padding: 12px; text-align: center;
}
.rev-summary .rs-promo-label { font: 700 12px/1 Manrope, sans-serif; letter-spacing: 1px; text-transform: uppercase; color: #F7653D; }
.rev-summary .rs-promo-desc  { font-size: 12px; color: rgba(255, 255, 255, 0.7); margin: 6px 0; }
.rev-summary .rs-promo-code  {
  font: 700 18px/1 "Fira Sans Condensed", sans-serif; letter-spacing: 2px; color: #fff;
  background: rgba(0, 0, 0, 0.28); border-radius: 8px; padding: 9px; margin: 8px 0 8px;
}
.rev-summary .rs-promo .promo-code-copy { margin: 0; }

/* single merged "Аналоги" comparison table — matches the category tables
   (full-text column headers, rich rows); heading + subtitle centered. */
.review-analogi { margin-top: 8px; }
.review-analogi > h2.sravn { margin: 8px 0 6px; text-align: center; }
.review-analogi > .sravneniedesc { text-align: center; margin-bottom: 16px; }

/* On migrated review pages (no full-page card) align the comments block edge-to-edge
   with the hero / table instead of keeping its legacy 60px side inset. */
.page-bg--split:not(.page-bg--review) .advantages-com { margin-left: 0; margin-right: 0; }

@media (max-width: 900px) {
  .review-body { display: block; }
  .review-body .review-aside { position: static; margin: 0 0 22px; }
  .review-screens { margin-bottom: 20px; }
}

/* --- Table as primary content (category + home) --- */
.top-networks.table-mode { margin-top: 10px; }
.table-mode > h2.sravn { margin-bottom: 6px; }
.table-mode .sravneniedesc { margin-bottom: 16px; }

/* Desktop: table fits the content column (no horizontal scroll) so the header can stick */
.table-mode .promo-sravnenie-wrapper { overflow: visible; }
.table-mode .promo-sravnenie { min-width: 0; }
.table-mode .promo-sravnenie .table-header,
.table-mode .promo-sravnenie .table-row {
  grid-template-columns: 2.6fr .55fr .8fr .65fr .55fr .7fr 1.25fr 1.05fr .95fr 1.45fr .7fr 44px;
  gap: 10px;
  align-items: stretch;
}
/* sticky column headers — stick just below the sticky format island */
.table-mode .promo-sravnenie .table-header {
  position: sticky;
  top: var(--island-h, 58px);
  z-index: 20;
  border-radius: 10px;
}
/* bigger internal padding + clickable rows */
.table-mode .promo-sravnenie .table-row {
  padding: 12px 8px;
  margin-bottom: 8px;
  align-items: center;
  cursor: pointer;
}
/* logos +8px (40 -> 48) */
.table-mode .promo-sravnenie .cell-logo { width: 48px; height: 48px; }

/* name cell: logo + (title + short description under it) */
.table-mode .promo-sravnenie .cell-name { gap: 12px; align-items: center; }
.table-mode .promo-sravnenie .cell-name-text {
  display: flex; flex-direction: column; gap: 3px; min-width: 0; text-align: left;
}
.table-mode .promo-sravnenie .cell-desc {
  font-size: 11.5px; font-weight: 400; line-height: 1.3;
  color: rgba(255,255,255,.6);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* value columns: clamp to max 3 lines + ellipsis */
.table-mode .promo-sravnenie .table-row .table-cell {
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden; min-width: 0;
  text-align: center;
  font-size: 12.5px; line-height: 1.35; white-space: normal;
}
.table-mode .promo-sravnenie .table-row .cell-name,
.table-mode .promo-sravnenie .table-row .cell-promo,
.table-mode .promo-sravnenie .table-row .cell-arrow {
  display: flex; align-items: center; -webkit-line-clamp: unset;
}

/* gift promo button (same size as the "go to site" arrow) */
.table-mode .promo-gift {
  width: 36px; height: 36px; padding: 0; border: 0; cursor: pointer;
  border-radius: 8px; background: rgba(247,101,61,.92); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.table-mode .promo-gift:hover { background: #F7653D; transform: translateY(-2px); }
.table-mode .promo-empty { opacity: .4; }

/* --- Mobile / tablet: reflow each row into a readable card --- */
@media (max-width: 1024px) {
  /* formats already live in the fixed mobile header -> hide the desktop island */
  .format-island { display: none; }
  .main-area { --island-h: 8px; }
  .hero-centered { margin: 4px auto 18px; padding: 2px 12px; }
  .hero-lead .hero-banner { margin-top: 0; }   /* wraps below the text — no lift */
  .hero-split .networks-left { padding: 6px 16px; }

  .table-mode .promo-sravnenie-wrapper { overflow: visible; }
  .table-mode .promo-sravnenie { min-width: 0; padding: 0; background: transparent; }
  .table-mode .promo-sravnenie .table-header { display: none; }

  .table-mode .promo-sravnenie .table-row {
    display: block;
    justify-items: initial;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
    padding: 16px 18px 12px;
    margin-bottom: 14px;
  }
  .table-mode .promo-sravnenie .table-row:hover { transform: none; }

  .table-mode .promo-sravnenie .table-row .table-cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    text-align: right;
    border-bottom: 1px solid rgba(255,255,255,.06);
    white-space: normal;
    -webkit-line-clamp: unset;
  }
  .table-mode .promo-sravnenie .table-row .table-cell::before {
    content: attr(data-label);
    flex: 0 0 auto;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    text-align: left;
    margin-right: 10px;
  }
  /* card header: logo + name + description */
  .table-mode .promo-sravnenie .cell-name {
    justify-content: flex-start !important;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,.14);
    padding-bottom: 12px; margin-bottom: 6px;
  }
  .table-mode .promo-sravnenie .cell-name::before { content: none; }
  .table-mode .promo-sravnenie .cell-name .cell-logo { width: 48px; height: 48px; }
  .table-mode .promo-sravnenie .cell-title { font-size: 16px; font-weight: 700; white-space: normal; }
  .table-mode .promo-sravnenie .cell-desc { font-size: 12.5px; -webkit-line-clamp: 3; }

  .table-mode .promo-sravnenie .cell-promo { border-bottom: none; }

  /* arrow -> full-width "go to site" button */
  .table-mode .promo-sravnenie .cell-arrow {
    justify-content: center !important;
    border-bottom: none !important;
    padding-top: 12px !important;
  }
  .table-mode .promo-sravnenie .cell-arrow::before { content: none; }
  .table-mode .promo-sravnenie .cell-arrow .table-arrow-btn { width: 100%; border-radius: 10px; height: 42px; }
  .table-mode .promo-gift { width: 40px; height: 40px; }
}

/* --- Promo code modal (gift icon -> popup) --- */
.promo-modal { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; background: rgba(10,15,25,.9); padding: 20px; }
.promo-modal.open { display: flex; }
.promo-modal-box { position: relative; width: 100%; max-width: 440px; padding: 30px 26px 26px; text-align: center; color: #fff; border-radius: 18px; border: 1px solid rgba(255,255,255,.12); background: linear-gradient(135deg,#2b3d54,#1f2c3f); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.promo-modal-close { position: absolute; top: 10px; right: 14px; background: none; border: 0; color: #fff; font-size: 30px; line-height: 1; cursor: pointer; opacity: .7; }
.promo-modal-close:hover { opacity: 1; }
.promo-modal-title { font-family: "Fira Sans Condensed", sans-serif; font-weight: 900; text-transform: uppercase; color: #E8E78C; font-size: 22px; margin-bottom: 14px; }
.promo-modal-desc { opacity: .9; line-height: 1.5; margin-bottom: 16px; }
.promo-modal-desc p { margin: 0 0 8px; }
.promo-modal-code { font-family: ui-monospace, monospace; font-size: 20px; font-weight: 700; letter-spacing: 1px; padding: 12px; margin-bottom: 14px; border-radius: 10px; word-break: break-all; background: rgba(255,255,255,.1); border: 1px dashed rgba(255,255,255,.35); }
.promo-modal-copy { background: #F7653D; color: #fff; border: 0; border-radius: 22px; padding: 10px 28px; font-weight: 600; font-size: 15px; cursor: pointer; transition: background .2s; }
.promo-modal-copy:hover { background: #e5532d; }
