
/* ═══════════════════════════════════════════════════════════
   ÎMBUNĂTĂȚIRI V3 - Cookie Banner, Link Preview, Clean CSS
   ═══════════════════════════════════════════════════════════ */

/* ── COOKIE BANNER ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner-inner p {
  font-size: 0.85rem;
  color: var(--text-sub);
  margin: 0;
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .cookie-banner-inner p {
    font-size: 0.8rem;
  }
}

/* ── LINK PREVIEW ────────────────────────────────────────── */
.link-preview {
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(108, 99, 255, 0.06);
  border: 1px solid rgba(108, 99, 255, 0.15);
  border-radius: var(--radius-sm);
  animation: fadeUp 0.3s ease;
}

.link-preview-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.link-preview-platform {
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.7rem;
}

.link-preview-username {
  color: var(--text);
  font-weight: 500;
}

/* ── CLEANUP: Eliminare CSS nefolosit ────────────────────── */
/* .modal-overlay, .modal, .modal-icon-wrap, .modal-title, 
   .modal-msg, .modal-order - eliminate dacă nu sunt folosite */

/* ── PRECONNECT HINTS (adăugate în HTML) ────────────────── */
/* Nu necesită CSS */

/* ── TESTIMONIAL DATE ─────────────────────────────────────── */
.testimonial-date {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  opacity: 0.75;
}

/* ── STICKY PLATFORM TABS (MOBILE) ───────────────────────── */
@media (max-width: 700px) {
  .platform-tabs {
    position: sticky;
    top: 58px;
    z-index: 90;
    background: var(--bg);
    padding: 0.6rem 0;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  }
}