/* ============================================
   Farma Včelná — Stylesheet
   Rustikálně-řemeslný styl · medová paleta
   ============================================ */

/* --- Design tokens --- */
:root {
  /* Barvy */
  --color-bg:              #faf5e9;
  --color-bg-alt:          #f4ecd7;
  --color-bg-dark:         #2a1c0e;
  --color-surface:         #ffffff;
  --color-ink:             #2a1c0e;
  --color-ink-soft:        #4e3b25;
  --color-muted:           #7a6647;
  --color-line:            #e3d5b0;

  --color-honey:           #d4a017;
  --color-honey-deep:      #b8851c;
  --color-honey-dark:      #8a5e17;
  --color-amber-glow:      #f5c842;

  --color-forest:          #4a5d3a;
  --color-forest-deep:     #34412a;

  /* Typografie */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body:    "Source Sans 3", "Source Sans Pro", system-ui, -apple-system, sans-serif;
  --font-hand:    "Caveat", cursive;

  /* Míry */
  --max-w:            1240px;
  --max-w-narrow:     780px;
  --radius-sm:        3px;
  --radius-md:        6px;
  --radius-lg:        14px;

  /* Stíny */
  --shadow-soft:   0 1px 2px rgba(42,28,14,.06), 0 4px 12px rgba(42,28,14,.05);
  --shadow-lift:   0 2px 4px rgba(42,28,14,.08), 0 14px 28px rgba(42,28,14,.08);
  --shadow-deep:   0 10px 40px rgba(42,28,14,.18);

  /* Tranzice */
  --tr-fast: 160ms ease;
  --tr-med:  280ms ease;
  --tr-slow: 600ms ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* account for sticky header (84px) + breathing room */
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--color-honey-dark); text-decoration: none; transition: color var(--tr-fast); }
a:hover { color: var(--color-honey); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-ink);
  line-height: 1.15;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

p  { margin: 0 0 1.1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--color-honey-dark);
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 54px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 42px;
  height: 1px;
  background: var(--color-honey);
}

.script {
  font-family: var(--font-hand);
  color: var(--color-honey-dark);
  font-size: 1.35em;
  line-height: 1.2;
}

/* --- Layout helpers --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--max-w-narrow); }

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--pad-lg { padding: 128px 0; }
.section--cream { background: var(--color-bg-alt); }
.section--dark  { background: var(--color-bg-dark); color: #efe6d0; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #faf0d8; }

/* --- Honeycomb divider --- */
.divider-hex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 30px 0;
  color: var(--color-honey);
}
.divider-hex svg { width: 18px; height: 18px; opacity: .75; }
.divider-hex::before,
.divider-hex::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-honey) 50%, transparent);
  flex: 0 0 80px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: all var(--tr-med);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-honey);
  color: #2a1c0e;
  border-color: var(--color-honey);
}
.btn--primary:hover {
  background: var(--color-honey-deep);
  border-color: var(--color-honey-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
  color: #2a1c0e;
}
.btn--ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
}
.btn--ghost:hover {
  background: var(--color-ink);
  color: var(--color-bg);
}
.btn--ghost-light {
  background: transparent;
  color: #faf0d8;
  border-color: #faf0d8;
}
.btn--ghost-light:hover {
  background: #faf0d8;
  color: var(--color-ink);
}

