/* ==========================================================
 * czasduszy-post — layout pojedynczego wpisu.
 * Spójny stylem z czasduszy-home: paleta lunaria, typografia
 * Georgia dla nagłówków, sans-serif dla bodyów, te same
 * border-radius 16px, te same cienie, te same wzorce kart.
 * Akcent per-kategoria (--cdp-accent / --cdp-accent-soft)
 * pojawia się tylko w motywujących punktach: gradient hero,
 * progress bar, kicker, podświetlenie aktywnego elementu TOC,
 * underline linków w prozie, hover blockquote.
 * Wszystko scopowane pod .cdp-article żeby nie kolidować
 * ze stylami motywu Divi.
 * ========================================================== */

.cdp-article {
  /* paleta lunaria — 1:1 z czasduszy-home */
  --lunaria-primary: #5e2a84;
  --lunaria-primary-dark: #4b2c68;
  --lunaria-secondary: #8e44ad;
  --lunaria-highlight: #b05fa7;
  --lunaria-fire: #c0392b;

  --lunaria-bg-white: #ffffff;
  --lunaria-bg-off-white: #f9f7fc;
  --lunaria-bg-hover: #fcfaff;

  --lunaria-text-main: #333333;
  --lunaria-text-secondary: #4a4a4a;
  --lunaria-text-muted: #555555;
  --lunaria-text-light: #aaaaaa;

  --lunaria-border-light: #e1e1e1;
  --lunaria-border-menu: #f0f0f5;

  --lunaria-shadow-subtle: 0 5px 15px rgba(0, 0, 0, 0.08);
  --lunaria-shadow-glow: 0 8px 15px rgba(94, 42, 132, 0.10);
  --lunaria-shadow-magic: 0 10px 25px rgba(142, 68, 173, 0.4);

  --lunaria-gradient-btn: linear-gradient(135deg, #5e2a84 0%, #b05fa7 100%);
  --lunaria-gradient-btn-hover: linear-gradient(135deg, #6d3099 0%, #c96cc0 100%);

  /* domyślne akcenty (per-kategoria nadpisuje class-cdp-assets.php) */
  --cdp-accent: var(--lunaria-highlight);
  --cdp-accent-soft: #d6a8d6;
  --cdp-on-accent: #ffffff;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--lunaria-text-main);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.6;
}

.cdp-article *,
.cdp-article *::before,
.cdp-article *::after {
  box-sizing: border-box;
}

.cdp-article a {
  text-decoration: none;
  color: var(--lunaria-text-main);
}

/* ==========================================================
 * HERO — gradient z akcentem kategorii + kropki gwiazdek
 * (ten sam wzorzec co .cd-hero w homepage)
 * ========================================================== */
.cdp-hero {
  background:
    linear-gradient(135deg,
      var(--lunaria-primary-dark) 0%,
      var(--cdp-accent) 55%,
      var(--cdp-accent-soft) 100%);
  padding: 64px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cdp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: radial-gradient(circle, #fff 0.8px, transparent 1.2px);
  background-size: 22px 22px;
  pointer-events: none;
}
.cdp-hero-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.cdp-hero-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff !important;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.cdp-hero-pill:hover {
  background: rgba(255, 255, 255, 0.28);
}
.cdp-hero-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 500;
  margin: 0 0 18px;
  color: #fff;
}
.cdp-hero-meta {
  font-size: 13px;
  opacity: 0.9;
}
.cdp-hero-author { font-weight: 500; }
.cdp-hero-sep { margin: 0 8px; opacity: 0.7; }

/* ==========================================================
 * GRID — TOC sticky-left + content
 * ========================================================== */
.cdp-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 56px auto 0;
  padding: 0 40px;
}

/* ---------- TOC ---------- */
.cdp-toc {
  position: sticky;
  top: 32px;
  align-self: start;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  font-size: 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(94, 42, 132, 0.25) transparent;
}
.cdp-toc::-webkit-scrollbar { width: 4px; }
.cdp-toc::-webkit-scrollbar-thumb { background: rgba(94, 42, 132, 0.25); border-radius: 2px; }

.cdp-toc-toggle {
  display: none; /* desktop: brak przełącznika, lista zawsze widoczna */
}
.cdp-toc-nav {
  border-left: 2px solid var(--lunaria-border-light);
  padding: 4px 0 4px 16px;
}
.cdp-toc-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cdp-toc-nav li {
  margin: 8px 0;
  position: relative;
}
.cdp-toc-l3 {
  padding-left: 14px;
  font-size: 13px;
}
.cdp-toc-nav a {
  display: block;
  text-decoration: none;
  color: var(--lunaria-text-muted);
  line-height: 1.4;
  transition: color 0.2s ease;
}
.cdp-toc-nav a:hover {
  color: var(--cdp-accent);
}
.cdp-toc-nav li.is-active > a {
  color: var(--cdp-accent);
  font-weight: 600;
}
.cdp-toc-nav li.is-active::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--cdp-accent);
  border-radius: 2px;
}

