/* ============================================================
   itSteal — main.css
   Mobile-first, RTL, Rubik font, Tabler icons
   ============================================================ */

:root {
  --c-primary:          #e72025;
  --c-primary-light:    #fff0f0;
  --c-bg:               #F4F5F7;
  --c-surface:          #FFFFFF;
  --c-surface-2:        #F9FAFB;
  --c-text:             #0a0a0a;
  --c-text-2:           #6B7280;
  --c-text-muted:       #9CA3AF;
  --c-border:           #E5E7EB;
  --c-success:          #059669;
  --c-whatsapp:         #25D366;
  --c-telegram:         #229ED9;

  --font:               'Rubik', sans-serif;
  --font-display:       'Bebas Neue', sans-serif;

  --r-sm:               2px;
  --r-md:               4px;
  --r-lg:               6px;
  --r-pill:             100px;

  --header-h:           56px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { direction: rtl; font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  margin: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font); }
ul { list-style: none; margin: 0; padding: 0; }

/* ── Container ───────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ── Homepage slogan bar (Concept C — animated) ─────────── */
.homepage-slogan {
  width: 100%;
  background: #0d0d0d;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  position: relative;
  overflow: hidden;
}

/* scan lines: top sweeps right→left, bottom sweeps left→right */
.homepage-slogan::before {
  content: '';
  position: absolute;
  top: 0; right: -100%; left: auto;
  width: 40%;
  height: 1px;
  background: linear-gradient(270deg, transparent, var(--c-primary), transparent);
}
.homepage-slogan::after {
  content: '';
  position: absolute;
  bottom: 0; left: -100%; right: auto;
  width: 40%;
  height: 1px;
  background: linear-gradient(270deg, transparent, var(--c-primary), transparent);
}
.homepage-slogan.in-view::before {
  animation: slogan-scan-rtl 1.2s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.homepage-slogan.in-view::after {
  animation: slogan-scan-ltr 1.2s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}
@keyframes slogan-scan-rtl {
  0%   { right: -100%; }
  100% { right: 200%; }
}
@keyframes slogan-scan-ltr {
  0%   { left: -100%; }
  100% { left: 200%; }
}

.slogan-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  height: 88px;
}

/* ─ Side panels ─ */
.slogan-side {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  opacity: 0;
}
/* right panel (Amazon text) — content flush toward center */
.slogan-side--right {
  justify-content: flex-end;
}
.in-view .slogan-side--right {
  animation: slogan-fade-from-right 0.7s cubic-bezier(0.16,1,0.3,1) 0.8s forwards;
}
/* left panel (דילים text) — content flush toward center */
.slogan-side--left {
  justify-content: flex-start;
}
.in-view .slogan-side--left {
  animation: slogan-fade-from-left 0.7s cubic-bezier(0.16,1,0.3,1) 0.8s forwards;
}
@keyframes slogan-fade-from-right {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slogan-fade-from-left {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.slogan-side-text {
  font-family: var(--font);
  font-size: 10px;
  letter-spacing: 1px;
  color: #555;
  line-height: 1.8;
  text-transform: uppercase;
}
.slogan-side--right .slogan-side-text { text-align: start; }
.slogan-side--left  .slogan-side-text { text-align: end; }

.slogan-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-primary);
  flex-shrink: 0;
  opacity: 0;
}
.in-view .slogan-dot {
  animation: slogan-pop-in 0.4s ease 1.2s forwards;
}
@keyframes slogan-pop-in {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ─ Center logo ─ */
.slogan-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 56px;
  height: 100%;
  justify-content: center;
  gap: 3px;
  position: relative;
}
/* vertical divider lines that grow from center */
.slogan-center::before,
.slogan-center::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1px;
  background: #222;
  transform: translateY(-50%);
  height: 0;
}
.slogan-center::before { right: 0; }
.slogan-center::after  { left: 0; }
.in-view .slogan-center::before,
.in-view .slogan-center::after {
  animation: slogan-grow-line 0.5s cubic-bezier(0.16,1,0.3,1) 0.4s forwards;
}
@keyframes slogan-grow-line {
  to { height: 100%; }
}

