/* ArtiZynt site-4 | prefix: azg | layout: ribbon-separators | font: Source Sans 3 */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --azg-primary: #0F4146;
  --azg-primary-light: #A8C8C9;
  --azg-accent: #FFA13C;
  --azg-accent-start: #FFCF21;
  --azg-accent-hover: #E8901A;
  --azg-bg: #FFFEFA;
  --azg-bg-alt: #FFF2E0;
  --azg-surface: #F5F5F5;
  --azg-surface-warm: #FDEAD4;
  --azg-text: #28261B;
  --azg-text-secondary: #444A49;
  --azg-text-muted: #5A5956;
  --azg-border: #A8C8C9;
  --azg-price-old: #5A5956;
  --azg-price-new: #F42F29;
  --azg-footer-bg: #0F4146;
  --azg-footer-text: #A8C8C9;
  --azg-radius: 6px;
  --azg-shadow: 0 1px 4px rgba(0,0,0,0.04);
  --azg-shadow-hover: 0 4px 12px rgba(27,122,78,0.10);
  --azg-container: 1160px;
  --azg-section-pad: 68px 0;
  --azg-ribbon: 4px solid var(--azg-accent);
}

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

html { scroll-behavior: smooth; }

body {
  font: 400 16px/1.68 'Source Sans 3', sans-serif;
  color: var(--azg-text);
  background: var(--azg-bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--azg-primary); text-decoration: none; }
a:hover { color: var(--azg-accent); }

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

/* ---------- RIBBON SEPARATOR (layout signature) ---------- */
.azg-ribbon-section {
  border-top: var(--azg-ribbon);
  padding: var(--azg-section-pad);
}

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

.azg-ribbon-section--surface {
  background: var(--azg-surface);
}

/* ---------- HEADER ---------- */
.azg-header {
  background: var(--azg-primary);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.azg-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.azg-site-logo-badge { width: 30px; height: 30px; flex: 0 0 auto; }
.azg-logo-wordmark { display: inline-flex; align-items: center; }
.azg-logo-wordmark img {
  width: 130px;
  height: auto;
}

.azg-nav { display: flex; align-items: center; gap: 6px; }

.azg-nav a {
  color: var(--azg-primary-light);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--azg-radius);
  transition: background .2s, color .2s;
}

.azg-nav a:hover {
  background: rgba(168,200,201,0.15);
  color: #fff;
}

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

.azg-burger span {
  width: 24px;
  height: 2px;
  background: var(--azg-primary-light);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ---------- HERO ---------- */
.azg-hero {
  background: linear-gradient(135deg, var(--azg-primary) 0%, #174a50 100%);
  padding: 72px 0 64px;
  color: #fff;
}

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

.azg-hero-image {
  position: relative;
}

.azg-hero-image::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 16px;
  bottom: 16px;
  width: 4px;
  background: var(--azg-accent);
  border-radius: 2px;
}

.azg-hero-image img {
  border-radius: var(--azg-radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.azg-hero-content h1 {
  font-size: 35px;
  line-height: 1.22;
  font-weight: 700;
  margin-bottom: 20px;
}

.azg-hero-content p {
  font-size: 16px;
  line-height: 1.68;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.88);
}

.azg-hero-content em {
  font-style: italic;
  color: var(--azg-accent);
}

/* ---------- PRICE BLOCK ---------- */
.azg-price-block {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0 20px;
}

.azg-price-old {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  text-decoration: line-through;
}

.azg-price-new {
  font-size: 26px;
  font-weight: 700;
  color: var(--azg-accent);
}

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

/* ---------- CTA BUTTON ---------- */
.azg-cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--azg-accent-start), var(--azg-accent));
  color: var(--azg-primary);
  font-size: 16px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: var(--azg-radius);
  border: 2px solid var(--azg-accent);
  text-align: center;
  transition: background .2s, transform .15s, box-shadow .2s;
  cursor: pointer;
}

.azg-cta-btn:hover {
  background: var(--azg-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--azg-shadow-hover);
}

