/* ArtiZynt site-3 | prefix: adm | layout: soft-shadows | font: Mulish */
:root {
  --adm-primary: #0F4146;
  --adm-primary-light: #A8C8C9;
  --adm-accent: #FFA13C;
  --adm-accent-start: #FFCF21;
  --adm-accent-hover: #E8901A;
  --adm-bg: #FFFEFA;
  --adm-bg-alt: #FFF2E0;
  --adm-surface: #F5F5F5;
  --adm-surface-warm: #FDEAD4;
  --adm-text: #28261B;
  --adm-text-secondary: #444A49;
  --adm-text-muted: #5A5956;
  --adm-border: #A8C8C9;
  --adm-price-old: #5A5956;
  --adm-price-new: #F42F29;
  --adm-footer-bg: #0F4146;
  --adm-footer-text: #A8C8C9;
  --adm-radius: 10px;
  --adm-shadow: 0 2px 12px rgba(0,0,0,0.06);
  --adm-shadow-hover: 0 6px 20px rgba(0,0,0,0.10);
  --adm-container: 1180px;
  --adm-gap: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--adm-text);
  background-color: var(--adm-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--adm-primary);
  text-decoration: none;
}

a:hover {
  color: var(--adm-accent);
}

ul, ol {
  padding-left: 1.4em;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  color: var(--adm-primary);
}

/* ===== Container ===== */
.adm-container {
  width: 100%;
  max-width: var(--adm-container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Skip link ===== */
.adm-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--adm-primary);
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
}

.adm-skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ===== Header ===== */
.adm-header {
  background: var(--adm-primary);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.adm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.adm-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
}
.adm-site-logo-badge { width: 30px; height: 30px; flex: 0 0 auto; }
.adm-logo-wordmark { display: inline-flex; align-items: center; }
.adm-logo-wordmark img {
  height: 32px;
  width: auto;
}

.adm-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.adm-nav a {
  color: var(--adm-primary-light);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.adm-nav a:hover {
  color: #fff;
}

.adm-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.adm-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.adm-nav-close {
  display: none;
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* ===== Hero ===== */
.adm-hero {
  padding: 60px 0 50px;
  background: linear-gradient(135deg, var(--adm-bg) 60%, var(--adm-bg-alt) 100%);
}

.adm-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
}

.adm-hero h1 {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--adm-primary);
  margin-bottom: 20px;
}

.adm-hero-text p {
  margin-bottom: 16px;
  color: var(--adm-text-secondary);
}

.adm-hero-img {
  position: relative;
}

.adm-hero-img img {
  border-radius: var(--adm-radius);
  box-shadow: var(--adm-shadow-hover);
}

/* ===== Price block ===== */
.adm-price-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 20px 0;
}

.adm-price-old {
  font-size: 15px;
  color: var(--adm-text-muted);
  text-decoration: line-through;
}

.adm-price-new {
  font-size: 28px;
  font-weight: 700;
  color: #F42F29;
}

.adm-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--adm-accent-start), var(--adm-accent));
  color: var(--adm-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 6px;
}

.adm-price-badge {
  display: inline-block;
  background: var(--adm-accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
}

/* ===== CTA button ===== */
.adm-cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--adm-accent-start), var(--adm-accent));
  color: var(--adm-primary);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--adm-shadow);
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  text-decoration: none;
}

.adm-cta-btn:hover {
  box-shadow: var(--adm-shadow-hover);
  transform: scale(1.01);
  color: var(--adm-primary);
}

.adm-cta-large {
  font-size: 18px;
  padding: 18px 44px;
}

/* ===== Summary table ===== */
.adm-summary-wrap {
  padding: 40px 0;
}

.adm-summary-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--adm-radius);
  box-shadow: var(--adm-shadow);
  overflow: hidden;
}

.adm-summary-table th,
.adm-summary-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 15px;
}

.adm-summary-table thead th {
  background: var(--adm-primary);
  color: #fff;
  font-weight: 600;
}

.adm-summary-table tbody tr {
  border-bottom: 1px solid var(--adm-surface);
}

.adm-summary-table tbody tr:last-child {
  border-bottom: none;
}

.adm-summary-table tbody td:first-child {
  font-weight: 600;
  color: var(--adm-primary);
  width: 40%;
}

/* ===== TOC ===== */
.adm-toc {
  padding: 28px 32px;
  background: #fff;
  border-radius: var(--adm-radius);
  box-shadow: var(--adm-shadow);
  margin-bottom: 10px;
}

.adm-toc-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--adm-primary);
  margin-bottom: 14px;
}

.adm-toc ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.adm-toc li {
  position: relative;
  padding-left: 18px;
}

