/* =========================================================================
   Cesta k sobě – styl e-shopu
   Přírodní pastelová paleta: béžová + bílá jako podklad, hnědá pro text,
   a světle pastelová zelená, modrá a mentolová jako akcenty.
   ========================================================================= */

:root {
  /* „Hnědý“ ramp – text, odkazy, tmavé sekce (kvůli čitelnosti) */
  --brand-900: #4a3a2c; /* hluboká hnědá – nadpisy, tmavé sekce */
  --brand-700: #6d5540; /* hnědá – odkazy, hover */
  --brand-600: #86ab7d; /* pastelová zelená – akcenty */
  --brand-400: #bcd4b3; /* světlá zelená – rámečky */
  --brand-100: #e7f0e2; /* jemný zelený podklad */

  /* Pastelové akcenty */
  --green:  #b7d8ab;
  --mint:   #cfe9dd;
  --blue:   #b6d5e6;
  --blue-100: #e6f0f5;
  --blue-600: #7fa9c2;

  /* Sytější sage zelená pro tlačítka a odkazy (profesionální, čitelná) */
  --accent: #5f7d57;
  --accent-strong: #4d6746;

  /* Jemný pastelový přechod (zelená → mentolová → modrá) pro tenké pruhy */
  --accent-grad: linear-gradient(90deg, var(--green) 0%, var(--mint) 50%, var(--blue) 100%);

  --cream: #f5efe4;      /* béžová – hlavní podklad */
  --cream-dark: #ece2d2; /* tmavší béžová */
  --sand: #e0d4bf;       /* pískově béžová */
  --line: rgba(74, 58, 44, 0.10); /* jemné linky a rámečky */
  --ink: #4f4133;        /* hnědošedá – běžný text */
  --ink-soft: #7d6e5c;
  --ink-faint: #a99a86;
  --white: #ffffff;
  --gold: #c9a26b; /* teplý pískový akcent (jen dekorace) */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(74, 58, 44, 0.04), 0 12px 30px rgba(74, 58, 44, 0.09);
  --shadow-sm: 0 1px 2px rgba(74, 58, 44, 0.04), 0 6px 16px rgba(74, 58, 44, 0.07);
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, .logo-text {
  font-family: var(--serif); font-weight: 600; color: var(--brand-900);
  letter-spacing: -0.01em; line-height: 1.18;
}

a { color: var(--accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent-strong); }
::selection { background: var(--brand-100); }

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 720px; }
.center { text-align: center; }

/* ---------- Announce bar ---------- */
.announce { background: var(--cream-dark); color: var(--ink-soft); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; border-bottom: 1px solid var(--line); }
.announce-inner { display: flex; align-items: center; justify-content: center; gap: 14px; height: 40px; flex-wrap: wrap; }
.announce-dot { color: var(--ink-faint); }