.azg-cta-large {
  font-size: 18px;
  padding: 16px 40px;
}

/* ---------- SUMMARY TABLE ---------- */
.azg-summary-wrap {
  padding: 40px 0 0;
}

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

.azg-summary-table th,
.azg-summary-table td {
  padding: 13px 20px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--azg-border);
}

.azg-summary-table th {
  font-weight: 600;
  color: var(--azg-primary);
  width: 38%;
  background: rgba(15,65,70,0.04);
}

.azg-summary-table td {
  color: var(--azg-text);
}

.azg-summary-table tr:last-child th,
.azg-summary-table tr:last-child td {
  border-bottom: none;
}

/* ---------- TOC ---------- */
.azg-toc {
  background: #fff;
  border: 1px solid var(--azg-border);
  border-radius: var(--azg-radius);
  padding: 24px 28px;
  margin: 0 auto;
  max-width: 740px;
}

.azg-toc-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--azg-primary);
  margin-bottom: 14px;
}

.azg-toc-list {
  list-style: none;
  counter-reset: azg-toc;
}

.azg-toc-list li {
  counter-increment: azg-toc;
  margin-bottom: 8px;
}

.azg-toc-list li a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  color: var(--azg-text-secondary);
  padding: 5px 0;
  transition: color .2s;
}

.azg-toc-list li a::before {
  content: counter(azg-toc) ".";
  font-weight: 600;
  color: var(--azg-accent);
  min-width: 22px;
}

.azg-toc-list li a:hover {
  color: var(--azg-primary);
}

/* ---------- SECTION HEADINGS ---------- */
.azg-section-title {
  font-size: 26px;
  line-height: 1.32;
  font-weight: 600;
  color: var(--azg-primary);
  margin-bottom: 24px;
}

.azg-section-subtitle {
  font-size: 21px;
  line-height: 1.38;
  font-weight: 600;
  color: var(--azg-text);
  margin-top: 28px;
  margin-bottom: 14px;
}

/* ---------- TEXT CONTENT ---------- */
.azg-text-block p {
  margin-bottom: 16px;
  line-height: 1.68;
}

.azg-text-block ul,
.azg-text-block ol {
  margin: 14px 0 18px 22px;
}

.azg-text-block li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.azg-text-block strong {
  font-weight: 600;
  color: var(--azg-text);
}

/* ---------- CONTENT IMAGE FRAME ---------- */
.azg-content-figure {
  margin: 28px 0;
  border-radius: var(--azg-radius);
  overflow: hidden;
  box-shadow: var(--azg-shadow);
}

.azg-content-figure img {
  width: 100%;
  display: block;
}

.azg-content-figure figcaption {
  padding: 10px 16px;
  font-size: 13px;
  color: var(--azg-text-muted);
  background: var(--azg-surface);
  text-align: center;
}

/* ---------- COMPOSITION TABLE ---------- */
.azg-composition-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  box-shadow: var(--azg-shadow);
  border-radius: var(--azg-radius);
  overflow: hidden;
}

.azg-composition-table thead {
  background: var(--azg-primary);
  color: #fff;
}

.azg-composition-table th {
  padding: 14px 20px;
  font-weight: 600;
  font-size: 15px;
  text-align: left;
}

.azg-composition-table td {
  padding: 13px 20px;
  font-size: 15px;
  border-bottom: 1px solid var(--azg-border);
}

.azg-composition-table tbody tr:nth-child(even) {
  background: rgba(15,65,70,0.03);
}

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

/* ---------- HOWTO STEPS ---------- */
.azg-howto-steps {
  list-style: none;
  counter-reset: azg-step;
}

.azg-howto-step {
  counter-increment: azg-step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  margin-bottom: 26px;
  align-items: start;
}

.azg-howto-step::before {
  content: counter(azg-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--azg-primary);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: var(--azg-radius);
}

.azg-step-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--azg-primary);
  margin-bottom: 6px;
}

.azg-step-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--azg-text-secondary);
}

