:root {
  --brand-gold: #f9a000;
  --brand-gold-dark: #d27e15;
  --text-dark: #3a3a3a;
  --bg-cream: #f8f6ef;
  --bg-deep: #25211f;
  --accent-nature: #8b9862;
  --white: #ffffff;
  --max: 1200px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { letter-spacing: 0.01em; }
p { margin-top: 0; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section { padding: 5rem 0; position: relative; }
.section-alt { background: linear-gradient(180deg, #eeeade, #f5f1e4); }
.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 12% 15%, rgba(139, 152, 98, 0.12), transparent 30%);
  pointer-events: none;
}
.section-deep { background: var(--bg-deep); color: var(--white); }
.section-title {
  margin: 0 0 1.1rem;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}
.section-lead {
  max-width: 65ch;
  margin-bottom: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
}
.btn-primary {
  background: var(--brand-gold);
  color: #1e1e1e;
}
.btn-primary:hover { background: var(--brand-gold-dark); }
.btn-outline {
  border: 1px solid var(--text-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg-cream) 86%, transparent);
  border-bottom: 1px solid #e3decd;
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0;
}
.brand img {
  width: 148px;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.06));
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1rem;
}
.menu-toggle { display: none; }

.hero {
  min-height: 78vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(100deg, rgba(250, 245, 234, 0.96) 0%, rgba(250, 245, 234, 0.9) 46%, rgba(250, 245, 234, 0.54) 66%, rgba(250, 245, 234, 0.35) 100%),
    url("../../podklady/images/wp-content/uploads/2024/07/chaga-mushroom-1024x746.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(245, 239, 224, 0.68));
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 2rem;
}
.hero-content { max-width: 700px; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.1; margin: 0 0 1rem; }
.hero p { max-width: 56ch; }
.actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.25rem; }
.hero-media {
  position: relative;
  min-height: 520px;
}
.hero-product-main {
  position: absolute;
  right: 0;
  bottom: -22px;
  width: min(84%, 530px);
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.22));
}
.hero-product-detail {
  position: absolute;
  right: 20px;
  top: 58px;
  width: 172px;
  height: 172px;
  object-fit: cover;
  border-radius: 22px;
  border: 4px solid #fff;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.product-card {
  background: #fff;
  border: 1px solid #e7e1cf;
  border-radius: 20px;
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.product-card h3 { margin: 0; }
.product-card .card-actions { display: flex; gap: 0.55rem; flex-wrap: wrap; }
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(37, 33, 31, 0.1);
}
.product-card img {
  max-height: 220px;
  width: auto;
  margin-inline: auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.fact-box {
  background: color-mix(in srgb, var(--white) 80%, transparent);
  border: 1px solid #e7e1cf;
  border-radius: 16px;
  padding: 1.5rem;
}
.about-visual-stack {
  display: grid;
  gap: 1rem;
}
.about-photo {
  border-radius: 16px;
  min-height: 230px;
  object-fit: cover;
  border: 1px solid #e3dac0;
}
.badge-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--brand-gold);
  background: rgba(249, 160, 0, 0.15);
  font-size: 0.92rem;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e6e0cf;
  padding: 1rem;
  margin-bottom: 0.8rem;
}
.cta-band {
  background:
    radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--brand-gold) 22%, transparent), transparent 40%),
    radial-gradient(circle at 88% 92%, color-mix(in srgb, var(--accent-nature) 18%, transparent), transparent 38%),
    linear-gradient(180deg, #fff, #f5f1e4);
}
.cta-band .inner {
  border: 1px solid #dfd3b7;
  border-radius: 24px;
  padding: 2.5rem 2rem;
}
#preco-med {
  background-image:
    linear-gradient(180deg, rgba(248, 246, 239, 0.94), rgba(248, 246, 239, 0.94)),
    url("../../podklady/images/wp-content/uploads/2024/07/three-fresh-shiitake-mushrooms-1024x678.jpg");
  background-size: cover;
  background-position: center;
}

.site-footer {
  background: #111;
  color: #eee;
  padding-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.footer-copy {
  border-top: 1px solid #2a2a2a;
  margin-top: 1.25rem;
  padding: 0.8rem 0 1rem;
  font-size: 0.9rem;
  color: #bdbdbd;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .footer-grid { grid-template-columns: 1fr; }

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid #cfc8b2;
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    background: #fff;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    padding: 1rem;
    background: var(--bg-cream);
    border-bottom: 1px solid #e5decb;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.is-open { display: flex; }
  .menu-list { flex-direction: column; }
  .hero {
    min-height: 640px;
  }
  .hero::before {
    background-position: 62% center;
  }
  .hero-media {
    min-height: 310px;
    margin-top: -16px;
  }
  .hero-product-main {
    right: 50%;
    transform: translateX(50%);
    width: min(72%, 360px);
    bottom: -34px;
  }
  .hero-product-detail {
    right: 22%;
    top: 10px;
    width: 118px;
    height: 118px;
    border-radius: 14px;
  }
}

@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
}

/* Produktový hero obrázok — centrovaný a dominantný */
.hero-media img:not(.hero-product-main):not(.hero-product-detail) {
  display: block;
  margin-inline: auto;
  max-height: 480px;
  width: auto;
  object-fit: contain;
}

/* Breadcrumb navigácia */
.breadcrumb {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: #888;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--brand-gold-dark);
  text-decoration: underline;
}
.breadcrumb span { color: #bbb; }