/* ---------- Header (editoriální, vycentrované logo) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 251, 248, 0.92);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: 0 6px 22px rgba(74, 58, 44, 0.06); }
.header-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 78px; }
.brand { grid-column: 2; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--brand-900); }
.brand-name { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; letter-spacing: .01em; line-height: 1; }
.brand-sub { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-faint); font-weight: 500; padding-left: .3em; }
.cart-link { grid-column: 3; justify-self: end; color: var(--ink-soft); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.cart-link:hover { color: var(--brand-900); }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 38px; padding: 0 0 18px; }
.site-nav > a {
  color: var(--ink-soft); font-size: .76rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; position: relative; transition: color .15s;
}
.site-nav > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1.5px;
  background: var(--brand-900); transform: scaleX(0); transform-origin: center; transition: transform .22s;
}
.site-nav > a:hover::after, .site-nav > a.active::after { transform: scaleX(1); }
.site-nav > a:hover, .site-nav > a.active { color: var(--brand-900); }
.nav-toggle { grid-column: 1; justify-self: start; display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--brand-900); border-radius: 2px; transition: .25s; }
.logo { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-900); }
.logo-mark { font-size: 1.3rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: .96rem; letter-spacing: .01em;
  padding: 14px 28px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s, color .2s, box-shadow .2s, border-color .2s;
  text-align: center; line-height: 1;
}
.btn:active { transform: translateY(1px); }
/* Sebevědomé plné tlačítko */
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-strong); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--brand-900); border-color: var(--sand); }
.btn-ghost:hover { background: var(--white); border-color: var(--ink-faint); }
.btn-small { padding: 9px 16px; font-size: .88rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
/* Outline tlačítko na tmavém pozadí (hero přes fotku) */
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); letter-spacing: .1em; text-transform: uppercase; font-size: .82rem; }
.btn-outline-light:hover { background: #fff; color: var(--brand-900); border-color: #fff; }

/* ---------- Hero (celoplošné, editoriální) ---------- */
.hero {
  position: relative; display: flex; align-items: flex-end;
  min-height: 78vh;
  background:
    linear-gradient(180deg, rgba(45,35,28,.15) 0%, rgba(45,35,28,.55) 100%),
    linear-gradient(150deg, #8a9b86 0%, #6f7d6b 45%, #4a3a2c 100%);
  background-size: cover; background-position: center;
  padding: 0 0 68px;
}
.hero.hero-photo {
  background:
    linear-gradient(180deg, rgba(30,22,16,.10) 0%, rgba(30,22,16,.62) 100%),
    var(--hero-img);
  background-size: cover; background-position: center;
}
.hero-inner { max-width: 640px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  text-transform: uppercase; letter-spacing: .24em; font-size: .72rem;
  color: rgba(255,255,255,.85); font-weight: 600; margin: 0 0 20px;
}
.hero-eyebrow::before { content: ""; width: 30px; height: 1.5px; background: rgba(255,255,255,.7); }
.hero-title { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.02; margin: 0 0 22px; color: #fff; font-weight: 500; }
.hero-lead { font-size: 1.14rem; color: rgba(255,255,255,.9); max-width: 500px; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.hero-link { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.hero-link:hover { color: rgba(255,255,255,.75); }

/* Pruh pod hero */
.hero-strip { background: var(--brand-900); color: var(--cream); }
.hero-strip-inner { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; padding: 20px 0; font-family: var(--serif); font-style: italic; font-size: 1.1rem; }
.hero-strip-dot { color: rgba(255,255,255,.4); font-style: normal; }

/* ---------- Manifesto ---------- */
.manifesto { padding: 66px 0; text-align: center; }
.manifesto-lead { font-family: var(--serif); font-size: 1.5rem; color: var(--brand-900); line-height: 1.5; margin: 0 0 18px; }
.manifesto p { color: var(--ink-soft); font-size: 1.08rem; }

/* ---------- Story ---------- */
.story { background: var(--white); padding: 70px 0; }
.section-title { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin: 0 0 14px; }
.section-title.center::after {
  content: ""; display: block; width: 52px; height: 3px; border-radius: 999px;
  background: var(--accent); margin: 18px auto 0;
}
.section-title.center { text-align: center; }
.section-sub { color: var(--ink-soft); font-size: 1.08rem; margin: 0 0 8px; }
.story p { font-size: 1.08rem; color: var(--ink-soft); }
.story-list { list-style: none; padding: 0; margin: 20px 0; }
.story-list li { padding: 9px 0 9px 30px; position: relative; color: var(--ink); font-size: 1.06rem; border-bottom: 1px solid var(--cream-dark); }
.story-list li::before { content: "🌿"; position: absolute; left: 0; }
.story-quote {
  margin: 34px 0; padding: 26px 30px; border-left: 4px solid var(--brand-400);
  background: var(--brand-100); border-radius: var(--radius-sm);
  font-family: var(--serif); font-size: 1.2rem; color: var(--brand-900);
}
.story-quote span { font-size: 1.5rem; display: inline-block; margin-top: 6px; }

/* ---------- Products ---------- */
.products-preview { padding: 74px 0; }
.section-sub.center { text-align: center; margin-bottom: 36px; }
.product-grid {
  display: grid; gap: 26px;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
}
.product-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .25s, border-color .2s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.product-card-media { position: relative; display: block; aspect-ratio: 4/3; background: var(--brand-100); }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute; top: 14px; left: 14px; background: var(--brand-900); color: #fff;
  font-size: .7rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; letter-spacing: .02em;
}
.product-type {
  position: absolute; bottom: 14px; right: 14px; background: rgba(255,255,255,.94);
  color: var(--brand-700); font-size: .7rem; font-weight: 600; padding: 5px 11px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.product-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-card-title { font-size: 1.24rem; margin: 0 0 5px; }
.product-card-title a { color: var(--brand-900); transition: color .15s; }
.product-card-title a:hover { color: var(--accent); }
.product-card-tagline { color: var(--accent); font-size: .86rem; font-weight: 600; margin: 0 0 10px; letter-spacing: .01em; }
.product-card-short { color: var(--ink-soft); font-size: .95rem; line-height: 1.6; margin: 0 0 20px; flex: 1; }
.product-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.price { font-family: var(--serif); font-size: 1.4rem; color: var(--brand-900); font-weight: 600; }

/* ---------- Reassure ---------- */
.reassure { padding: 20px 0 80px; }
.reassure-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.reassure-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; text-align: center; box-shadow: var(--shadow-sm); }
.reassure-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--brand-100); font-size: 1.5rem; }
.reassure-item h3 { margin: 16px 0 8px; font-size: 1.15rem; }
.reassure-item p { color: var(--ink-soft); margin: 0; font-size: .96rem; }

/* ---------- Promise ---------- */
.promise { position: relative; background: var(--brand-900); color: var(--cream); padding: 76px 0; }
.promise::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--accent-grad);
}
.promise-quote { font-family: var(--serif); font-size: clamp(1.4rem, 3.4vw, 2rem); line-height: 1.5; color: #fff; margin: 0 0 26px; }
.promise .btn-ghost { color: var(--cream); border-color: rgba(255,255,255,.4); }
.promise .btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ---------- Page head ---------- */
.page-head { padding: 60px 0 20px; }

/* ---------- Product detail ---------- */
.product-detail { padding: 46px 0 80px; }
.product-detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-detail-media { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--brand-100); box-shadow: var(--shadow); }
.product-detail-media img { width: 100%; }
.product-detail-info .product-type {
  position: static; display: inline-block; margin: 4px 0 6px;
  background: var(--brand-100);
}
.breadcrumb { font-size: .88rem; color: var(--ink-faint); margin-bottom: 14px; }
.product-detail-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 12px 0 6px; }
.product-detail-tagline { color: var(--brand-600); font-weight: 600; font-size: 1.05rem; margin: 0 0 16px; }
.product-detail-price { font-family: var(--serif); font-size: 2rem; color: var(--brand-900); margin: 0 0 22px; }
.product-detail-desc p { color: var(--ink-soft); font-size: 1.05rem; }
.feature-list { list-style: none; padding: 0; margin: 22px 0; }
.feature-list li { padding: 7px 0; color: var(--ink); font-size: 1rem; }
.product-detail-actions { display: flex; gap: 14px; align-items: stretch; margin: 26px 0 14px; flex-wrap: wrap; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--sand); border-radius: 999px; overflow: hidden; background: #fff; }
.qty-btn { border: 0; background: none; width: 42px; height: 46px; font-size: 1.3rem; cursor: pointer; color: var(--brand-700); }
.qty input { width: 46px; text-align: center; border: 0; font-size: 1rem; background: none; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.product-detail-actions .btn { flex: 1; min-width: 200px; }
.product-detail-note { color: var(--ink-faint); font-size: .92rem; }

/* ---------- Cart ---------- */
.cart-section { padding: 20px 0 90px; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 34px; align-items: start; }
.cart-empty { text-align: center; padding: 60px 0; }
.cart-empty p { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 20px; }
.cart-item {
  display: grid; grid-template-columns: 84px 1fr auto; gap: 16px; align-items: center;
  background: var(--white); border-radius: var(--radius); padding: 16px; margin-bottom: 14px; box-shadow: var(--shadow-sm);
}
.cart-item-img { width: 84px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); background: var(--brand-100); }
.cart-item-name { font-family: var(--serif); font-size: 1.08rem; color: var(--brand-900); margin: 0 0 2px; }
.cart-item-type { font-size: .78rem; color: var(--ink-faint); }
.cart-item-controls { display: flex; align-items: center; gap: 14px; }
.cart-item-price { font-family: var(--serif); font-size: 1.1rem; color: var(--brand-900); min-width: 92px; text-align: right; }
.cart-item .qty { transform: scale(.9); }
.cart-remove { background: none; border: 0; color: var(--ink-faint); cursor: pointer; font-size: 1.2rem; padding: 4px; }
.cart-remove:hover { color: #b4534e; }
.cart-summary { background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); position: sticky; top: 92px; }
.cart-summary h2 { font-size: 1.3rem; margin: 0 0 18px; }
.cart-summary-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px solid var(--cream-dark); }
.cart-summary-row strong { font-family: var(--serif); font-size: 1.3rem; color: var(--brand-900); }
.cart-summary-note { font-size: .85rem; color: var(--ink-faint); margin: 12px 0 0; }
.field { display: block; margin: 20px 0 16px; }
.field span { display: block; font-size: .88rem; color: var(--ink-soft); margin-bottom: 7px; }
.field input {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--sand); border-radius: var(--radius-sm);
  font-size: 1rem; font-family: var(--sans); background: var(--cream); color: var(--ink);
}
.field input:focus { outline: none; border-color: var(--brand-400); background: #fff; }
.checkout-error { color: #b4534e; font-size: .9rem; margin: 10px 0 0; }
.cart-secure { text-align: center; color: var(--ink-faint); font-size: .84rem; margin: 14px 0 0; }

/* ---------- Notice ---------- */
.notice { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: .96rem; }
.notice-info { background: var(--brand-100); color: var(--brand-900); }

/* ---------- Success ---------- */
.success { padding: 70px 0 90px; }
.success-mark { font-size: 3rem; margin-bottom: 10px; }
.success-lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 560px; margin: 0 auto 24px; }
.success-order { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); text-align: left; max-width: 560px; margin: 0 auto; }
.success-order h2 { font-size: 1.3rem; margin: 0 0 16px; }
.success-items { list-style: none; padding: 0; margin: 0 0 8px; }
.success-items li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--cream-dark); color: var(--ink); }
.success-total { display: flex; justify-content: space-between; padding: 14px 0 0; font-size: 1.05rem; }
.success-total strong { font-family: var(--serif); font-size: 1.35rem; color: var(--brand-900); }
.success-downloads, .success-shipping { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--cream-dark); }
.success-downloads h3, .success-shipping h3 { font-size: 1.1rem; margin: 0 0 12px; }
.success-downloads ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.success-note { color: var(--ink-faint); font-size: .88rem; margin: 12px 0 0; }