/* ---------- CONTENT ---------- */
.cdp-content { min-width: 0; }
.cdp-content--full { grid-column: 1 / -1; }

/* ==========================================================
 * PROSE — typografia treści wpisu
 * ========================================================== */
.cdp-prose {
  font-size: 17px;
  line-height: 1.78;
  color: var(--lunaria-text-secondary);
}
.cdp-prose > *:first-child { margin-top: 0; }
.cdp-prose > *:last-child { margin-bottom: 0; }

.cdp-prose h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--lunaria-primary-dark);
  margin: 56px 0 18px;
  scroll-margin-top: 80px;
}
.cdp-prose h2:first-child { margin-top: 0; }
.cdp-prose h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--lunaria-primary-dark);
  margin: 38px 0 14px;
  scroll-margin-top: 80px;
}
.cdp-prose h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--lunaria-primary-dark);
  margin: 28px 0 12px;
}
.cdp-prose p {
  margin: 0 0 18px;
}
.cdp-prose strong {
  color: var(--lunaria-text-main);
  font-weight: 600;
}
.cdp-prose em {
  color: var(--lunaria-primary);
  font-style: italic;
}
.cdp-prose a {
  color: var(--cdp-accent);
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.18);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
.cdp-prose a:hover {
  text-decoration-color: var(--cdp-accent);
}
.cdp-prose ul,
.cdp-prose ol {
  margin: 0 0 18px;
  padding-left: 24px;
}
.cdp-prose li {
  margin: 6px 0;
}
.cdp-prose ul li::marker {
  color: var(--cdp-accent);
}
.cdp-prose blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.6;
  font-style: italic;
  color: var(--lunaria-primary-dark);
  border-left: 4px solid var(--cdp-accent);
  padding: 16px 22px;
  margin: 28px 0;
  background: var(--lunaria-bg-off-white);
  border-radius: 0 12px 12px 0;
}
.cdp-prose blockquote p:last-child { margin-bottom: 0; }
.cdp-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 18px 0;
}
.cdp-prose hr {
  border: none;
  border-top: 1px solid var(--lunaria-border-light);
  margin: 36px 0;
}
.cdp-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.cdp-prose th,
.cdp-prose td {
  border: 1px solid var(--lunaria-border-light);
  padding: 10px 14px;
  text-align: left;
}
.cdp-prose th {
  background: var(--lunaria-bg-off-white);
  color: var(--lunaria-primary-dark);
  font-family: Georgia, serif;
  font-weight: 600;
}

/* ==========================================================
 * FEATURED IMAGE — float right w pierwszych akapitach
 * (typowo zdjęcie kamienia, więc po prawej dobrze wpina się w tekst)
 * ========================================================== */
.cdp-feat {
  float: right;
  width: 38%;
  max-width: 360px;
  margin: 6px 0 18px 28px;
  shape-outside: margin-box;
}
.cdp-feat img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--lunaria-shadow-glow);
}

/* ==========================================================
 * BLOKI POD TREŚCIĄ — wspólne ramy
 * ========================================================== */
.cdp-block {
  max-width: 1100px;
  margin: 64px auto;
  padding: 0 40px;
}
.cdp-block-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cdp-accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.cdp-block-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--lunaria-primary-dark);
  margin: 0 0 10px;
  line-height: 1.2;
}
.cdp-block-lead {
  font-size: 16px;
  color: var(--lunaria-text-secondary);
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 58ch;
}

/* ==========================================================
 * AUTHOR — odpowiednik .cd-wrozba-big z homepage stylowo
 * ========================================================== */