.adm-toc li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--adm-accent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.adm-toc a {
  color: var(--adm-text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.adm-toc a:hover {
  color: var(--adm-accent);
}

/* ===== Sections ===== */
.adm-section {
  padding: 80px 0;
}

.adm-section--alt {
  background: var(--adm-bg-alt);
}

.adm-section h2 {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.35;
}

.adm-section h3 {
  font-size: 21px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 14px;
  line-height: 1.4;
}

.adm-section p {
  margin-bottom: 16px;
  color: var(--adm-text-secondary);
}

.adm-section ul,
.adm-section ol {
  margin-bottom: 18px;
  color: var(--adm-text-secondary);
}

.adm-section li {
  margin-bottom: 8px;
}

.adm-section li strong {
  color: var(--adm-text);
}

/* ===== Content image ===== */
.adm-content-image {
  margin: 28px 0;
  border-radius: var(--adm-radius);
  box-shadow: var(--adm-shadow);
  overflow: hidden;
}

.adm-content-image img {
  width: 100%;
  object-fit: cover;
}

/* ===== Composition table ===== */
.adm-composition-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--adm-radius);
  box-shadow: var(--adm-shadow);
  overflow: hidden;
  margin: 20px 0 28px;
}

.adm-composition-table th,
.adm-composition-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 15px;
}

.adm-composition-table thead th {
  background: var(--adm-primary);
  color: #fff;
  font-weight: 600;
}

.adm-composition-table tbody tr {
  border-bottom: 1px solid var(--adm-surface);
}

.adm-composition-table tbody tr:last-child {
  border-bottom: none;
}

.adm-composition-table tbody tr:hover {
  background: var(--adm-surface);
}

.adm-composition-table tbody td:first-child {
  font-weight: 600;
  color: var(--adm-primary);
  white-space: nowrap;
}

/* ===== Steps list ===== */
.adm-section ol {
  counter-reset: adm-step;
  list-style: none;
  padding-left: 0;
}

.adm-section ol li {
  counter-increment: adm-step;
  position: relative;
  padding-left: 42px;
  margin-bottom: 16px;
}

.adm-section ol li::before {
  content: counter(adm-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--adm-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* ===== Review cards ===== */
.adm-review-card {
  background: #fff;
  border-radius: var(--adm-radius);
  box-shadow: var(--adm-shadow);
  padding: 32px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}

.adm-review-card:hover {
  box-shadow: var(--adm-shadow-hover);
}

.adm-reviewer {
  font-weight: 700;
  color: var(--adm-primary);
  margin-bottom: 10px;
  font-size: 16px;
}

/* ===== Price highlight (kde-kupit) ===== */
.adm-price-highlight {
  background: #fff;
  border-radius: var(--adm-radius);
  box-shadow: var(--adm-shadow);
  padding: 32px;
  text-align: center;
  margin: 24px 0;
  border-left: 4px solid var(--adm-accent);
}

.adm-price-old-lg {
  font-size: 16px;
  color: var(--adm-text-muted);
  text-decoration: line-through;
}

.adm-price-new-lg {
  font-size: 28px;
  font-weight: 700;
  color: #F42F29;
}

.adm-discount-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--adm-accent-start), var(--adm-accent));
  color: var(--adm-primary);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 6px;
  margin-top: 8px;
}

/* ===== FAQ accordion ===== */
.adm-faq {
  margin: 0;
  padding: 0;
}

.adm-faq-item {
  background: #fff;
  border-radius: var(--adm-radius);
  box-shadow: var(--adm-shadow);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.adm-faq-item:hover {
  box-shadow: var(--adm-shadow-hover);
}

.adm-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 16px 22px;
  border-bottom: 1px solid transparent;
  list-style: none;
}

.adm-faq-item summary::-webkit-details-marker {
  display: none;
}

.adm-faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 700;
  color: var(--adm-accent);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
}

.adm-faq-item[open] summary {
  border-bottom-color: var(--adm-border);
}

.adm-faq-item[open] summary::after {
  content: '-';
}

.adm-faq-item summary h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--adm-primary);
  line-height: 1.4;
}

.adm-faq-answer {
  padding: 16px 22px;
  color: var(--adm-text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.adm-faq-answer p {
  margin-bottom: 0;
}

/* ===== Author block ===== */
.adm-author-block {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 24px;
  background: #fff;
  border-radius: var(--adm-radius);
  box-shadow: var(--adm-shadow);
  padding: 32px;
  margin-top: 20px;
  align-items: start;
}

.adm-author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--adm-primary-light);
}

.adm-author-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--adm-primary);
  margin-bottom: 4px;
}

.adm-author-title {
  font-size: 14px;
  color: var(--adm-text-muted);
  margin-bottom: 10px;
  display: block;
}

.adm-author-bio {
  color: var(--adm-text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Disclaimer ===== */
.adm-disclaimer {
  background: var(--adm-surface);
  border-radius: var(--adm-radius);
  padding: 24px 28px;
  margin: 40px 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--adm-text-muted);
  border-left: 4px solid var(--adm-primary-light);
}

.adm-disclaimer p {
  color: var(--adm-text-muted);
  margin-bottom: 0;
}

/* ===== Footer ===== */
.adm-footer {
  background: var(--adm-footer-bg);
  color: var(--adm-footer-text);
  padding: 48px 0 24px;
}

.adm-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--adm-gap);
  margin-bottom: 32px;
}