/* ---------- Prose / legal ---------- */
.prose-section { padding: 20px 0 90px; }
.prose p { font-size: 1.06rem; color: var(--ink-soft); }
.prose h2 { font-size: 1.3rem; margin: 30px 0 10px; }
.prose ul { color: var(--ink-soft); }
.legal .legal-note { background: var(--brand-100); padding: 14px 18px; border-radius: var(--radius-sm); color: var(--brand-900); font-size: .95rem; }
.contact-social { margin-top: 20px; }
.prose .muted { color: var(--ink-faint); font-size: .95rem; }

/* Informační tabulka (doprava, cookies) */
.info-table { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; margin: 20px 0 26px; background: var(--white); }
.info-row { display: grid; grid-template-columns: 1.4fr 1.4fr .8fr; gap: 12px; padding: 13px 18px; border-top: 1px solid var(--line); font-size: .95rem; align-items: center; }
.info-row:first-child { border-top: 0; }
.info-row span:nth-child(2), .info-row span:nth-child(3) { color: var(--ink-soft); }
.info-row-head { background: var(--brand-100); font-weight: 600; }
.info-row-head span { color: var(--brand-900) !important; }

/* Inline ujištění (ikony) */
.reassure-inline { display: flex; flex-wrap: wrap; gap: 14px 22px; margin: 24px 0; padding: 16px 20px; background: var(--brand-100); border-radius: var(--radius-sm); }
.reassure-inline span { font-size: .92rem; color: var(--brand-900); font-weight: 500; }