.azg-howto-note {
  background: var(--azg-surface-warm);
  border-left: 4px solid var(--azg-accent);
  padding: 16px 20px;
  border-radius: 0 var(--azg-radius) var(--azg-radius) 0;
  margin-top: 10px;
  font-size: 14px;
  color: var(--azg-text-secondary);
}

/* ---------- REVIEWS ---------- */
.azg-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.azg-review-card {
  background: #fff;
  border-radius: var(--azg-radius);
  padding: 26px;
  box-shadow: var(--azg-shadow);
  border-top: var(--azg-ribbon);
  transition: box-shadow .2s, transform .15s;
}

.azg-review-card:hover {
  box-shadow: var(--azg-shadow-hover);
  transform: translateY(-1px);
}

.azg-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.azg-review-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--azg-primary);
}

.azg-review-meta {
  font-size: 13px;
  color: var(--azg-text-muted);
}

.azg-review-stars {
  color: var(--azg-accent);
  font-size: 16px;
  letter-spacing: 2px;
}

.azg-review-text {
  font-size: 15px;
  line-height: 1.62;
  color: var(--azg-text-secondary);
}

.azg-forum-note {
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--azg-surface);
  border-radius: var(--azg-radius);
  font-size: 14px;
  color: var(--azg-text-secondary);
  line-height: 1.6;
}

/* ---------- PRICE HIGHLIGHT (kde-kupit) ---------- */
.azg-price-highlight {
  background: var(--azg-bg-alt);
  border: 2px solid var(--azg-accent);
  border-radius: var(--azg-radius);
  padding: 28px 32px;
  text-align: center;
  margin: 28px 0;
}

.azg-price-old-lg {
  font-size: 16px;
  color: var(--azg-price-old);
  text-decoration: line-through;
  display: block;
  margin-bottom: 6px;
}

.azg-price-new-lg {
  font-size: 32px;
  font-weight: 700;
  color: var(--azg-price-new);
  display: block;
  margin-bottom: 8px;
}

.azg-discount-badge {
  display: inline-block;
  background: var(--azg-price-new);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 12px;
}

.azg-order-steps {
  margin: 24px 0;
}

.azg-order-steps ol {
  margin-left: 22px;
}

.azg-order-steps li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.azg-cta-center {
  text-align: center;
  margin-top: 28px;
}

/* ---------- FAQ ACCORDION (details/summary) ---------- */
.azg-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.azg-faq-item {
  border-bottom: 1px solid var(--azg-border);
}

.azg-faq-item:first-child {
  border-top: 1px solid var(--azg-border);
}

.azg-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 16px 0;
  list-style: none;
  transition: color .2s;
}

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

.azg-faq-item summary::marker {
  display: none;
  content: '';
}

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

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

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

.azg-faq-item summary:hover h3 {
  color: var(--azg-accent-hover);
}

.azg-faq-answer {
  padding: 0 0 16px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--azg-text-secondary);
}

/* ---------- AUTHOR BLOCK ---------- */
.azg-author-block {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: start;
  background: #fff;
  border-radius: var(--azg-radius);
  padding: 32px;
  box-shadow: var(--azg-shadow);
  border-top: var(--azg-ribbon);
}

.azg-author-avatar {
  width: 120px;
  height: 120px;
  border-radius: var(--azg-radius);
  object-fit: cover;
}

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

.azg-author-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--azg-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.azg-author-text p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 14px;
  color: var(--azg-text-secondary);
}

/* ---------- DISCLAIMER ---------- */
.azg-disclaimer {
  background: var(--azg-surface);
  border-left: 4px solid var(--azg-text-muted);
  padding: 20px 24px;
  border-radius: 0 var(--azg-radius) var(--azg-radius) 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--azg-text-muted);
}

/* ---------- FOOTER ---------- */
.azg-footer {
  background: var(--azg-footer-bg);
  color: var(--azg-footer-text);
  padding: 44px 0 28px;
}

.azg-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.azg-footer-logo img {
  width: 110px;
  height: auto;
  opacity: 0.8;
}

.azg-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.azg-footer-links a {
  color: var(--azg-footer-text);
  font-size: 14px;
  transition: color .2s;
}