/* ===========================================
   Header & navigation
   =========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 233, 0.96);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--color-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-ink);
}
.logo img { height: 52px; width: auto; }
.logo__text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.logo__text span:first-child {
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--color-honey-dark);
  font-family: var(--font-body);
  font-weight: 600;
}
.logo__text span:last-child {
  font-weight: 500;
  font-size: 1.55rem;
  margin-top: 2px;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-main a {
  color: var(--color-ink-soft);
  font-weight: 500;
  font-size: .98rem;
  letter-spacing: .01em;
  position: relative;
  padding: 4px 0;
}
.nav-main a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--color-honey);
  transition: all var(--tr-med);
  transform: translateX(-50%);
}
.nav-main a:hover,
.nav-main a.active { color: var(--color-ink); }
.nav-main a:hover::after,
.nav-main a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--color-ink);
  transition: all var(--tr-med);
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ===========================================
   Hero
   =========================================== */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: #faf0d8;
  overflow: hidden;
  isolation: isolate;
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(42,28,14,.25) 0%, rgba(42,28,14,.55) 70%, rgba(42,28,14,.78) 100%),
    linear-gradient(90deg, rgba(42,28,14,.45) 0%, rgba(42,28,14,.1) 60%);
}
.hero__inner {
  padding: 140px 0 100px;
  max-width: 820px;
}
.hero .eyebrow { color: var(--color-amber-glow); }
.hero .eyebrow::before { background: var(--color-amber-glow); }
.hero h1 {
  color: #fff7e1;
  font-weight: 500;
  line-height: 1.08;
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}
.hero__tagline {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 560px;
  margin-bottom: 2.2rem;
  color: #f4e4c0;
  font-weight: 300;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Small bees floating decoration */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(250,240,216,.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: rgba(250,240,216,.6);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ===========================================
   Intro / About section
   =========================================== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.intro-grid__image {
  position: relative;
}
.intro-grid__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
}
.intro-grid__image-quote {
  position: absolute;
  right: -30px;
  bottom: 40px;
  background: var(--color-bg);
  padding: 24px 32px;
  border-left: 3px solid var(--color-honey);
  box-shadow: var(--shadow-lift);
  max-width: 280px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.35;
  color: var(--color-ink);
}
.intro-grid__image-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--color-honey-dark);
  font-family: var(--font-body);
}
.intro-grid__content p { font-size: 1.06rem; color: var(--color-ink-soft); }

.lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-ink);
  line-height: 1.45;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* ===========================================
   Stats / facts
   =========================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  margin-top: 72px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--color-honey-dark);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat__label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--color-muted);
  font-weight: 600;
}
.stat__sub {
  display: block;
  font-size: .82rem;
  color: var(--color-ink-soft);
  margin-top: 4px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

/* ===========================================
   Section headings
   =========================================== */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.section-head p {
  color: var(--color-ink-soft);
  font-size: 1.08rem;
}
.section-head--left {
  text-align: left;
  margin-left: 0;
}

/* ===========================================
   Product / Offer cards
   =========================================== */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.offer-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--tr-med);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-line);
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.offer-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.offer-card__image img,
.offer-card__image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.offer-card:hover .offer-card__image img { transform: scale(1.05); }
.offer-card__body {
  padding: 30px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.offer-card__body h3 { margin-bottom: .4em; }
.offer-card__body p {
  color: var(--color-ink-soft);
  font-size: .97rem;
  margin-bottom: 1.2em;
  flex: 1;
}
.offer-card__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--color-line);
}
.offer-card__price .price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-honey-dark);
  font-weight: 500;
}
.offer-card__price .weight {
  font-size: .85rem;
  color: var(--color-muted);
  letter-spacing: .04em;
}

/* ===========================================
   Feature / story blocks (alternating)
   =========================================== */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.feature:nth-child(even) .feature__image { order: 2; }
.feature__image img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
}
.feature__content h2 { margin-bottom: .5em; }
.feature__content p { color: var(--color-ink-soft); }

/* ===========================================
   Pricing tables (used on queens + products)
   =========================================== */
.pricing-table-wrap { overflow-x: auto; margin: 30px 0; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  font-size: .98rem;
}
.pricing-table thead {
  background: var(--color-bg-dark);
  color: #f5c842;
}
.pricing-table th {
  text-align: left;
  padding: 18px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.pricing-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--color-line);
  vertical-align: top;
}
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table tr:hover td { background: var(--color-bg); }
.pricing-table .product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-ink);
}
.pricing-table .price-cell {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-honey-dark);
  font-size: 1.12rem;
  white-space: nowrap;
}