.slogan-tag {
  font-family: var(--font);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--c-primary);
  opacity: 0;
}
.in-view .slogan-tag {
  animation: slogan-fade-up 0.5s ease 0.6s forwards;
}
@keyframes slogan-fade-up {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slogan-word {
  display: flex;
  align-items: baseline;
  overflow: hidden;
  direction: ltr;
}

.slogan-it {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--c-primary);
  line-height: 1;
  display: block;
  opacity: 0;
  transform: translateY(100%);
}
.in-view .slogan-it {
  animation: slogan-slide-up 0.6s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
}

.slogan-steal-wrap {
  position: relative;
  overflow: visible;
}
.slogan-steal {
  font-family: var(--font-display);
  font-size: 40px;
  color: #fff;
  line-height: 1;
  display: block;
  opacity: 0;
  transform: translateY(100%);
}
.in-view .slogan-steal {
  animation: slogan-slide-up 0.6s cubic-bezier(0.16,1,0.3,1) 0.62s forwards;
}
@keyframes slogan-slide-up {
  to { opacity: 1; transform: translateY(0); }
}

/* strikethrough draws RTL: left→right visually (transform-origin: left) */
.slogan-strike {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 2px;
  background: var(--c-primary);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
}
.in-view .slogan-strike {
  animation: slogan-draw-strike 0.5s cubic-bezier(0.16,1,0.3,1) 1.1s forwards;
}
@keyframes slogan-draw-strike {
  to { transform: translateY(-50%) scaleX(1); }
}

/* hover effects */
.slogan-center:hover .slogan-it    { color: #ff3a3f; transition: color 0.3s; }
.slogan-center:hover .slogan-steal { color: #e0e0e0; transition: color 0.3s; }
.slogan-center:hover .slogan-strike {
  background: #ff3a3f;
  box-shadow: 0 0 8px var(--c-primary);
  transition: all 0.3s;
}

/* mobile: collapse to stacked pill on small screens */
@media (max-width: 640px) {
  .slogan-inner {
    grid-template-columns: 1fr;
    height: auto;
    padding: 20px 16px;
    justify-items: center;
    gap: 6px;
  }
  .slogan-side { display: none; }
  .slogan-center { padding: 0; }
  .slogan-center::before, .slogan-center::after { display: none; }
}

/* ── Skip link ───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  right: 0;
  padding: 6px 12px;
  background: var(--c-primary);
  color: #fff;
  z-index: 999;
  border-radius: 0 0 var(--r-md) var(--r-md);
  transition: top .15s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 16px;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 4px;
  color: var(--c-primary);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1px;
}
.logo-wordmark {
  display: flex;
  align-items: baseline;
  line-height: 1;
  direction: ltr;
}
.logo-it {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--c-primary);
  line-height: 1;
}
.logo-steal-wrap {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.logo-steal-text {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--c-text);
  line-height: 1;
}
.logo-steal-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--c-primary);
  transform: translateY(-50%);
}

/* Footer logo mirror */
.footer-logo .logo-steal-wrap::after { background: var(--c-primary); }
.footer-logo .logo-steal-text { color: #333; }
.footer-logo .logo-tagline { color: var(--c-primary); }

/* ── Category nav bar (all screens, sticky below header) ── */
.site-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
}
.site-nav-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 6px 0;
  height: 44px;
}
.site-nav-inner::-webkit-scrollbar { display: none; }

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-border);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-2);
  background: var(--c-surface);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .15s;
}
.site-nav a:hover,
.site-nav a.active {
  background: var(--c-primary-light);
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.site-nav a .ti { font-size: 14px; }

/* Editors choice — red badge */
.site-nav a.nav-editors {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}
.site-nav a.nav-editors:hover,
.site-nav a.nav-editors.active {
  background: #c41a1e;
  border-color: #c41a1e;
  color: #fff;
}

/* Icon button */
.btn-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--c-text-2);
  transition: background .15s, color .15s;
  font-size: 20px;
  padding: 0;
}
.btn-icon:hover { background: var(--c-bg); color: var(--c-text); }

.header-actions { display: flex; align-items: center; gap: 4px; }