.azg-footer-links a:hover {
  color: var(--azg-accent);
}

.azg-footer-disclaimer {
  font-size: 12px;
  color: rgba(168,200,201,0.6);
  line-height: 1.6;
  max-width: 700px;
}

.azg-footer-copy {
  font-size: 12px;
  color: rgba(168,200,201,0.5);
  margin-top: 8px;
}

/* ---------- LEGAL PAGES ---------- */
.azg-legal-page {
  padding: 48px 0 64px;
}

.azg-legal-page h1 {
  font-size: 30px;
  font-weight: 700;
  color: var(--azg-primary);
  margin-bottom: 24px;
}

.azg-legal-page h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--azg-primary);
  margin: 32px 0 14px;
}

.azg-legal-page p {
  margin-bottom: 14px;
  line-height: 1.68;
}

.azg-legal-page ul {
  margin: 12px 0 16px 22px;
}

.azg-legal-page li {
  margin-bottom: 8px;
  line-height: 1.6;
}

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

/* ---------- MOBILE NAV OPEN STATE ---------- */
.azg-nav-open .azg-nav {
  display: flex;
}

.azg-nav-open .azg-burger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.azg-nav-open .azg-burger span:nth-child(2) {
  opacity: 0;
}

.azg-nav-open .azg-burger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- RESPONSIVE 1024px ---------- */
@media (max-width: 1024px) {
  .azg-hero-grid {
    gap: 30px;
  }
  .azg-hero-content h1 {
    font-size: 30px;
  }
  .azg-section-title {
    font-size: 24px;
  }
  .azg-reviews-grid {
    gap: 18px;
  }
  .azg-author-block {
    padding: 26px;
  }
}

/* ---------- RESPONSIVE 768px ---------- */
@media (max-width: 768px) {
  :root {
    --azg-section-pad: 48px 0;
  }

  .azg-burger { display: flex; }

  .azg-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--azg-primary);
    flex-direction: column;
    padding: 16px 20px;
    border-top: 1px solid rgba(168,200,201,0.2);
  }

  .azg-nav a {
    padding: 10px 12px;
    font-size: 15px;
  }

  .azg-header {
    position: sticky;
  }

  .azg-header-inner {
    position: relative;
  }

  .azg-hero { padding: 48px 0 40px; }

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

  .azg-hero-image { order: -1; max-width: 360px; margin: 0 auto; }

  .azg-hero-content h1 { font-size: 27px; }

  .azg-reviews-grid {
    grid-template-columns: 1fr;
  }

  .azg-author-block {
    grid-template-columns: 90px 1fr;
    gap: 20px;
    padding: 22px;
  }

  .azg-author-avatar {
    width: 90px;
    height: 90px;
  }

  .azg-price-highlight {
    padding: 22px 18px;
  }

  .azg-price-new-lg {
    font-size: 28px;
  }

  .azg-toc {
    padding: 18px 20px;
  }

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

  .azg-summary-table th {
    width: 42%;
  }
}

/* ---------- RESPONSIVE 320px ---------- */
@media (max-width: 480px) {
  :root {
    --azg-section-pad: 36px 0;
  }

  .azg-container { padding: 0 14px; }

  .azg-hero-content h1 { font-size: 23px; }

  .azg-section-title { font-size: 21px; }

  .azg-section-subtitle { font-size: 18px; }

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

  .azg-cta-large { font-size: 16px; padding: 14px 24px; }

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

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

  .azg-howto-step {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .azg-howto-step::before {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .azg-composition-table th,
  .azg-composition-table td {
    padding: 10px 12px;
    font-size: 14px;
  }

  .azg-summary-table th {
    width: auto;
  }

  .azg-summary-table th,
  .azg-summary-table td {
    display: block;
    padding: 8px 14px;
  }

  .azg-summary-table th {
    border-bottom: none;
    padding-bottom: 2px;
  }

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

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

  .azg-faq-question {
    font-size: 15px;
    padding-right: 32px;
  }
}

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