/* ===========================================
   Calendar / availability
   =========================================== */
.availability {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0 20px;
}
.avail-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.avail-card__month {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-honey-dark);
  margin-bottom: 8px;
  display: block;
}
.avail-card__label {
  font-size: .95rem;
  color: var(--color-ink-soft);
  line-height: 1.45;
}
.avail-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-honey), var(--color-amber-glow));
}

/* ===========================================
   Gallery
   =========================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  grid-auto-rows: 240px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
}
.gallery-item img,
.gallery-item svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42,28,14,.6) 100%);
  opacity: 0;
  transition: opacity var(--tr-med);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  color: #fff;
  font-size: .9rem;
  letter-spacing: .02em;
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--tr-med);
  z-index: 1;
}
.gallery-item:hover .gallery-item__caption {
  opacity: 1;
  transform: translateY(0);
}

/* tile sizes */
.g-wide   { grid-column: span 8; }
.g-tall   { grid-column: span 4; grid-row: span 2; }
.g-reg    { grid-column: span 4; }
.g-half   { grid-column: span 6; }

/* ===========================================
   Blog list
   =========================================== */
.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  color: inherit;
}
.blog-card__image {
  aspect-ratio: 3/2;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-alt);
}
.blog-card__image img,
.blog-card__image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.blog-card:hover .blog-card__image img { transform: scale(1.04); }
.blog-card__meta {
  font-size: .78rem;
  color: var(--color-muted);
  letter-spacing: .16em;
  text-transform: uppercase;
  display: flex;
  gap: 12px;
  align-items: center;
}
.blog-card__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--color-honey); }
.blog-card h3 {
  font-size: 1.55rem;
  margin: 0;
  transition: color var(--tr-med);
}
.blog-card:hover h3 { color: var(--color-honey-dark); }
.blog-card__excerpt {
  color: var(--color-ink-soft);
  font-size: .98rem;
  margin: 0;
}
.blog-card__more {
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-honey-dark);
  letter-spacing: .04em;
}
.blog-card__more::after { content: " →"; }

/* Article */
.article-hero {
  padding: 140px 0 60px;
  text-align: center;
}
.article-hero__meta {
  font-size: .82rem;
  color: var(--color-muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.12rem;
  color: var(--color-ink-soft);
}
.article-body p { margin-bottom: 1.4em; }
.article-body h2, .article-body h3 { color: var(--color-ink); margin-top: 2em; }
.article-body__image {
  margin: 2.5em 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* ===========================================
   Contact page
   =========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}
.contact-info {
  background: var(--color-surface);
  padding: 44px 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}
.contact-info dl { margin: 0; }
.contact-info dt {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--color-muted);
  margin-top: 20px;
  font-weight: 600;
}
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd {
  margin: 4px 0 0;
  font-size: 1.08rem;
  color: var(--color-ink);
}
.contact-info dd a { font-weight: 500; color: var(--color-ink); }
.contact-info dd a:hover { color: var(--color-honey-dark); }

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4/5;
  background: var(--color-bg-alt);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Contact form */
.contact-form {
  background: var(--color-bg-alt);
  padding: 44px 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  margin-top: 40px;
}
.form-row {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-field label {
  display: block;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--color-surface);
  color: var(--color-ink);
  transition: border-color var(--tr-fast);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--color-honey);
  box-shadow: 0 0 0 3px rgba(212,160,23,.15);
}
.form-field textarea { resize: vertical; min-height: 140px; }

/* Honeypot field - invisible to humans */
.form-hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===========================================
   Footer
   =========================================== */
