@charset "UTF-8";
/* ===================================================================
   pd.css — standard produktových popisů tukap.cz  (v2 / moderní)
   Spravuje Claude přes SFTP. Needitovat ručně v Shoptetu.
   Akcent per produkt: <div class="pd" style="--accent:#9B8901">
   Volitelně 2. akcent: --accent2 (default = stejný jako accent)
   Default = Prais Green.
   =================================================================== */

.pd {
  --accent: #164520;
  --accent2: var(--accent);
  --paper: #F7F4ED;
  --ink: #2a2a2a;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}
.pd *, .pd *::before, .pd *::after { box-sizing: border-box; }

/* ---------- HERO / úvodní claim ---------- */
.pd-hero {
  position: relative;
  padding: 28px 30px;
  margin-bottom: 28px;
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
}
.pd-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--accent);
}
.pd-hero h1, .pd-hero h2 {
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1.18;
  margin: 0 0 10px;
  color: var(--ink);
}
.pd-hero p { font-size: 17px; margin: 0; }
.pd-hero .accent { color: var(--accent); }

/* ---------- BADGES (pilulky) ---------- */
.pd-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.pd-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 600;
  background: var(--accent); color: #fff;
  line-height: 1;
}
.pd-badge svg { width: 15px; height: 15px; }
.pd-badge.is-soft { background: var(--paper); color: var(--accent); }
.pd-badge.is-outline { background: transparent; color: var(--accent); box-shadow: inset 0 0 0 1.5px currentColor; }

/* ---------- NADPISY ---------- */
.pd-h {
  font-size: clamp(19px, 2.4vw, 23px);
  color: var(--ink);
  margin: 36px 0 14px;
  line-height: 1.25;
  display: flex; align-items: center; gap: 10px;
}
.pd-h:first-child { margin-top: 0; }
.pd-h svg { width: 22px; height: 22px; color: var(--accent); flex: none; }
.pd-h .bar { display: inline-block; width: 26px; height: 3px; border-radius: 2px; background: var(--accent); flex: none; }

.pd-lead { font-size: 17px; line-height: 1.65; margin-bottom: 20px; }
.pd p { line-height: 1.65; }

/* ---------- FEATURE KARTY (grid s ikonami) ---------- */
.pd-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin: 22px 0;
}
.pd-feature {
  background: var(--paper);
  border-radius: 14px;
  padding: 20px;
}
.pd-feature .ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; margin-bottom: 12px;
  border-radius: 11px;
  background: #fff; color: var(--accent);
}
.pd-feature .ic svg { width: 23px; height: 23px; }
.pd-feature h4 { margin: 0 0 6px; font-size: 16px; color: var(--ink); }
.pd-feature p { margin: 0; font-size: 14.5px; color: #555; line-height: 1.5; }

/* ---------- VELKÝ CLAIM / pull quote ---------- */
.pd-claim {
  font-size: clamp(20px, 2.8vw, 26px);
  line-height: 1.3;
  font-weight: 600;
  color: var(--accent);
  padding: 8px 0 8px 22px;
  border-left: 5px solid var(--accent);
  margin: 30px 0;
}

/* ---------- KROKY (velká čísla) ---------- */
.pd-steps { display: grid; gap: 14px; margin: 22px 0; padding: 0; list-style: none; counter-reset: pdstep; }
.pd-steps li {
  position: relative;
  padding: 4px 0 4px 56px;
  min-height: 40px;
  display: flex; align-items: center;
  line-height: 1.5;
}
.pd-steps li::before {
  counter-increment: pdstep;
  content: counter(pdstep);
  position: absolute; left: 0; top: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 17px;
}

/* ---------- seznam s fajfkami ---------- */
.pd-check { list-style: none; padding-left: 0; margin: 16px 0; }
.pd-check li { position: relative; padding-left: 30px; margin-bottom: 11px; line-height: 1.5; }
.pd-check li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---------- dvojsloupec / box ---------- */
.pd-row { display: flex; flex-wrap: wrap; gap: 16px; margin: 24px 0; }
.pd-col { flex: 1 1 260px; }
.pd-box { background: var(--paper); border-radius: 14px; padding: 20px; height: 100%; }
.pd-box > :first-child { margin-top: 0; }
.pd-box > :last-child { margin-bottom: 0; }
.pd-box img { width: 100%; border-radius: 8px; }

/* ---------- TIP ---------- */
.pd-tip {
  display: flex; gap: 12px;
  background: var(--paper);
  border-radius: 14px;
  padding: 16px 20px;
  margin: 26px 0;
}
.pd-tip .ic { color: var(--accent); flex: none; }
.pd-tip .ic svg { width: 24px; height: 24px; }
.pd-tip p { margin: 0; }

/* ---------- parametrická tabulka ---------- */
.pd-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.pd-table td { padding: 11px 0; border-bottom: 1px solid #e6e0d4; vertical-align: top; }
.pd-table tr:last-child td { border-bottom: none; }
.pd-table td:first-child { color: #777; }
.pd-table td:last-child { text-align: right; font-weight: 600; white-space: nowrap; padding-left: 12px; }

/* ---------- responzivní video 16:9 ---------- */
.pd-video { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; margin: 24px 0; border-radius: 14px; overflow: hidden; }
.pd-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- jemný oddělovač ---------- */
.pd-hr { border: 0; height: 1px; background: #e6e0d4; margin: 34px 0; }

/* ---------- mobil ---------- */
@media screen and (max-width: 600px) {
  .pd-hero { padding: 22px; }
  .pd-steps li { padding-left: 50px; }
}