/* Search bar */
.search-bar {
  display: none;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
}
.search-bar.is-open { display: block; }
.search-bar form { display: flex; align-items: center; gap: 8px; }
.search-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 14px;
  background: var(--c-bg);
  color: var(--c-text);
  text-align: right;
  transition: border-color .15s;
}
.search-input:focus { outline: none; border-color: var(--c-primary); }

/* ============================================================
   CATEGORY BAR
   ============================================================ */
.category-bar {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: 8px 0;
  position: sticky;
  top: var(--header-h);
  z-index: 50;
}
.category-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-bar-inner::-webkit-scrollbar { display: none; }

.category-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-border);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-2);
  background: var(--c-surface);
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
}
.category-pill:hover { border-color: var(--c-primary); color: var(--c-primary); }
.category-pill.is-active {
  background: var(--c-primary-light);
  border-color: var(--c-primary);
  color: var(--c-primary);
}

/* ============================================================
   SUBCATEGORY BAR
   ============================================================ */
:root { --catbar-h: 44px; }

.subcategory-bar {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: calc(var(--header-h) + var(--catbar-h));
  z-index: 49;
  overflow: hidden;
  max-height: 0;
  transition: max-height .2s ease;
}
.subcategory-bar.is-open {
  max-height: 46px;
}
.subcategory-bar .container {
  display: flex;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
}
.subcategory-pills {
  display: flex;
  align-items: center;
  gap: 5px;
  overflow-x: auto;
  scrollbar-width: none;
}
.subcategory-pills::-webkit-scrollbar { display: none; }
.subcategory-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 11px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-border);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  color: var(--c-text-2);
  background: var(--c-surface);
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
}
.subcategory-pill:hover { border-color: var(--c-primary); color: var(--c-primary); }
.subcategory-pill.is-active {
  background: var(--c-primary-light);
  border-color: var(--c-primary);
  color: var(--c-primary);
  font-weight: 500;
}

.sort-select {
  padding: 5px 10px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 13px;
  color: var(--c-text-2);
  background: var(--c-surface);
  cursor: pointer;
  flex-shrink: 0;
}

/* ============================================================
   HERO DEAL
   ============================================================ */
.hero-section { padding: 20px 0 0; }

.hero-card {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  overflow: hidden;
  display: flex;
}

.hero-content {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-image {
  width: 320px;
  flex-shrink: 0;
  background: var(--c-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 280px;
}
.hero-image img {
  max-width: 100%;
  max-height: 230px;
  object-fit: contain;
}
.hero-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--c-text-muted);
  font-size: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--c-primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  width: fit-content;
}

.hero-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.45;
  margin: 0;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.price-deal {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--c-primary);
  line-height: 1;
}
.price-original {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--c-text-muted);
  text-decoration: line-through;
}
.discount-badge {
  background: var(--c-primary);
  color: #fff;
  padding: 3px 10px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: 16px;
}

.savings-note {
  font-size: 13px;
  color: var(--c-text-2);
}
.savings-note strong { color: var(--c-success); }

.deal-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  font-size: 11px;
  color: var(--c-text-2);
  background: var(--c-surface-2);
}
.freshness {
  font-size: 11px;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 3px;
}
.freshness .ti { font-size: 13px; }

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--c-success);
  font-size: 12px;
  font-weight: 500;
}
.verified-badge .ti { font-size: 14px; }