.cdp-author {
  background: #fff;
  border: 1px solid var(--lunaria-border-light);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--lunaria-shadow-subtle);
}
.cdp-author::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cdp-accent) 0%, var(--cdp-accent-soft) 100%);
  opacity: 0.14;
  z-index: 0;
}
.cdp-author-inner {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.cdp-author-photo img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid #fff;
  box-shadow: var(--lunaria-shadow-glow);
}
.cdp-author-role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cdp-accent);
  font-weight: 600;
  margin-bottom: 4px;
}
.cdp-author-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--lunaria-primary-dark);
  margin: 0 0 10px;
  line-height: 1.2;
}
.cdp-author-bio {
  font-size: 15px;
  line-height: 1.65;
  color: var(--lunaria-text-secondary);
  margin: 0 0 18px;
}
.cdp-author-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cdp-author-social {
  list-style: none;
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
}
.cdp-author-social a {
  font-size: 13px;
  color: var(--lunaria-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cdp-author-social a:hover {
  color: var(--lunaria-primary-dark);
  text-decoration: underline;
}

/* ==========================================================
 * CTA — dwie karty (Wróżby + Rytuały), styl .cd-wrozba-big
 * ========================================================== */
.cdp-cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cdp-cta-card {
  background: #fff;
  border: 1px solid var(--lunaria-border-light);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cdp-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lunaria-shadow-glow);
}
.cdp-cta-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--lunaria-bg-off-white);
  z-index: 0;
}
.cdp-cta-card > * { position: relative; z-index: 1; }
.cdp-cta-card-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--lunaria-primary-dark);
  margin: 0 0 10px;
  line-height: 1.2;
}
.cdp-cta-card-desc {
  font-size: 14px;
  color: var(--lunaria-text-secondary);
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}

/* ==========================================================
 * RELATED — 3 kolumny, wzorzec .cd-post z homepage
 * ========================================================== */
.cdp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cdp-related-card {
  background: #fff;
  border: 1px solid var(--lunaria-border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cdp-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lunaria-shadow-glow);
}
.cdp-related-link {
  display: block;
  color: var(--lunaria-text-main);
  text-decoration: none;
}
.cdp-related-thumb {
  aspect-ratio: 16 / 9;
  background: var(--lunaria-bg-off-white);
  overflow: hidden;
}
.cdp-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cdp-related-body {
  padding: 18px;
}
.cdp-related-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--lunaria-primary-dark);
  margin: 0 0 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cdp-related-date {
  font-size: 12px;
  color: var(--lunaria-text-light);
}

/* ==========================================================
 * PRODUCTS — 4 kolumny (jak .cd-prod w homepage)
 * ========================================================== */
.cdp-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cdp-product {
  background: #fff;
  border: 1px solid var(--lunaria-border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cdp-product:hover {
  transform: translateY(-4px);
  box-shadow: var(--lunaria-shadow-glow);
}
.cdp-product-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--lunaria-text-main);
  height: 100%;
  padding: 16px;
}
.cdp-product-thumb {
  aspect-ratio: 1;
  background: var(--lunaria-bg-off-white);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}
.cdp-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cdp-product-sale {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--lunaria-fire);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.cdp-product-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--lunaria-text-main);
  margin: 0 0 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cdp-product-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--lunaria-fire);
  margin-top: auto;
}
.cdp-product-price del {
  color: var(--lunaria-text-light);
  font-weight: 400;
  margin-right: 8px;
}
.cdp-product-price ins {
  text-decoration: none;
}

/* ==========================================================
 * BUTTONS — pill 999px, wzorzec .cd-btn-* z homepage
 * ========================================================== */