.site-footer {
  background: var(--color-bg-dark);
  color: #c9b998;
  padding: 80px 0 32px;
  margin-top: 60px;
}
.site-footer a { color: #e3d3ad; }
.site-footer a:hover { color: var(--color-amber-glow); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo__text span:first-child { color: var(--color-amber-glow); }
.footer-brand .logo__text span:last-child { color: #faf0d8; }
.footer-brand p {
  font-size: .96rem;
  max-width: 340px;
  margin-top: 20px;
  color: #ad9e7e;
}

.footer-col h4 {
  color: var(--color-amber-glow);
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: .95rem; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(250,240,216,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .84rem;
  color: #8a7854;
}

/* ===========================================
   Cookie banner
   =========================================== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 520px;
  background: var(--color-bg-dark);
  color: #efe6d0;
  padding: 24px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
  z-index: 80;
  display: none;
}
.cookie-banner.visible { display: block; animation: cbIn .4s ease; }
@keyframes cbIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  font-size: .88rem;
  margin: 0 0 14px;
  color: #c9b998;
  line-height: 1.55;
}
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn {
  padding: 10px 20px;
  font-size: .85rem;
}

/* ===========================================
   Page hero (non-home)
   =========================================== */
.page-hero {
  padding: 120px 0 72px;
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero__ornament {
  position: absolute;
  opacity: .07;
  pointer-events: none;
}
.page-hero__ornament--left {
  left: -40px; top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  width: 200px;
}
.page-hero__ornament--right {
  right: -20px; bottom: -30px;
  width: 140px;
}
.page-hero h1 { margin-bottom: .3em; }
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-ink-soft);
  font-size: 1.08rem;
}
.breadcrumb {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--color-muted); }
.breadcrumb span { margin: 0 8px; opacity: .5; }

/* ===========================================
   Responsive
   =========================================== */
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .nav-main {
    position: fixed;
    top: 84px;
    left: 0; right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 30px 24px;
    gap: 0;
    border-bottom: 1px solid var(--color-line);
    transform: translateY(-120%);
    transition: transform var(--tr-med);
    align-items: stretch;
  }
  .nav-main.open { transform: translateY(0); }
  .nav-main a {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-line);
    font-size: 1.05rem;
  }
  .nav-main a:last-child { border-bottom: 0; }
  .nav-toggle { display: block; }

  .intro-grid,
  .feature,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .feature:nth-child(even) .feature__image { order: 0; }
  .intro-grid__image-quote { right: 20px; bottom: 20px; max-width: 230px; font-size: 1rem; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .offer-grid,
  .blog-list { grid-template-columns: 1fr; gap: 28px; }

  .availability { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid { grid-auto-rows: 180px; gap: 12px; }
  .g-wide, .g-tall, .g-reg, .g-half { grid-column: span 6; }
  .g-tall { grid-row: span 1; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .hero__inner { padding: 100px 0 80px; }
  .form-row--2 { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .stats { grid-template-columns: 1fr; gap: 20px; }
  .offer-grid { gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
  .g-wide, .g-tall, .g-reg, .g-half { grid-column: span 6; }
  .availability { grid-template-columns: 1fr; }
  .site-footer { padding: 60px 0 24px; }
  .intro-grid__image-quote { position: static; margin-top: -40px; max-width: none; }
}

/* ===========================================
   Utilities & animations
   =========================================== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .9s ease forwards;
}
.fade-up--delay-1 { animation-delay: .15s; }
.fade-up--delay-2 { animation-delay: .3s; }
.fade-up--delay-3 { animation-delay: .45s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.text-center { text-align: center; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 4rem; }
.mb-md { margin-bottom: 2rem; }

::selection { background: var(--color-honey); color: var(--color-ink); }

/* Print */
@media print {
  .site-header, .site-footer, .cookie-banner, .nav-toggle { display: none; }
  body { background: #fff; color: #000; }
  .section { padding: 30px 0; }
}
/* ============================================================
   LEGAL PAGES  (pravni/*.html)
   Připojit na konec style.css
   ============================================================ */

.legal-page {
  padding: 3rem 0 5rem;
}

.legal-page h1 {
  margin-bottom: 0.25rem;
}

.legal-meta {
  color: var(--color-muted, #888);
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  border-bottom: 2px solid var(--color-accent, #f5a623);
  padding-bottom: 0.35rem;
}

.legal-page h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.legal-page p,
.legal-page li {
  line-height: 1.75;
  color: var(--color-text, #333);
}

.legal-page ul {
  margin: 0.5rem 0 1rem 1.5rem;
}

.legal-page ul li {
  margin-bottom: 0.35rem;
}

.legal-page hr {
  border: none;
  border-top: 1px solid var(--color-border, #e5e5e5);
  margin: 2.5rem 0;
}

.container--narrow {
  max-width: 760px;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 1.5rem;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-muted, #888);
}

.breadcrumb ol li + li::before {
  content: "›";
  margin-right: 0.25rem;
}

.breadcrumb a {
  color: var(--color-accent, #f5a623);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ============================================================
   ORDER FORM  (objednat.html)
   ============================================================ */

.order-page {
  padding: 3rem 0 5rem;
}

.order-page h1 {
  margin-bottom: 0.5rem;
}

.order-page .order-intro {
  color: var(--color-muted, #666);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* Sekce formuláře */
.order-section {
  background: var(--color-surface, #fafaf8);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.order-section h2 {
  font-size: 1.1rem;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.order-section h2 .step-num {
  background: var(--color-accent, #f5a623);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Produkt řádky */
.product-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
}

.product-row-label {
  font-weight: 500;
}

.product-row-price {
  color: var(--color-muted, #888);
  font-size: 0.9rem;
  white-space: nowrap;
}

.qty-input {
  width: 4rem;
  text-align: center;
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--color-border, #ccc);
  border-radius: 4px;
  font-size: 1rem;
}

/* Doprava volby */
.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.shipping-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border, #e5e5e5);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.15s;
}

.shipping-option:has(input:checked) {
  border-color: var(--color-accent, #f5a623);
  background: #fffbf0;
}

.shipping-option input[type="radio"] {
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.shipping-option-body strong {
  display: block;
  margin-bottom: 0.2rem;
}

.shipping-option-body small {
  color: var(--color-muted, #888);
  font-size: 0.85rem;
}

/* Zásilkovna widget tlačítko */
#zasilkovna-picker-btn {
  display: none;
  margin-top: 0.75rem;
  padding: 0.55rem 1.25rem;
  background: #ba2026;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
}

#zasilkovna-picker-btn:hover {
  background: #961a1f;
}

#zasilkovna-selected {
  display: none;
  margin-top: 0.6rem;
  padding: 0.5rem 0.75rem;
  background: #f0faf0;
  border: 1px solid #b2d8b2;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* Pole formuláře */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text, #333);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--color-border, #ccc);
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.15s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent, #f5a623);
}

.form-field .field-error {
  color: #c0392b;
  font-size: 0.8rem;
  display: none;
}

.form-field.has-error input,
.form-field.has-error select {
  border-color: #c0392b;
}

.form-field.has-error .field-error {
  display: block;
}

/* Souhrn objednávky */
.order-summary-box {
  background: #fffbf0;
  border: 2px solid var(--color-accent, #f5a623);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.order-summary-box h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.summary-lines {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
}

.summary-line.total {
  font-weight: 700;
  font-size: 1.05rem;
  border-top: 1px solid var(--color-border, #e5e5e5);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

/* Odeslat tlačítko */
.btn-submit-order {
  width: 100%;
  padding: 0.9rem 2rem;
  background: var(--color-accent, #f5a623);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.btn-submit-order:hover {
  background: #d4891a;
}

.btn-submit-order:active {
  transform: scale(0.99);
}

.btn-submit-order:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* Potvrzovací zpráva */
#order-success {
  display: none;
  padding: 2rem;
  background: #f0faf0;
  border: 2px solid #4caf50;
  border-radius: 8px;
  text-align: center;
}

#order-success h2 {
  color: #2e7d32;
  margin-bottom: 0.75rem;
  border: none;
}

/* Responsive */
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .product-row {
    grid-template-columns: 1fr auto;
  }
  .product-row-price {
    display: none;
  }
}
/* ============================================================
   LEGAL PAGES  (pravni/*.html)
   Připojit na konec style.css
   ============================================================ */

.legal-page {
  padding: 3rem 0 5rem;
}

.legal-page h1 {
  margin-bottom: 0.25rem;
}

.legal-meta {
  color: var(--color-muted, #888);
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  border-bottom: 2px solid var(--color-accent, #f5a623);
  padding-bottom: 0.35rem;
}

.legal-page h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.legal-page p,
.legal-page li {
  line-height: 1.75;
  color: var(--color-text, #333);
}

.legal-page ul {
  margin: 0.5rem 0 1rem 1.5rem;
}

.legal-page ul li {
  margin-bottom: 0.35rem;
}

.legal-page hr {
  border: none;
  border-top: 1px solid var(--color-border, #e5e5e5);
  margin: 2.5rem 0;
}

.container--narrow {
  max-width: 760px;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 1.5rem;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-muted, #888);
}

.breadcrumb ol li + li::before {
  content: "›";
  margin-right: 0.25rem;
}

.breadcrumb a {
  color: var(--color-accent, #f5a623);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ============================================================
   ORDER FORM  (objednat.html)
   ============================================================ */

.order-page {
  padding: 3rem 0 5rem;
}

.order-page h1 {
  margin-bottom: 0.5rem;
}

.order-page .order-intro {
  color: var(--color-muted, #666);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* Sekce formuláře */
.order-section {
  background: var(--color-surface, #fafaf8);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.order-section h2 {
  font-size: 1.1rem;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.order-section h2 .step-num {
  background: var(--color-accent, #f5a623);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Produkt řádky */
.product-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
}

.product-row-label {
  font-weight: 500;
}

.product-row-price {
  color: var(--color-muted, #888);
  font-size: 0.9rem;
  white-space: nowrap;
}

.qty-input {
  width: 4rem;
  text-align: center;
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--color-border, #ccc);
  border-radius: 4px;
  font-size: 1rem;
}

/* Doprava volby */
.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.shipping-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border, #e5e5e5);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.15s;
}

.shipping-option:has(input:checked) {
  border-color: var(--color-accent, #f5a623);
  background: #fffbf0;
}

.shipping-option input[type="radio"] {
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.shipping-option-body strong {
  display: block;
  margin-bottom: 0.2rem;
}

.shipping-option-body small {
  color: var(--color-muted, #888);
  font-size: 0.85rem;
}

/* Zásilkovna widget tlačítko */
#zasilkovna-picker-btn {
  display: none;
  margin-top: 0.75rem;
  padding: 0.55rem 1.25rem;
  background: #ba2026;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
}

#zasilkovna-picker-btn:hover {
  background: #961a1f;
}

#zasilkovna-selected {
  display: none;
  margin-top: 0.6rem;
  padding: 0.5rem 0.75rem;
  background: #f0faf0;
  border: 1px solid #b2d8b2;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* Pole formuláře */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text, #333);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--color-border, #ccc);
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.15s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent, #f5a623);
}

.form-field .field-error {
  color: #c0392b;
  font-size: 0.8rem;
  display: none;
}

.form-field.has-error input,
.form-field.has-error select {
  border-color: #c0392b;
}

.form-field.has-error .field-error {
  display: block;
}

/* Souhrn objednávky */
.order-summary-box {
  background: #fffbf0;
  border: 2px solid var(--color-accent, #f5a623);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.order-summary-box h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.summary-lines {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
}

.summary-line.total {
  font-weight: 700;
  font-size: 1.05rem;
  border-top: 1px solid var(--color-border, #e5e5e5);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

/* Odeslat tlačítko */
.btn-submit-order {
  width: 100%;
  padding: 0.9rem 2rem;
  background: var(--color-accent, #f5a623);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.btn-submit-order:hover {
  background: #d4891a;
}

.btn-submit-order:active {
  transform: scale(0.99);
}

.btn-submit-order:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* Potvrzovací zpráva */
#order-success {
  display: none;
  padding: 2rem;
  background: #f0faf0;
  border: 2px solid #4caf50;
  border-radius: 8px;
  text-align: center;
}

#order-success h2 {
  color: #2e7d32;
  margin-bottom: 0.75rem;
  border: none;
}

/* Responsive */
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .product-row {
    grid-template-columns: 1fr auto;
  }
  .product-row-price {
    display: none;
  }
}
/* ============================================================
   css-additions-v5.css — přidat na konec css/style.css
   ============================================================ */

/* --- Share tlačítko na blogu --- */
.article-share {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-line);
}

.btn--share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #1877f2;
  color: #fff;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.btn--share:hover { background: #166fe5; }

/* --- Varování v objednávkovém formuláři --- */
.order-warning {
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: .9rem;
  margin-top: 10px;
}

/* --- Řádky souhrnu --- */
.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: .95rem;
  border-bottom: 1px solid var(--color-line);
}
.summary-line:last-child { border-bottom: none; }
.summary-line--muted { color: var(--color-muted); font-size: .85rem; }
.summary-line--total { padding-top: 10px; font-size: 1.05rem; }

/* --- Disabled shipping option --- */
.shipping-option--disabled {
  opacity: .5;
  pointer-events: none;
}

/* --- Neplatné pole --- */
.field-invalid {
  border-color: #e74c3c !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(231,76,60,.15);
}
/* ============================================================
   css-additions-v5.css — přidat na konec css/style.css
   ============================================================ */

/* --- Share tlačítko na blogu --- */
.article-share {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-line);
}
.btn--share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #1877f2;
  color: #fff;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.btn--share:hover { background: #166fe5; }

/* --- Varování v objednávkovém formuláři --- */
.order-warning {
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: .9rem;
  margin-top: 10px;
}

/* --- Řádky souhrnu objednávky --- */
.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: .95rem;
  border-bottom: 1px solid var(--color-line);
}
.summary-line:last-child { border-bottom: none; }
.summary-line--muted { color: var(--color-muted); font-size: .85rem; }
.summary-line--total { padding-top: 10px; font-size: 1.05rem; }

/* --- Disabled shipping option --- */
.shipping-option--disabled { opacity: .5; pointer-events: none; }

/* --- Neplatné pole --- */
.field-invalid {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231,76,60,.15);
}

/* --- Oprava: offer-card na dark pozadí --- */
.section--dark .offer-card { background: #fff; color: var(--color-ink, #1a1a1a); }
.section--dark .offer-card h3 { color: var(--color-ink, #1a1a1a); }
.section--dark .offer-card p  { color: var(--color-ink-soft, #444); }

/* --- Oddělovač NEBO v objednávkovém formuláři --- */
.products-separator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1.5rem 0;
  color: var(--color-muted);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.products-separator::before,
.products-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-line);
}

/* --- Info o krabicích --- */
.products-box-info {
  font-size: .85rem;
  color: var(--color-muted);
  margin-bottom: .75rem;
}

/* --- Banner pozastaveného e-shopu --- */
.shop-pause-banner {
  background: #fff8e1;
  border: 2px solid #f59e0b;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.shop-pause-banner h2 { color: #92400e; margin: 0 0 .5rem; font-size: 1.3rem; }
.shop-pause-banner p  { color: #78350f; margin: 0; font-size: .95rem; }

/* --- Disabled tlačítko (produkty dočasně nedostupné) --- */
.btn--disabled {
  display: inline-block;
  padding: .7em 1.4em;
  background: #d6cfc4;
  color: #9e9589;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 600;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: none;
  border: none;
  opacity: .7;
}