.urgency-note {
  font-size: 13px;
  color: var(--c-primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--c-primary);
  color: #fff;
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s;
  align-self: flex-start;
}
.btn-primary:hover { background: #bf3527; color: #fff; }

/* ============================================================
   PROMOTED DEALS SECTION
   ============================================================ */
.promoted-section {
  padding: 28px 0 8px;
  border-bottom: 2px solid var(--c-border, #f0f0f0);
  margin-bottom: 8px;
}
.promoted-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.promoted-icon { font-size: 22px; line-height: 1; }
.promoted-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-brand, #e72025);
  margin: 0;
}
.promoted-sub {
  font-size: 13px;
  color: var(--c-text-2, #888);
  margin-right: 4px;
}
.promoted-grid { margin-bottom: 0; }

/* ============================================================
   DEALS SECTION / GRID
   ============================================================ */
.deals-section { padding: 20px 0 48px; }
.deals-section .section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-2);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* ============================================================
   DEAL CARD
   ============================================================ */
.deal-card {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s, border-color .15s;
}
.deal-card:hover {
  transform: translateY(-2px);
  border-color: #D1D5DB;
}
.deal-card.is-hidden { display: none; }
.deal-card.is-skeleton { pointer-events: none; }

.deal-card-image {
  position: relative;
  height: 110px;
  background: var(--c-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: hidden;
}
.deal-card-image img {
  max-width: 100%;
  max-height: 88px;
  object-fit: contain;
}
.deal-card-image-placeholder {
  color: var(--c-border);
  font-size: 36px;
}

.card-badge-discount {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--c-primary);
  color: #fff;
  padding: 2px 7px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: 14px;
}
.card-badge-store {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #fff;
  border: 1px solid var(--c-border);
  padding: 2px 7px;
  border-radius: var(--r-pill);
  font-size: 10px;
  color: var(--c-text-2);
}

.deal-card-body {
  padding: 9px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.card-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.card-prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.card-price-deal {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--c-primary);
  line-height: 1;
}
.card-price-original {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--c-text-muted);
  text-decoration: line-through;
}

.card-savings {
  font-size: 11px;
  color: var(--c-text-2);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: auto;
}

.card-verified { flex-shrink: 0; }
.card-verified .verified-badge { font-size: 11px; }
.card-verified .verified-badge .ti { font-size: 13px; }

.btn-deal {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px 8px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  background: var(--c-surface-2);
  color: var(--c-text);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
}
.btn-deal:hover { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }

.card-freshness {
  font-size: 11px;
  color: var(--c-text-muted);
  white-space: nowrap;
}

/* Skeleton state */
.deal-card.is-skeleton .deal-card-image { background: var(--c-border); }
.deal-card.is-skeleton .card-title,
.deal-card.is-skeleton .card-price-deal,
.deal-card.is-skeleton .card-price-original,
.deal-card.is-skeleton .card-savings,
.deal-card.is-skeleton .btn-deal {
  background: linear-gradient(90deg, var(--c-border) 25%, var(--c-surface-2) 50%, var(--c-border) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  color: transparent;
  border-radius: var(--r-sm);
  border-color: transparent;
}
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   INFINITE SCROLL LOADER
   ============================================================ */
#infinite-sentinel { height: 1px; }

.infinite-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 28px 0 16px;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.infinite-loader.is-loading { opacity: 1; }
.infinite-loader.is-end {
  opacity: 1;
  font-size: 13px;
  color: var(--c-text-muted);
}

.loader-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
  animation: dot-bounce .8s infinite ease-in-out;
}
.loader-dot:nth-child(2) { animation-delay: .15s; }
.loader-dot:nth-child(3) { animation-delay: .30s; }

@keyframes dot-bounce {
  0%, 100% { transform: scale(0.8); opacity: 0.45; }
  50%       { transform: scale(1.2); opacity: 1; }
}

/* ============================================================
   WHATSAPP CTA BANNER (inline in grid)
   ============================================================ */
.whatsapp-cta-banner {
  grid-column: 1 / -1;
  background: var(--c-whatsapp);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.whatsapp-cta-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.whatsapp-cta-icon { flex-shrink: 0; }
.whatsapp-cta-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}
.whatsapp-cta-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
  margin: 0;
}
.btn-whatsapp-join {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: #fff;
  color: var(--c-whatsapp);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .15s;
}
.btn-whatsapp-join:hover { background: #f0faf5; color: var(--c-whatsapp); }

/* ============================================================
   COMMUNITY JOIN SECTION
   ============================================================ */
.community-join {
  background: #0a0a0a;
  padding: 56px 0 48px;
  margin-top: 16px;
}
.community-join-header {
  text-align: center;
  margin-bottom: 36px;
}
.community-join-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-whatsapp);
  margin-bottom: 12px;
}
.community-join-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.1;
}
.community-join-desc {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.community-groups {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.community-group-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px 20px;
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: var(--r-lg);
  text-align: center;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.community-group-card:hover {
  border-color: var(--c-whatsapp);
  background: #0d1a10;
}
.community-group-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--c-whatsapp);
  transition: background .2s;
}
.community-group-card:hover .community-group-icon {
  background: rgba(37, 211, 102, .12);
}
.community-group-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.community-group-sub {
  font-size: 11px;
  color: #444;
  line-height: 1.5;
}
.community-group-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-whatsapp);
  opacity: .7;
  transition: opacity .2s;
}
.community-group-card:hover .community-group-btn { opacity: 1; }