.cdp-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.cdp-btn-primary {
  background: var(--lunaria-gradient-btn);
  color: #fff;
}
.cdp-btn-primary:hover {
  background: var(--lunaria-gradient-btn-hover);
  transform: translateY(-2px);
  box-shadow: var(--lunaria-shadow-magic);
}
.cdp-btn-secondary {
  background: transparent;
  color: var(--lunaria-primary);
  border: 2px solid var(--lunaria-primary);
}
.cdp-btn-secondary:hover {
  background: var(--lunaria-primary);
  color: #fff;
  transform: translateY(-2px);
}
.cdp-article a.cdp-btn-primary,
.cdp-article a.cdp-btn-secondary {
  color: inherit;
}
.cdp-article a.cdp-btn-primary { color: #fff; }
.cdp-article a.cdp-btn-secondary { color: var(--lunaria-primary); }
.cdp-article a.cdp-btn-secondary:hover { color: #fff; }

/* ==========================================================
 * RESPONSIVE
 * ========================================================== */
@media (max-width: 1024px) {
  .cdp-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }
  .cdp-toc {
    position: static;
    max-height: none;
    background: var(--lunaria-bg-off-white);
    border: 1px solid var(--lunaria-border-light);
    border-radius: 14px;
    padding: 16px 20px;
  }
  .cdp-toc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--lunaria-primary-dark);
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .cdp-toc-toggle-chev {
    transition: transform 0.25s ease;
    color: var(--cdp-accent);
  }
  .cdp-toc-toggle[aria-expanded="true"] .cdp-toc-toggle-chev {
    transform: rotate(180deg);
  }
  .cdp-toc-toggle[aria-expanded="false"] + .cdp-toc-nav {
    display: none;
  }
  .cdp-toc-nav {
    margin-top: 12px;
    border-left: none;
    padding-left: 0;
  }
  .cdp-toc-nav li.is-active::before { display: none; }
  .cdp-feat {
    width: 50%;
  }
  .cdp-products-grid { grid-template-columns: repeat(3, 1fr); }
  .cdp-related-grid { grid-template-columns: repeat(2, 1fr); }
  .cdp-cta-cards { grid-template-columns: 1fr; }
  .cdp-author-inner {
    grid-template-columns: 110px 1fr;
    gap: 20px;
  }
  .cdp-author-photo img { width: 110px; height: 110px; }
}

@media (max-width: 640px) {
  .cdp-hero { padding: 48px 20px; }
  .cdp-hero-title { font-size: 32px; }
  .cdp-grid { padding: 0 20px; }
  .cdp-block { margin: 48px auto; padding: 0 20px; }
  .cdp-block-title { font-size: 24px; }
  .cdp-prose { font-size: 16px; line-height: 1.7; }
  .cdp-prose h2 { font-size: 24px; margin: 36px 0 14px; }
  .cdp-prose h3 { font-size: 18px; margin: 24px 0 10px; }
  .cdp-prose blockquote { padding: 14px 18px; font-size: 16px; }
  .cdp-feat {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 18px;
  }
  .cdp-author { padding: 24px; }
  .cdp-author-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
  .cdp-author-photo img { margin: 0 auto; }
  .cdp-author-actions { justify-content: center; }
  .cdp-author-social { justify-content: center; }
  .cdp-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cdp-related-grid { grid-template-columns: 1fr; }
  .cdp-cta-card { padding: 22px; }
  .cdp-cta-card-title { font-size: 19px; }
}

/* ============================================================
 * v0.2.0 - BREADCRUMB + PAGER (3D flip) + READING STATUS
 * ============================================================ */