.adm-footer h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

.adm-footer a {
  color: var(--adm-footer-text);
  font-size: 14px;
}

.adm-footer a:hover {
  color: #fff;
}

.adm-footer ul {
  list-style: none;
  padding: 0;
}

.adm-footer li {
  margin-bottom: 8px;
}

.adm-footer-bottom {
  border-top: 1px solid rgba(168,200,201,0.2);
  padding-top: 20px;
  font-size: 12px;
  color: var(--adm-text-muted);
  text-align: center;
}

.adm-footer-disclaimer {
  font-size: 12px;
  color: var(--adm-text-muted);
  line-height: 1.5;
  margin-top: 10px;
}

/* ===== Legal pages ===== */
.adm-legal {
  padding: 60px 0;
}

.adm-legal h1 {
  font-size: 30px;
  margin-bottom: 24px;
}

.adm-legal h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 14px;
}

.adm-legal p {
  margin-bottom: 14px;
  color: var(--adm-text-secondary);
}

.adm-legal-meta {
  font-size: 13px;
  color: var(--adm-text-muted);
  margin-bottom: 24px;
}

/* ===== Responsive: 1024 ===== */
@media (max-width: 1024px) {
  .adm-hero h1 {
    font-size: 32px;
  }

  .adm-section h2 {
    font-size: 24px;
  }

  .adm-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* ===== Responsive: 768 ===== */
@media (max-width: 768px) {
  .adm-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--adm-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 200;
  }

  .adm-nav.adm-nav-active {
    display: flex;
  }

  .adm-nav a {
    font-size: 18px;
  }

  .adm-nav-close {
    display: none;
  }

  .adm-nav.adm-nav-active .adm-nav-close,
  .adm-nav-active ~ .adm-nav-close {
    display: block;
  }

  .adm-burger {
    display: flex;
  }

  .adm-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .adm-hero {
    padding: 40px 0;
  }

  .adm-hero h1 {
    font-size: 28px;
  }

  .adm-section {
    padding: 50px 0;
  }

  .adm-section h2 {
    font-size: 22px;
  }

  .adm-toc ul {
    grid-template-columns: 1fr;
  }

  .adm-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .adm-author-block {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 16px;
    padding: 24px;
  }

  .adm-author-avatar {
    width: 80px;
    height: 80px;
  }

  .adm-composition-table tbody td:first-child {
    white-space: normal;
  }

  .adm-price-highlight {
    padding: 24px;
  }

  .adm-cta-large {
    font-size: 16px;
    padding: 16px 32px;
  }
}

/* ===== Responsive: 320 ===== */
@media (max-width: 480px) {
  .adm-container {
    padding: 0 16px;
  }

  .adm-hero h1 {
    font-size: 24px;
  }

  .adm-section {
    padding: 40px 0;
  }

  .adm-section h2 {
    font-size: 20px;
  }

  .adm-price-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .adm-cta-btn {
    width: 100%;
    padding: 14px 20px;
  }

  .adm-review-card {
    padding: 20px;
  }

  .adm-summary-table th,
  .adm-summary-table td {
    padding: 10px 14px;
    font-size: 14px;
  }

  .adm-faq-item summary {
    padding: 14px 18px;
  }

  .adm-faq-item summary h3 {
    font-size: 16px;
  }

  .adm-toc {
    padding: 20px;
  }

  .adm-author-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .adm-author-avatar {
    margin: 0 auto;
  }

  .adm-price-new-lg {
    font-size: 24px;
  }

  .adm-legal h1 {
    font-size: 24px;
  }

  .adm-legal h2 {
    font-size: 19px;
  }
}

/* ===== SR only ===== */
.adm-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== IMG-CAP HOTFIX v1 (prevent full-bleed image blowups on grid collapse) ===== */
main [class*="image"] img,main [class*="visual"] img,main [class*="media"] img,main [class*="feature"] img,main [class*="showcase"] img,main [class*="substance"] img,main [class*="foto"] img,main [class*="obr"] img{max-width:min(460px,100%);height:auto;margin-left:auto;margin-right:auto;display:block}
main figure img{max-width:min(560px,100%);height:auto;margin:0 auto;display:block}
main [class*="split-image"],main [class*="split-media"],main [class*="hero-image"],main [class*="hero-visual"]{display:flex;align-items:center;justify-content:center}

/* ingredient gallery */
.adm-zlozka-media{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;margin:24px 0}
.adm-zlozka-media figure{margin:0;text-align:center}
.adm-zlozka-media img{width:100%;height:auto;border-radius:12px;box-shadow:0 4px 16px rgba(0,0,0,.08)}
.adm-zlozka-media figcaption{font-size:13.5px;color:#6b6b6b;margin-top:8px;line-height:1.4}
@media(max-width:560px){.adm-zlozka-media{grid-template-columns:1fr}}