@media (max-width: 900px) {
  .community-groups { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .community-groups { grid-template-columns: repeat(2, 1fr); }
  .community-join { padding: 40px 0 36px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #111827;
  color: #fff;
  padding: 40px 0 0;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 32px;
}
.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer-social-buttons { display: flex; flex-direction: column; gap: 8px; }
.btn-social-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  transition: opacity .15s;
}
.btn-social-footer:hover { opacity: .9; color: #fff; }
.btn-whatsapp-footer { background: var(--c-whatsapp); }
.btn-telegram-footer { background: var(--c-telegram); }

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin: 0 0 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: #6B7280;
  transition: color .15s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #1F2937;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.footer-bottom p {
  font-size: 12px;
  color: #6B7280;
  margin: 0;
}

/* ============================================================
   WHATSAPP STICKY MOBILE BANNER
   ============================================================ */
.whatsapp-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--c-whatsapp);
  padding: 12px 16px;
  align-items: center;
  gap: 12px;
}
.whatsapp-sticky.is-visible { display: flex; }
.whatsapp-sticky-icon { flex-shrink: 0; }
.whatsapp-sticky-text {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.whatsapp-sticky a {
  padding: 8px 16px;
  background: #fff;
  color: var(--c-whatsapp);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.whatsapp-sticky-dismiss {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .7);
  cursor: pointer;
  padding: 4px;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
}

/* ============================================================
   SINGLE DEAL PAGE
   ============================================================ */
.single-deal { padding: 24px 0 60px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--c-text-2);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--c-text-2); transition: color .15s; }
.breadcrumb a:hover { color: var(--c-primary); }
.breadcrumb-sep { color: var(--c-text-muted); font-size: 10px; }

/* Layout: gallery (left) + info (right) */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

/* ── Gallery ── */
.single-gallery {
  position: sticky;
  top: calc(var(--header-h) + var(--catbar-h) + 12px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-main {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .18s ease;
}
.gallery-placeholder {
  font-size: 72px;
  color: var(--c-border);
}
.gallery-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  padding: 3px 12px;
  border-radius: var(--r-sm);
  pointer-events: none;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gallery-thumb {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  border: 2px solid var(--c-border);
  border-radius: 10px;
  background: var(--c-surface);
  padding: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .15s;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery-thumb.is-active,
.gallery-thumb:hover { border-color: var(--c-primary); }

/* ── Info column ── */
.single-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.single-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.single-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.single-price {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--c-primary);
  line-height: 1;
}
.single-price-orig {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--c-text-muted);
  text-decoration: line-through;
}

/* Store line above title */
.store-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.store-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  padding: 3px 8px;
  border-radius: var(--r-sm);
}
.category-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-primary);
  background: var(--c-primary-light);
  padding: 3px 8px;
  border-radius: var(--r-sm);
}

/* Price box */
.price-box {
  background: var(--c-bg);
  border-radius: var(--r-md);
  padding: 20px 20px 16px;
  border-right: 4px solid var(--c-primary);
  margin-bottom: 4px;
}
.price-save {
  font-family: var(--font-display);
  font-size: 18px;
  background: var(--c-primary);
  color: #fff;
  padding: 3px 10px;
  border-radius: var(--r-sm);
  line-height: 1.3;
}
.price-meta {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.price-meta strong { color: var(--c-text); font-weight: 500; }

/* Share row */
.share-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.share-label {
  font-size: 12px;
  color: var(--c-text-muted);
}
.share-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 500;
  color: var(--c-text-2);
  background: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font);
  transition: border-color .15s, color .15s;
}
.share-btn:hover { border-color: var(--c-primary); color: var(--c-primary); }