/* Vzorový formulář (odstoupení) */
.form-sample { border: 1px dashed var(--sand); border-radius: var(--radius-sm); padding: 18px 22px; background: var(--white); margin: 14px 0 26px; }
.form-sample p { margin: 8px 0; font-size: .95rem; color: var(--ink); }

@media (max-width: 560px) {
  .info-row { grid-template-columns: 1fr; gap: 3px; }
  .info-row span:first-child { font-weight: 600; color: var(--brand-900); }
  .info-row-head { display: none; }
}

/* ---------- Footer ---------- */
.site-footer { position: relative; background: var(--brand-900); color: var(--cream); padding: 64px 0 28px; margin-top: auto; }
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent-grad);
}
.footer-grid {
  display: grid; gap: 40px 32px;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  padding-bottom: 40px;
}
.footer-logo { font-size: 1.2rem; margin-bottom: 14px; }
.footer-logo .logo-text {
  background: none; -webkit-text-fill-color: currentColor; color: #fff; font-family: var(--serif); font-weight: 600;
}
.footer-about { max-width: 340px; }
.footer-tagline { font-family: var(--serif); font-size: 1.05rem; color: rgba(255,255,255,.86); margin: 0 0 18px; line-height: 1.5; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(255,255,255,.78); font-size: .9rem; font-weight: 500; }
.footer-social a:hover { color: #fff; }
.footer-col h4 { font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.5); margin: 0 0 16px; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { color: rgba(255,255,255,.82); font-size: .94rem; }
.footer-col ul a:hover { color: #fff; }
.footer-contact li { color: rgba(255,255,255,.7); font-size: .9rem; }
.footer-contact li a { color: rgba(255,255,255,.9); }
.footer-pay { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.footer-pay span { font-size: .68rem; font-weight: 600; letter-spacing: .02em; color: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.22); padding: 5px 9px; border-radius: 6px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-copy { color: rgba(255,255,255,.5); font-size: .84rem; margin: 0; }
.footer-made { color: rgba(255,255,255,.5); font-size: .84rem; margin: 0; }

/* ---------- Cookie lišta ---------- */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px 20px; max-width: 720px; margin: 0 auto;
  animation: cookieUp .35s ease;
}
@keyframes cookieUp { from { transform: translateY(16px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-text { margin: 0; font-size: .92rem; color: var(--ink-soft); flex: 1; min-width: 240px; line-height: 1.55; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--brand-900); color: #fff; padding: 13px 22px; border-radius: 999px;
  box-shadow: var(--shadow); font-size: .95rem; opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s; z-index: 100;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 28px; }
  .footer-about { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 860px) {
  .header-top { height: 66px; }
  .nav-toggle { display: flex; }
  .brand-name { font-size: 1.5rem; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--cream);
    flex-direction: column; align-items: center; gap: 0; padding: 6px 22px 16px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform .25s ease, opacity .2s ease; z-index: 40;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav > a { padding: 15px 0; width: 100%; text-align: center; border-bottom: 1px solid var(--line); }
  .site-nav > a::after { display: none !important; }
  .product-detail-inner { grid-template-columns: 1fr; gap: 28px; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1; }
  .announce-inner { font-size: .66rem; gap: 10px; }
  .cart-link { font-size: 0; }
  .cart-link[aria-label]::before { content: "🛍"; font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .hero { min-height: 68vh; padding-bottom: 48px; }
  .hero-strip-inner { font-size: .98rem; gap: 10px; }
  .cart-item { grid-template-columns: 64px 1fr; }
  .cart-item-img { width: 64px; height: 52px; }
  .cart-item-controls { grid-column: 1 / -1; justify-content: space-between; }
}

/* =========================================================================
   Administrace
   ========================================================================= */
body.admin { background: #f0ece3; }
.admin-top { background: var(--brand-900); color: #fff; position: sticky; top: 0; z-index: 50; }
.admin-top-inner { max-width: 1100px; margin: 0 auto; padding: 0 22px; height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.admin-brand { color: #fff; font-family: var(--serif); font-size: 1.12rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.admin-brand span { color: rgba(255,255,255,.55); font-family: var(--sans); font-size: .82rem; font-weight: 500; }
.admin-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.admin-nav a { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; padding: 8px 12px; border-radius: 8px; }
.admin-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.admin-nav a.active { color: #fff; background: rgba(255,255,255,.14); }
.admin-nav-ext { opacity: .8; }
.admin-logout { margin-left: 4px; }
.admin-logout button { background: rgba(255,255,255,.12); color: #fff; border: 0; padding: 8px 14px; border-radius: 8px; font-size: .88rem; font-weight: 600; cursor: pointer; font-family: var(--sans); }
.admin-logout button:hover { background: rgba(255,255,255,.22); }
.admin-main { padding: 32px 0 80px; }
.admin-container { max-width: 1100px; margin: 0 auto; padding: 0 22px; }
.admin-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.admin-head h1 { font-size: 1.9rem; margin: 0; }

.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; margin-bottom: 30px; }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.stat-card-warn { border-color: #d9a24b; background: #fdf6ea; }
.stat-label { display: block; font-size: .82rem; color: var(--ink-soft); margin-bottom: 8px; }
.stat-value { font-family: var(--serif); font-size: 1.9rem; color: var(--brand-900); font-weight: 600; }

.admin-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.admin-panel h2 { font-size: 1.25rem; margin: 0 0 16px; }
.admin-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.admin-panel-head h2 { margin: 0; }
.admin-empty { color: var(--ink-soft); padding: 10px 0; }
.admin-flash { background: #e7f0e2; color: #3f6b3a; border: 1px solid #bcd4b3; padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 20px; font-weight: 500; }
.admin-hint, .admin-muted { color: var(--ink-soft); font-size: .88rem; }
.admin-hint { margin: -6px 0 16px; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-faint); font-weight: 700; padding: 8px 12px; border-bottom: 1px solid var(--line); }
.admin-table td { padding: 12px; border-bottom: 1px solid var(--line); vertical-align: middle; font-size: .94rem; }
.admin-table tr:last-child td { border-bottom: 0; }
.admin-thumb { width: 48px; height: 40px; object-fit: cover; border-radius: 8px; background: var(--brand-100); }
.admin-tag { display: inline-block; background: var(--brand-100); color: var(--brand-900); font-size: .68rem; font-weight: 600; padding: 2px 8px; border-radius: 999px; margin-left: 8px; }
.admin-actions { display: flex; gap: 8px; align-items: center; justify-content: flex-end; }
.admin-actions form { margin: 0; }

.badge-status { font-size: .74rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.badge-done { background: #e7f0e2; color: #3f6b3a; }
.badge-warn { background: #fbe6cf; color: #9a6a1e; }
.badge-pending { background: #f0e2e2; color: #9a4a4a; }

.btn-danger { background: #fff; color: #b4534e; border-color: #e6c4c1; }
.btn-danger:hover { background: #fbecea; border-color: #d99a95; color: #9a3f3b; }

/* Formuláře v adminu */
.admin-form .field, .admin-form .field-check { margin: 0 0 18px; }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.admin-form .field span { font-weight: 500; color: var(--ink); }
.admin-form textarea, .admin-form select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--sand); border-radius: var(--radius-sm);
  font-size: 1rem; font-family: var(--sans); background: var(--cream); color: var(--ink); resize: vertical;
}
.admin-form textarea:focus, .admin-form select:focus { outline: none; border-color: var(--accent); background: #fff; }
.field-check { display: flex; align-items: center; gap: 10px; }
.field-check input { width: 18px; height: 18px; accent-color: var(--accent); }
.field-check span { color: var(--ink); }
.admin-form-actions { display: flex; gap: 12px; margin-top: 8px; }

/* Přihlášení */
.admin-login-body { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 20px; }
.admin-login-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px 34px; width: 100%; max-width: 380px; text-align: center; }
.admin-login-logo { font-size: 2rem; margin: 0 0 6px; }
.admin-login-card h1 { font-size: 1.6rem; margin: 0 0 4px; }
.admin-login-sub { color: var(--ink-soft); margin: 0 0 24px; }
.admin-login-card .field { text-align: left; margin-bottom: 18px; }
.admin-login-error { background: #f0e2e2; color: #9a4a4a; padding: 10px 14px; border-radius: var(--radius-sm); font-size: .9rem; margin: 0 0 18px; }
.admin-login-back { margin: 20px 0 0; font-size: .9rem; }

@media (max-width: 700px) {
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-top-inner { height: auto; flex-direction: column; align-items: flex-start; padding: 12px 22px; gap: 10px; }
  .admin-nav { gap: 4px; }
}

/* =========================================================================
   Sociální sítě + sdílení
   ========================================================================= */
.social-links { display: flex; gap: 10px; align-items: center; }
.social-links.social-center { justify-content: center; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line); color: var(--brand-900);
  transition: transform .15s, background .2s, color .2s, border-color .2s;
}
.social-links a:hover { transform: translateY(-2px); background: var(--accent); color: #fff; border-color: var(--accent); }
.social-links svg { fill: currentColor; }
/* varianta ve světlé patičce (na tmavém pozadí) */
.social-links.social-light a { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #fff; }
.social-links.social-light a:hover { background: #fff; color: var(--brand-900); }
/* velké ikony (sekce „sledujte mě“) */
.social-links.social-big a { width: 52px; height: 52px; }
.social-links.social-big svg { width: 24px; height: 24px; }

/* Sekce „sledujte mě“ */
.follow { padding: 74px 0; background: var(--white); }
.section-eyebrow { text-transform: uppercase; letter-spacing: 2.5px; font-size: .74rem; color: var(--accent); font-weight: 700; margin: 0 0 12px; }
.follow .social-links { margin-top: 26px; }

.contact-social-label { margin: 24px 0 14px; color: var(--ink-soft); }

/* Sdílení produktu */
.product-share { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.product-share-label { font-size: .9rem; color: var(--ink-soft); font-weight: 500; }
.share-btn { background: var(--white); border: 1px solid var(--sand); color: var(--brand-900); font-family: var(--sans); font-size: .84rem; font-weight: 600; padding: 8px 14px; border-radius: 999px; cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
.share-btn:hover { background: var(--brand-100); border-color: var(--brand-400); }

/* =========================================================================
   Newsletter + FAQ
   ========================================================================= */
.newsletter { padding: 74px 0; background: var(--brand-100); }
.newsletter .section-eyebrow { color: var(--accent); }
.newsletter-form { display: flex; gap: 10px; max-width: 460px; margin: 26px auto 0; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 200px; padding: 14px 16px; border: 1.5px solid var(--sand);
  border-radius: 999px; font-size: 1rem; font-family: var(--sans); background: #fff; color: var(--ink);
}
.newsletter-form input:focus { outline: none; border-color: var(--accent); }
.newsletter-form .btn { flex-shrink: 0; }
.newsletter-msg { margin: 16px 0 0; font-weight: 500; }
.newsletter-msg.ok { color: var(--accent-strong); }
.newsletter-msg.err { color: #b4534e; }

.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 22px; box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 16px 0; font-family: var(--serif);
  font-size: 1.12rem; color: var(--brand-900); font-weight: 600; display: flex;
  align-items: center; justify-content: space-between; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--accent); font-family: var(--sans); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 18px; color: var(--ink-soft); line-height: 1.6; }

@media (max-width: 560px) {
  .announce-inner { font-size: .74rem; gap: 8px; }
  .newsletter-form .btn { width: 100%; }
}

/* =========================================================================
   Blog
   ========================================================================= */
.blog-section { padding: 20px 0 90px; }
.blog-grid { display: grid; gap: 28px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.blog-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s, box-shadow .25s, border-color .2s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.blog-card-media { display: block; aspect-ratio: 16/9; background: var(--brand-100); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card-date { font-size: .8rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .04em; }
.blog-card-title { font-size: 1.3rem; margin: 8px 0 10px; line-height: 1.25; }
.blog-card-title a { color: var(--brand-900); transition: color .15s; }
.blog-card-title a:hover { color: var(--accent); }
.blog-card-excerpt { color: var(--ink-soft); font-size: .96rem; line-height: 1.6; margin: 0 0 16px; flex: 1; }
.blog-card-more { font-weight: 600; font-size: .92rem; }
.blog-related { border-top: 1px solid var(--line); padding-top: 60px; }
.blog-related .section-title { margin-bottom: 32px; }

/* Detail článku */
.post { padding: 40px 0 70px; }
.post-header { margin: 18px 0 26px; }
.post-date { font-size: .85rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .05em; }
.post-title { font-size: clamp(2rem, 4.2vw, 3rem); margin: 10px 0 14px; line-height: 1.12; }
.post-lead { font-size: 1.2rem; color: var(--ink-soft); line-height: 1.5; margin: 0; }
.post-cover { border-radius: var(--radius); overflow: hidden; margin: 8px 0 34px; box-shadow: var(--shadow-sm); background: var(--brand-100); }
.post-cover img { width: 100%; display: block; }
.post-body { font-size: 1.08rem; }
.post-body p { margin: 0 0 20px; color: var(--ink); line-height: 1.75; }
.post-body h2 { font-size: 1.6rem; margin: 34px 0 14px; }
.post-body h3 { font-size: 1.3rem; margin: 28px 0 12px; }
.post-body ul { margin: 0 0 20px; padding-left: 4px; list-style: none; }
.post-body li { position: relative; padding: 6px 0 6px 30px; color: var(--ink); }
.post-body li::before { content: "🌿"; position: absolute; left: 0; font-size: .9rem; }
.post-body strong { color: var(--brand-900); }
.post-share { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); }