/* --- Breadcrumb (pod hero, nad gridem) --- */
.cdp-breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px 0;
  font-size: 14px;
  color: var(--lunaria-text-muted);
}
.cdp-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cdp-breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
}
.cdp-breadcrumb-item::before { content: none; }
.cdp-breadcrumb-link {
  color: var(--lunaria-text-muted);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dotted transparent;
  transition: color .18s ease, border-color .18s ease;
}
.cdp-breadcrumb-link:hover {
  color: var(--cdp-accent, var(--lunaria-primary));
  border-bottom-color: var(--cdp-accent, var(--lunaria-primary));
}
.cdp-breadcrumb-current {
  color: var(--lunaria-text-dark);
  font-weight: 600;
  max-width: 360px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cdp-breadcrumb-sep {
  color: var(--lunaria-border-light);
  font-size: 14px;
  line-height: 1;
}

/* --- Pages (kontener kart paginowanych) --- */
.cdp-pages {
  position: relative;
  perspective: 1500px;
}
/* Default: jesli post NIE jest paginowany - zachowaj klasyczne rendering, .cdp-page bez transformow */
.cdp-article[data-paginated="0"] .cdp-page {
  display: block;
}
/* Paginated: tylko aktywna karta widoczna */
.cdp-article[data-paginated="1"] .cdp-page {
  display: none;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-origin: center center;
  will-change: transform, opacity;
}
.cdp-article[data-paginated="1"] .cdp-page.is-active {
  display: block;
}
.cdp-article[data-paginated="1"] .cdp-page.is-flipping-out-fwd,
.cdp-article[data-paginated="1"] .cdp-page.is-flipping-out-bwd,
.cdp-article[data-paginated="1"] .cdp-page.is-flipping-in-fwd,
.cdp-article[data-paginated="1"] .cdp-page.is-flipping-in-bwd {
  display: block;
}

/* Animacje flip (cubic-bezier z overshoot dla "magicznego" odczucia) */
@keyframes cdpFlipOutFwd {
  from { opacity: 1; transform: rotateY(0) translateZ(0); }
  to   { opacity: 0; transform: rotateY(-90deg) translateZ(0); }
}
@keyframes cdpFlipInFwd {
  from { opacity: 0; transform: rotateY(90deg) translateZ(0); }
  to   { opacity: 1; transform: rotateY(0) translateZ(0); }
}
@keyframes cdpFlipOutBwd {
  from { opacity: 1; transform: rotateY(0) translateZ(0); }
  to   { opacity: 0; transform: rotateY(90deg) translateZ(0); }
}
@keyframes cdpFlipInBwd {
  from { opacity: 0; transform: rotateY(-90deg) translateZ(0); }
  to   { opacity: 1; transform: rotateY(0) translateZ(0); }
}
.cdp-page.is-flipping-out-fwd { animation: cdpFlipOutFwd 350ms cubic-bezier(0.2, 0.8, 0.3, 1.2) forwards; }
.cdp-page.is-flipping-in-fwd  { animation: cdpFlipInFwd  350ms cubic-bezier(0.2, 0.8, 0.3, 1.2) forwards; }
.cdp-page.is-flipping-out-bwd { animation: cdpFlipOutBwd 350ms cubic-bezier(0.2, 0.8, 0.3, 1.2) forwards; }
.cdp-page.is-flipping-in-bwd  { animation: cdpFlipInBwd  350ms cubic-bezier(0.2, 0.8, 0.3, 1.2) forwards; }

/* Reduced motion - zero animacji, twardy switch */
@media (prefers-reduced-motion: reduce) {
  .cdp-page.is-flipping-out-fwd,
  .cdp-page.is-flipping-in-fwd,
  .cdp-page.is-flipping-out-bwd,
  .cdp-page.is-flipping-in-bwd {
    animation: none !important;
  }
}

/* --- Pager controls (kropki + prev/next) --- */
.cdp-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 36px 0 16px;
  padding: 18px 22px;
  background: var(--lunaria-bg-off-white);
  border: 1px solid var(--lunaria-border-light);
  border-radius: 16px;
  box-shadow: var(--lunaria-shadow-soft);
}
.cdp-pager-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lunaria-primary), var(--lunaria-primary-dark));
  color: #fff;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 15px;
  font-weight: 500;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  box-shadow: 0 6px 14px rgba(94, 42, 132, 0.18);
}
.cdp-pager-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--lunaria-shadow-glow);
}
.cdp-pager-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  filter: grayscale(0.3);
}
.cdp-pager-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cdp-pager-dots > li { padding: 0; margin: 0; }
.cdp-pager-dots > li::before { content: none; }
.cdp-pager-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--lunaria-text-muted);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--lunaria-border-light);
  cursor: pointer;
  transition: all .18s ease;
}
.cdp-pager-dot:hover {
  border-color: var(--cdp-accent, var(--lunaria-primary));
  color: var(--cdp-accent, var(--lunaria-primary));
  transform: translateY(-2px);
}
.cdp-pager-dot.is-active {
  background: var(--cdp-accent, var(--lunaria-primary));
  color: #fff;
  border-color: var(--cdp-accent, var(--lunaria-primary));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}
.cdp-pager-btn-label { display: inline; }

/* --- Reading status chip (fixed bottom-right) --- */
.cdp-status {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid var(--lunaria-border-light);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 13px;
  color: var(--lunaria-text-dark);
  pointer-events: auto;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.cdp-article ~ .cdp-status,
.cdp-status { /* widoczny zawsze gdy progress > 0 - JS bedzie sterowac */
  opacity: 1;
  transform: translateY(0);
}
.cdp-status-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 8px 14px;
  border-right: 1px solid var(--lunaria-border-light);
  line-height: 1.2;
}
.cdp-status-block:last-child { border-right: 0; }
.cdp-status-card-label,
.cdp-status-progress-label,
.cdp-status-time-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lunaria-text-muted);
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.cdp-status-card-value,
.cdp-status-progress-value,
.cdp-status-time-value {
  font-size: 14px;
  color: var(--lunaria-text-dark);
}
.cdp-status-current,
.cdp-status-percent,
.cdp-status-minutes {
  color: var(--cdp-accent, var(--lunaria-primary));
  font-weight: 600;
}
.cdp-status-slash { color: var(--lunaria-border-light); margin: 0 1px; }