.single-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.single-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--c-primary);
  color: #fff;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background .15s;
}
.single-cta:hover { background: #c41a1e; color: #fff; }

.affiliate-disclosure {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--c-text-muted);
  line-height: 1.5;
}

/* ── Deal body content ── */
.deal-content {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-text);
  border-top: 1px solid var(--c-border);
  padding-top: 28px;
  margin-bottom: 48px;
}
.deal-content p { margin: 0 0 16px; }
.deal-content p:last-child { margin-bottom: 0; }
.deal-content h2 { font-size: 18px; font-weight: 700; margin: 24px 0 10px; }
.deal-content ul { padding-right: 20px; margin: 0 0 16px; list-style: disc; }
.deal-content li { margin-bottom: 4px; }

/* ── Related deals ── */
.related-section { margin-top: 0; }
.section-heading {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--c-text);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* ============================================================
   ARCHIVE / SEARCH
   ============================================================ */
.archive-header { padding: 24px 0 16px; }
.archive-title { font-size: 22px; font-weight: 700; margin: 0 0 4px; }
.archive-count { font-size: 14px; color: var(--c-text-2); }
.archive-icon { font-size: 20px; color: var(--c-text-2); }

.search-header { padding: 24px 0 16px; }
.search-query { color: var(--c-primary); }

/* Pagination */
.pagination-wrap { display: flex; justify-content: center; padding: 32px 0; }
.pagination { display: flex; align-items: center; gap: 4px; }
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  font-size: 14px;
  color: var(--c-text);
  text-decoration: none;
  transition: all .15s;
}
.pagination .page-numbers:hover { border-color: var(--c-primary); color: var(--c-primary); }
.pagination .page-numbers.current {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}
.pagination .page-numbers.dots { border: none; pointer-events: none; }

/* ============================================================
   ARCHIVE EMPTY / SEARCH NO RESULTS
   ============================================================ */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--c-text-2);
}
.no-results .ti { font-size: 48px; color: var(--c-border); display: block; margin-bottom: 16px; }
.no-results h2 { font-size: 20px; font-weight: 700; color: var(--c-text); margin-bottom: 8px; }
.no-results p { font-size: 14px; margin-bottom: 20px; }

/* ============================================================
   404
   ============================================================ */
.error-404-page {
  text-align: center;
  padding: 80px 20px;
}
.error-code {
  font-size: 88px;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.error-404-page h1 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.error-404-page p { font-size: 15px; color: var(--c-text-2); margin-bottom: 28px; }

/* ============================================================
   GENERIC PAGE
   ============================================================ */
.page-content-wrap { max-width: 720px; margin: 0 auto; padding: 40px 0 80px; }
.page-content-wrap h1 { font-size: 26px; font-weight: 700; margin-bottom: 24px; }
.page-content-wrap .entry-content {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-text);
}
.page-content-wrap .entry-content p { margin-bottom: 16px; }
.page-content-wrap .entry-content h2 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; }
.page-content-wrap .entry-content h3 { font-size: 17px; font-weight: 700; margin: 20px 0 10px; }
.page-content-wrap .entry-content ul,
.page-content-wrap .entry-content ol { padding-right: 20px; margin-bottom: 16px; }
.page-content-wrap .entry-content li { margin-bottom: 6px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .deals-grid { grid-template-columns: repeat(3, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .single-layout { grid-template-columns: 1fr; gap: 24px; }
  .single-gallery { position: static; }
  .gallery-main { aspect-ratio: 4/3; }
}

@media (max-width: 767px) {
  :root { --header-h: 56px; }

  .hero-card { flex-direction: column-reverse; }
  .hero-image { width: 100%; min-height: 200px; }
  .hero-content { padding: 16px; gap: 10px; }
  .price-deal { font-size: 26px; }
  .btn-primary { width: 100%; justify-content: center; }

  .deals-grid { grid-template-columns: repeat(2, 1fr); }

  .whatsapp-cta-banner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-whatsapp-join { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .related-grid { grid-template-columns: repeat(2, 1fr); }

  .single-title { font-size: 18px; }
  .single-price { font-size: 36px; }
  .single-cta { font-size: 16px; padding: 14px 20px; }

  .whatsapp-sticky.is-visible { display: flex; }
}

@media (min-width: 768px) {
  .whatsapp-sticky { display: none !important; }
}

/* ============================================================
   COMMUNITY JOIN — 3-COMPONENT SYSTEM (cj- prefix)
   ============================================================ */

/* ── COMPONENT 1: Post-click overlay popup ───────────────── */
.cj-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: opacity .2s;
}
.cj-overlay.is-open { opacity: 1; pointer-events: all; }

.cj-popup {
  background: #0f0f0f;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  width: 100%;
  max-width: 360px;
  position: relative;
  overflow: hidden;
  transform: scale(.95) translateY(12px);
  transition: transform .3s cubic-bezier(0.16,1,0.3,1);
}
.cj-overlay.is-open .cj-popup { transform: scale(1) translateY(0); }
.cj-popup::before { content: ''; display: block; height: 3px; background: var(--c-primary); }

.cj-popup-inner { padding: 28px 28px 24px; }

.cj-popup-dismiss {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #161616;
  border: 1px solid #2c2c2c;
  color: #555;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: color .15s, border-color .15s;
}
.cj-popup-dismiss:hover { color: #fff; border-color: #444; }

.cj-popup-live {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 18px;
}
.cj-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-whatsapp);
  flex-shrink: 0;
  animation: cj-blink 2s ease-in-out infinite;
}
@keyframes cj-blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}

