/* ===== Privacy Page ===== */
body {
  background: #f8fafc;
  font-family: var(--font-sans, 'Outfit', sans-serif);
  color: var(--slate-700, #374151);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.priv-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.priv-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: #1e293b;
  text-decoration: none;
}

.logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}

.priv-back {
  font-size: 14px;
  font-weight: 500;
  color: #0891b2;
  transition: color 0.2s;
}

.priv-back:hover {
  color: #0e7490;
}

.priv-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0 80px;
}

.priv-article h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.2;
}

.priv-updated {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 40px;
}

.priv-article section {
  margin-bottom: 32px;
}

.priv-article h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2f8fb;
}

.priv-article p {
  font-size: 16px;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 12px;
}

.priv-article ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.priv-article li {
  font-size: 16px;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 4px;
}

.priv-article a {
  color: #0891b2;
  transition: color 0.2s;
}

.priv-article a:hover {
  color: #0e7490;
  text-decoration: underline;
}

/* Breadcrumb (переиспользуем из catalog.css) */
.breadcrumb {
  padding: 0 0 24px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #94a3b8;
}

.breadcrumb-item a {
  color: #0891b2;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  margin: 0 8px;
  color: #cbd5e1;
}

.breadcrumb-current {
  color: #64748b;
}

/* Footer */
.priv-footer {
  margin-top: auto;
  border-top: 1px solid #e2e8f0;
  padding: 20px 0;
  background: #fff;
}

.priv-footer p {
  font-size: 13px;
  color: #94a3b8;
  text-align: center;
}

.priv-footer a {
  color: #0891b2;
}