@media (max-width: 640px) {
  .cdp-status {
    right: 12px;
    bottom: 12px;
    font-size: 12px;
  }
  .cdp-status-block { min-width: 48px; padding: 6px 10px; }
  .cdp-status-card-label,
  .cdp-status-progress-label,
  .cdp-status-time-label { font-size: 9px; }
  .cdp-status-card-value,
  .cdp-status-progress-value,
  .cdp-status-time-value { font-size: 13px; }
}

/* --- Pager mobile --- */
@media (max-width: 640px) {
  .cdp-pager { flex-wrap: wrap; gap: 12px; padding: 14px 16px; }
  .cdp-pager-btn-label { display: none; }
  .cdp-pager-btn { padding: 10px 14px; }
  .cdp-pager-dot { width: 30px; height: 30px; font-size: 13px; }
  .cdp-pager-dots { gap: 6px; }
}

/* --- Hero readtime --- */
.cdp-hero-readtime {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

/* Breadcrumb mobile */
@media (max-width: 640px) {
  .cdp-breadcrumb { padding: 12px 16px 0; font-size: 12px; }
  .cdp-breadcrumb-current { max-width: 200px; }
}

/* ============================================================
 * v0.2.1 - Naprawa list-style i ::marker w paginacji/breadcrumb
 * Divi (entry-content) dorzuca markery do <li>, trzeba je zabic.
 * !important bo Divi/motyw ma wysoka specyficznosc.
 * ============================================================ */
.cdp-pager-dots,
.cdp-pager-dots > li,
.cdp-breadcrumb-list,
.cdp-breadcrumb-list > li {
  list-style: none !important;
  list-style-type: none !important;
}
.cdp-pager-dots > li,
.cdp-breadcrumb-list > li {
  padding-left: 0 !important;
  background: none !important;
}
.cdp-pager-dots > li::marker,
.cdp-pager-dots > li::before,
.cdp-pager-dots > li::after,
.cdp-breadcrumb-list > li::marker,
.cdp-breadcrumb-list > li::before,
.cdp-breadcrumb-list > li::after {
  content: none !important;
  display: none !important;
}
/* Wyjatek: chcemy zostawic .cdp-breadcrumb-sep (separator >) - to span wewnatrz li, nie ::after */

/* =================================================================
 * v0.3.0 — STRONA KATEGORII (archive)
 * Mobile-first, pełna szerokość, akcent dziedziczony z body class.
 * ================================================================= */

.cdp-arch {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px 48px;
  font-family: var(--lunaria-font-body, "Open Sans", sans-serif);
  color: var(--lunaria-text, #2a2a2a);
}

/* ---- Hero ---- */
.cdp-arch-hero {
  position: relative;
  margin: 16px -16px 24px;
  padding: 48px 24px 56px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.06) 0%, transparent 40%),
    linear-gradient(135deg, var(--lunaria-primary-dark, #3d1a5e) 0%, var(--cdp-accent, #5e2a84) 50%, var(--cdp-accent-soft, #8a6db3) 100%);
  color: var(--cdp-on-accent, #ffffff);
  text-align: center;
  border-radius: 0;
  overflow: hidden;
}
.cdp-arch-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cdp-arch-hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 14px;
  font-weight: 500;
}
.cdp-arch-hero-title {
  font-family: var(--lunaria-font-heading, Georgia, "Times New Roman", serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--cdp-on-accent, #ffffff);
}
.cdp-arch-hero-lead {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 18px;
  opacity: 0.94;
}
.cdp-arch-hero-meta {
  font-size: 13px;
  opacity: 0.85;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  align-items: center;
}
.cdp-arch-hero-sep {
  opacity: 0.6;
}

@media (min-width: 720px) {
  .cdp-arch-hero {
    margin: 24px 0 32px;
    padding: 64px 48px 72px;
    border-radius: 16px;
  }
  .cdp-arch-hero-title { font-size: 44px; }
  .cdp-arch-hero-lead { font-size: 18px; }
}

/* ---- Breadcrumb na archive (override szerokość) ---- */
.cdp-arch-breadcrumb {
  margin: 0 0 24px;
  font-size: 13px;
}

/* ---- Intro / Outro ---- */
.cdp-arch-intro,
.cdp-arch-outro {
  margin: 0 0 32px;
}
.cdp-arch-intro-inner,
.cdp-arch-outro-inner {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: var(--lunaria-text, #2a2a2a);
}
.cdp-arch-intro-inner p,
.cdp-arch-outro-inner p {
  margin: 0 0 16px;
}
.cdp-arch-intro-inner p:last-child,
.cdp-arch-outro-inner p:last-child {
  margin-bottom: 0;
}
.cdp-arch-outro {
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--lunaria-border-light, #e8e3ee);
}

/* ---- Promo banner #1 ---- */
.cdp-arch-promo {
  margin: 0 0 36px;
  background: var(--lunaria-bg-off-white, #faf7fc);
  border: 1px solid var(--lunaria-border-light, #e8e3ee);
  border-left: 4px solid var(--cdp-accent, #5e2a84);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cdp-arch-promo:hover {
  transform: translateY(-2px);
  box-shadow: var(--lunaria-shadow-glow, 0 12px 32px rgba(94,42,132,0.18));
}
.cdp-arch-promo-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.cdp-arch-promo-thumb {
  position: relative;
  background: #fff;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.cdp-arch-promo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cdp-arch-promo-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--lunaria-fire, #c9722e);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cdp-arch-promo-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cdp-arch-promo-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cdp-accent, #5e2a84);
  font-weight: 600;
}
.cdp-arch-promo-title {
  font-family: var(--lunaria-font-heading, Georgia, serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  margin: 0;
  color: var(--lunaria-primary-dark, #3d1a5e);
}
.cdp-arch-promo-title strong {
  font-weight: 500;
}
.cdp-arch-promo-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--cdp-accent, #5e2a84);
}
.cdp-arch-promo-btn {
  align-self: flex-start;
  margin-top: 8px;
}

@media (min-width: 720px) {
  .cdp-arch-promo-link {
    flex-direction: row;
    align-items: stretch;
  }
  .cdp-arch-promo-thumb {
    flex: 0 0 40%;
    aspect-ratio: auto;
  }
  .cdp-arch-promo-body {
    flex: 1;
    padding: 28px 32px;
    justify-content: center;
  }
  .cdp-arch-promo-title { font-size: 26px; }
}

/* ---- Grid wpisow ---- */
.cdp-arch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0 0 32px;
}
@media (min-width: 540px) {
  .cdp-arch-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 880px) {
  .cdp-arch-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.cdp-arch-card {
  background: #fff;
  border: 1px solid var(--lunaria-border-light, #e8e3ee);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.cdp-arch-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lunaria-shadow-glow, 0 12px 32px rgba(94,42,132,0.18));
}
.cdp-arch-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.cdp-arch-card-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--lunaria-bg-off-white, #faf7fc);
  overflow: hidden;
}
.cdp-arch-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.cdp-arch-card:hover .cdp-arch-card-thumb img {
  transform: scale(1.04);
}
.cdp-arch-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.cdp-arch-card-title {
  font-family: var(--lunaria-font-heading, Georgia, serif);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
  color: var(--lunaria-primary-dark, #3d1a5e);
}
.cdp-arch-card-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--lunaria-text-muted, #6b6478);
  margin: 0;
  flex: 1;
}
.cdp-arch-card-date {
  font-size: 12px;
  color: var(--lunaria-text-muted, #6b6478);
  letter-spacing: 0.02em;
  margin-top: 4px;
}

/* Inline ad - karta produktu w gridzie wpisow */
.cdp-arch-card--ad {
  border: 1px solid var(--cdp-accent, #5e2a84);
  background: var(--lunaria-bg-off-white, #faf7fc);
  position: relative;
}
.cdp-arch-card-ad-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--cdp-accent, #5e2a84);
  color: var(--cdp-on-accent, #fff);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}
.cdp-arch-card-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--cdp-accent, #5e2a84);
  margin: 4px 0;
}
.cdp-arch-card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--cdp-accent, #5e2a84);
  letter-spacing: 0.02em;
  margin-top: 4px;
}

/* ---- Empty state ---- */
.cdp-arch-empty {
  margin: 24px 0 32px;
  padding: 32px 24px;
  text-align: center;
  background: var(--lunaria-bg-off-white, #faf7fc);
  border: 1px dashed var(--lunaria-border-light, #e8e3ee);
  border-radius: 12px;
  color: var(--lunaria-text-muted, #6b6478);
}

/* ---- Paginacja ---- */
.cdp-arch-pagination {
  margin: 0 0 40px;
  display: flex;
  justify-content: center;
}
.cdp-arch-pagination .page-numbers {
  list-style: none !important;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.cdp-arch-pagination .page-numbers > li {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}
.cdp-arch-pagination .page-numbers > li::marker { content: none; display: none; }
.cdp-arch-pagination .page-numbers > li::before,
.cdp-arch-pagination .page-numbers > li::after { content: none !important; display: none !important; }
.cdp-arch-pagination a,
.cdp-arch-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--lunaria-border-light, #e8e3ee);
  background: #fff;
  color: var(--lunaria-text, #2a2a2a);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s ease;
}
.cdp-arch-pagination a:hover {
  background: var(--cdp-accent-soft, #8a6db3);
  color: #fff;
  border-color: var(--cdp-accent-soft, #8a6db3);
}
.cdp-arch-pagination .current {
  background: var(--cdp-accent, #5e2a84);
  color: var(--cdp-on-accent, #fff);
  border-color: var(--cdp-accent, #5e2a84);
}
.cdp-arch-pagination .dots {
  border: none;
  background: transparent;
  color: var(--lunaria-text-muted, #6b6478);
}

/* ---- Sekcja produktowa pod lista wpisow ---- */
.cdp-arch-products {
  margin: 0 0 40px;
  padding: 28px 0 32px;
  border-top: 1px solid var(--lunaria-border-light, #e8e3ee);
  border-bottom: 1px solid var(--lunaria-border-light, #e8e3ee);
}
.cdp-arch-products-header {
  text-align: center;
  margin: 0 0 24px;
}
.cdp-arch-products-title {
  font-family: var(--lunaria-font-heading, Georgia, serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--lunaria-primary-dark, #3d1a5e);
}
.cdp-arch-products-lead {
  font-size: 15px;
  color: var(--lunaria-text-muted, #6b6478);
  margin: 0;
}
.cdp-arch-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0 0 24px;
}
@media (min-width: 540px) {
  .cdp-arch-products-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (min-width: 880px) {
  .cdp-arch-products-grid { grid-template-columns: repeat(6, 1fr); }
}

.cdp-arch-product {
  background: #fff;
  border: 1px solid var(--lunaria-border-light, #e8e3ee);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cdp-arch-product:hover {
  transform: translateY(-3px);
  box-shadow: var(--lunaria-shadow-glow, 0 8px 20px rgba(94,42,132,0.15));
}
.cdp-arch-product-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 0 0 12px;
}
.cdp-arch-product-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--lunaria-bg-off-white, #faf7fc);
  overflow: hidden;
}
.cdp-arch-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cdp-arch-product-sale {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--lunaria-fire, #c9722e);
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cdp-arch-product-title {
  font-family: var(--lunaria-font-heading, Georgia, serif);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  margin: 10px 12px 4px;
  color: var(--lunaria-primary-dark, #3d1a5e);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cdp-arch-product-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--cdp-accent, #5e2a84);
  margin: 0 12px;
}
.cdp-arch-products-cta {
  text-align: center;
}

/* ---- CTA + Author na archive (mniejsze paddingsy) ---- */
.cdp-arch-cta {
  margin-top: 24px;
}
.cdp-arch-author {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--lunaria-border-light, #e8e3ee);
}

/* ---- H2 hub headings (SEO heading hierarchy) ---- */
.cdp-arch-grid-title {
  font-family: var(--lunaria-font-heading, Georgia, serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin: 0 0 16px;
  color: var(--lunaria-primary-dark, #3d1a5e);
}
.cdp-arch-author-title {
  font-family: var(--lunaria-font-heading, Georgia, serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 16px;
  color: var(--lunaria-primary-dark, #3d1a5e);
}
@media (min-width: 720px) {
  .cdp-arch-grid-title { font-size: 26px; margin-bottom: 20px; }
  .cdp-arch-author-title { font-size: 24px; margin-bottom: 20px; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .cdp-arch-card,
  .cdp-arch-promo,
  .cdp-arch-product,
  .cdp-arch-card-thumb img {
    transition: none !important;
    transform: none !important;
  }
}