.cj-popup-heading {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: .92;
  letter-spacing: .5px;
  color: #fff;
  margin-bottom: 22px;
}
.cj-popup-heading em { font-style: normal; color: var(--c-primary); }

.cj-proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #161616;
  border: 1px solid #222;
  border-radius: 100px;
  padding: 5px 12px 5px 14px;
  font-size: 12px;
  color: #555;
  margin-bottom: 24px;
}
.cj-proof-chip strong { color: #fff; }
.cj-proof-chip .ti { color: var(--c-whatsapp); font-size: 14px; }

.cj-popup-btns { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }

.cj-btn-wa {
  display: flex; align-items: center; justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  background: var(--c-whatsapp);
  color: #fff;
  border-radius: 5px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: filter .15s;
}
.cj-btn-wa:hover { filter: brightness(1.08); color: #fff; }

.cj-btn-tg {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  background: transparent;
  border: 1px solid rgba(34,158,217,.35);
  color: var(--c-telegram);
  border-radius: 5px;
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.cj-btn-tg:hover { background: rgba(34,158,217,.07); border-color: var(--c-telegram); }

.cj-popup-disclaimer {
  text-align: center;
  font-size: 11px;
  color: #333;
  display: flex; align-items: center; justify-content: center;
  gap: 5px;
  margin: 0;
}

/* ── COMPONENT 2: Scroll slide-in ────────────────────────── */
.cj-slidein {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 288px;
  background: #0f0f0f;
  border: 1px solid #2c2c2c;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1100;
  transform: translateX(calc(-100% - 30px));
  transition: transform .38s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
}
.cj-slidein.is-open { transform: translateX(0); }

.cj-si-bar { height: 2px; background: var(--c-whatsapp); }
.cj-si-body { padding: 14px; }

.cj-si-close {
  float: left;
  width: 22px; height: 22px;
  background: #161616;
  border: 1px solid #222;
  border-radius: 50%;
  color: #555;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  line-height: 1;
  margin-bottom: 10px;
  transition: color .15s;
}
.cj-si-close:hover { color: #fff; }

.cj-si-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }

.cj-si-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #161616;
  border: 1px solid #222;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  color: var(--c-whatsapp);
  flex-shrink: 0;
}
.cj-si-cat   { font-size: 13px; font-weight: 700; color: #fff; }
.cj-si-proof { font-size: 11px; color: #555; margin-top: 2px; }
.cj-si-proof strong { color: var(--c-whatsapp); }

.cj-si-copy {
  font-size: 12px;
  color: #555;
  line-height: 1.55;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1e1e1e;
}

.cj-si-btns { display: flex; gap: 6px; }

.cj-si-btn-wa {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 5px;
  padding: 9px 0;
  background: var(--c-whatsapp);
  color: #fff;
  border-radius: 4px;
  font-size: 12px; font-weight: 700;
  text-decoration: none;
  transition: filter .15s;
}
.cj-si-btn-wa:hover { filter: brightness(1.08); color: #fff; }

.cj-si-btn-tg {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 5px;
  padding: 9px 0;
  border: 1px solid rgba(34,158,217,.3);
  color: var(--c-telegram);
  border-radius: 4px;
  font-size: 12px; font-weight: 500;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.cj-si-btn-tg:hover { background: rgba(34,158,217,.07); border-color: var(--c-telegram); }

/* ── COMPONENT 3: FAB ─────────────────────────────────────── */
.cj-fab-root {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cj-fab-panel {
  width: 290px;
  background: #0f0f0f;
  border: 1px solid #2c2c2c;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.6);
  opacity: 0;
  transform: translateY(10px) scale(.97);
  pointer-events: none;
  transition: opacity .2s, transform .25s cubic-bezier(0.16,1,0.3,1);
}
.cj-fab-root.is-open .cj-fab-panel {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: all;
}

.cj-fab-title {
  padding: 10px 14px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  border-bottom: 1px solid #1e1e1e;
}

.cj-fab-item {
  display: flex; align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #1e1e1e;
  color: #fff;
  opacity: 0; transform: translateY(5px);
  transition: opacity .2s, transform .2s ease, background .1s;
}
.cj-fab-root.is-open .cj-fab-item { opacity: 1; transform: translateY(0); }
.cj-fab-root.is-open .cj-fab-item:nth-child(2) { transition-delay: .03s; }
.cj-fab-root.is-open .cj-fab-item:nth-child(3) { transition-delay: .06s; }
.cj-fab-root.is-open .cj-fab-item:nth-child(4) { transition-delay: .09s; }
.cj-fab-root.is-open .cj-fab-item:nth-child(5) { transition-delay: .12s; }
.cj-fab-root.is-open .cj-fab-item:nth-child(6) { transition-delay: .15s; }
.cj-fab-item:last-child { border-bottom: none; }
.cj-fab-item:hover { background: #161616; }

.cj-fab-ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #1e1e1e;
  border: 1px solid #2c2c2c;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #888;
  flex-shrink: 0;
}
.cj-fab-label { flex: 1; font-size: 13px; font-weight: 500; }

.cj-fab-actions { display: flex; gap: 5px; flex-shrink: 0; }

.cj-fab-action {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: filter .15s;
}
.cj-fab-action:hover { filter: brightness(1.2); }
.cj-fab-action.wa { background: rgba(37,211,102,.12); color: var(--c-whatsapp); }
.cj-fab-action.tg { background: rgba(34,158,217,.12); color: var(--c-telegram); }

.cj-fab-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #0f0f0f;
  border: 1px solid #2c2c2c;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  position: relative; overflow: hidden;
  transition: transform .15s, box-shadow .15s, border-color .2s;
}
.cj-fab-btn:hover {
  transform: scale(1.06);
  border-color: #444;
  box-shadow: 0 6px 28px rgba(0,0,0,.5);
}

.cj-ico-dual {
  display: flex; align-items: center; gap: 3px;
  transition: transform .2s, opacity .2s;
}
.cj-d-wa {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(37,211,102,.15); color: var(--c-whatsapp);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.cj-d-tg {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(34,158,217,.15); color: var(--c-telegram);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.cj-ico-x {
  position: absolute;
  font-size: 17px; color: #555;
  opacity: 0;
  transform: rotate(-90deg) scale(.8);
  transition: transform .2s, opacity .2s;
}
.cj-fab-root.is-open .cj-fab-btn  { border-color: #333; box-shadow: none; }
.cj-fab-root.is-open .cj-ico-dual { opacity: 0; transform: scale(.7); }
.cj-fab-root.is-open .cj-ico-x    { opacity: 1; transform: rotate(0) scale(1); }

/* Mobile: push FAB above WA sticky banner; shrink slide-in */
@media (max-width: 767px) {
  .cj-fab-root  { bottom: 80px; }
  .cj-slidein   { width: calc(100vw - 32px); max-width: 288px; }
}
