@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Lato:wght@300;400;700;900&display=swap');

/* ══════════════════════════════════════
   CSS PROMĚNNÉ — barevná paleta
══════════════════════════════════════ */
:root {
  --bg:       #F5F0E4;
  --white:    #FFFFFF;
  --gd:       #3D5426;   /* green dark  – header, footer, tlačítka */
  --gm:       #5B7A3E;   /* green mid   – akcenty */
  --gl:       #8AAD65;   /* green light – botanical dekorace */
  --cream:    #EDE8DA;
  --cream2:   #E8E2D4;
  --text:     #2A2018;
  --tmid:     #5A5040;
  --tlt:      #8A8070;
  --border:   #D5CDB8;

  /* Stíny */
  --shadow:    0 4px 18px rgba(42,32,24,0.10);
  --shadow-lg: 0 8px 36px rgba(42,32,24,0.16);
}

/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(42,32,24,0.07);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gl);
}
.logo-txt { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gd);
  line-height: 1.15;
}
.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tlt);
}

/* Navigace */
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--tmid);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
nav a.active { color: var(--gd); border-bottom-color: var(--gd); }
nav a:hover  { color: var(--gd); }

/* Header right – lang + hamburger */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Lang switcher */
.lang-switcher { position: relative; }
.lang-btn {
  background: transparent;
  color: var(--tmid);
  border: 1.5px solid var(--border);
  padding: 6px 13px;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s, color 0.2s;
  border-radius: 4px;
}
.lang-btn:hover { border-color: var(--gm); color: var(--gd); }

.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-width: 165px;
  border-radius: 4px;
  z-index: 200;
}
.lang-dropdown.open { display: block; }
.lang-dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 0.87rem;
  color: var(--text);
  transition: background 0.15s;
}
.lang-dropdown button:hover  { background: var(--cream); }
.lang-dropdown button.active { background: var(--cream); font-weight: 700; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--gd);
  transition: all 0.3s;
  border-radius: 2px;
}

/* ══════════════════════════════════════
   HERO – SPLIT GRID
══════════════════════════════════════ */
#home {
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: var(--bg);
}

/* Botanical SVG leaves – levý okraj */
.hero-leaves {
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  width: 180px;
  pointer-events: none;
  z-index: 2;
}

/* Hero levá strana – text */
.hero-left {
  position: relative;
  z-index: 3;
  padding: 44px 40px 44px 60px;
  max-width: 50%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  font-family: 'Lato', sans-serif;
  font-style: italic;
  color: var(--gm);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.hero-left h1 {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--gd);
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 0.9rem;
  color: var(--tmid);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 30px;
}

/* Hero badges – 2 položky pod textem */
.hero-badges {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
}

.hero-badge-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 20px 12px 0;
  flex: 1;
}
.hero-badge-item + .hero-badge-item {
  border-left: 1px solid var(--border);
  padding-left: 20px;
}

.badge-icon {
  font-size: 1.1rem;
  margin-top: 2px;
  color: var(--gm);
  flex-shrink: 0;
}

.badge-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.badge-text span {
  font-size: 0.75rem;
  color: var(--tlt);
}

/* Hero pozadí – celá šířka */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 20%;
  display: block;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #F5F0E4 28%, rgba(245,240,228,0.80) 48%, rgba(245,240,228,0.10) 72%, transparent 90%);
}

/* Kruhový badge na fotce */
.hero-circle-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gd);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
  padding: 12px;
  box-shadow: 0 4px 16px rgba(61,84,38,0.35);
}
.circle-leaf {
  font-size: 0.8rem;
  margin-top: 4px;
}

/* ══════════════════════════════════════
   CATEGORY STRIP
══════════════════════════════════════ */
.cat-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 48px;
}

.cat-strip-title {
  text-align: center;
  margin-bottom: 24px;
}
.cat-strip-title h2 {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}

.leaf-divider {
  color: var(--gl);
  font-size: 0.85rem;
  margin-top: 4px;
}

.cat-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.cat-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}
.cat-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.cat-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.cat-card-body {
  padding: 12px 14px;
  flex: 1;
}
.cat-card-body strong {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
  line-height: 1.2;
}
.cat-card-body span {
  display: block;
  font-size: 0.72rem;
  color: var(--tlt);
  line-height: 1.4;
  margin-bottom: 4px;
}
.cat-card .category-tag { display: inline-block; color: #fff; font-size: 0.62rem; margin-bottom: 8px; }
.cat-card .category-feature { display: flex; }

.cat-leaf {
  color: var(--gl);
  font-size: 0.75rem;
}

/* ══════════════════════════════════════
   INFO STRIP – 3 sloupce
══════════════════════════════════════ */
.info-strip {
  background: var(--cream);
  display: grid;
  grid-template-columns: 28fr 38fr 34fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Sloupec 1 – O nás */
.info-about {
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border);
}

/* Botanické listy dekorace col 1 */
.info-about::before {
  content: '';
  position: absolute;
  right: -20px;
  top: 0;
  bottom: 0;
  width: 140px;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 140 340'%3E%3Cellipse cx='90' cy='60' rx='28' ry='52' fill='%235B7A3E' transform='rotate(25 90 60)'/%3E%3Cellipse cx='70' cy='160' rx='24' ry='46' fill='%235B7A3E' transform='rotate(15 70 160)'/%3E%3Cellipse cx='100' cy='260' rx='26' ry='48' fill='%235B7A3E' transform='rotate(30 100 260)'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.info-about-label {
  font-family: 'Lato', sans-serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gm);
  margin-bottom: 10px;
  display: block;
}

.info-about h2 {
  font-family: 'Lato', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.info-about .heart {
  color: var(--gm);
  font-size: 1.1rem;
  margin-left: 6px;
}
.info-about p {
  font-size: 0.82rem;
  color: var(--tmid);
  line-height: 1.75;
}

/* Sloupec 2 – Proč k nám */
.info-why {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
}

.info-why-title {
  text-align: center;
  margin-bottom: 28px;
}
.info-why-title h2 {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}
.info-why-title .leaf-divider {
  color: var(--gl);
  font-size: 0.75rem;
}

.why-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.why-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid var(--gm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: var(--white);
  flex-shrink: 0;
}
.why-item strong {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.why-item span {
  font-size: 0.72rem;
  color: var(--tlt);
  line-height: 1.5;
}

/* Sloupec 3 – Kde nás najdete */
.info-where { padding: 48px 32px; }

.info-where h2 {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}
.info-where .leaf-divider {
  color: var(--gl);
  font-size: 0.75rem;
  margin-bottom: 18px;
  display: block;
}

.contact-rows { margin-bottom: 18px; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--tmid);
}
.contact-row-icon {
  color: var(--gm);
  font-size: 0.9rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.contact-row strong {
  display: block;
  font-size: 0.72rem;
  color: var(--text);
  margin-bottom: 1px;
  font-weight: 700;
}
.contact-row a {
  color: var(--tmid);
  text-decoration: none;
}
.contact-row a:hover { color: var(--gd); text-decoration: underline; }

.shop-map {
  margin-top: 16px;
  margin-bottom: 12px;
}

.shop-photo {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
  border: 2px solid var(--border);
  border-radius: 2px;
}

/* ══════════════════════════════════════
   SEKCE – obecné
══════════════════════════════════════ */
section {
  padding: 70px 60px;
}

.section-label {
  display: table;
  margin: 0 auto 14px;
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gm);
  border: 1.5px solid var(--gm);
  padding: 4px 18px;
  border-radius: 2px;
}

.section-title {
  font-family: 'Lato', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gd);
  text-align: center;
  margin-bottom: 0;
  line-height: 1.25;
}

.section-desc {
  text-align: center;
  color: var(--tmid);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 50px;
}

/* Dekorativní dělítko */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gl);
  margin: 16px auto 24px;
  position: relative;
}
.divider::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  background: var(--gl);
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
}
.divider::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  background: var(--gl);
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
}

/* ══════════════════════════════════════
   NOVINKY
══════════════════════════════════════ */
/* ─── AKTUALITY Z FACEBOOKU ─── */
#aktuality {
  background: var(--cream);
  padding: 60px 20px;
  text-align: center;
}

.fb-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 32px;
  text-align: left;
}

.fb-post-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.fb-post-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.fb-post-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.fb-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fb-post-body {
  padding: 14px;
  flex: 1;
}

.fb-post-date {
  font-size: 0.72rem;
  color: var(--walnut);
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fb-post-text {
  font-size: 0.82rem;
  color: var(--dark);
  line-height: 1.55;
}

.fb-link-wrap {
  text-align: center;
  margin-top: 8px;
}

.fb-embed-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 32px;
}

.fb-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--walnut);
  padding: 40px;
  font-size: 0.9rem;
}

#novinky {
  background: var(--bg);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.news-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: var(--cream);
  display: block;
}
.news-body { padding: 20px; }
.news-date {
  font-family: 'Lato', sans-serif;
  font-size: 0.67rem;
  color: var(--gm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.news-body h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  color: var(--gd);
  margin-bottom: 8px;
  line-height: 1.4;
}
.news-body p {
  font-family: 'Lato', sans-serif;
  font-size: 0.84rem;
  color: var(--tmid);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   SORTIMENT
══════════════════════════════════════ */
#sortiment {
  background: var(--cream);
}

.product-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.category-card.featured {
  border-color: var(--gm);
  border-width: 2px;
}

.category-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.category-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.category-tag {
  display: inline-block;
  background: var(--gd);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 9px;
  border-radius: 2px;
}

.category-body h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.15rem;
  color: var(--gd);
  margin-bottom: 8px;
  line-height: 1.3;
}

.category-body p {
  font-family: 'Lato', sans-serif;
  font-size: 0.84rem;
  color: var(--tmid);
  line-height: 1.65;
  flex: 1;
}

.category-feature {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gm);
}

/* ══════════════════════════════════════
   APLIKACE
══════════════════════════════════════ */
#aplikace {
  background: var(--bg);
}

#aplikace .section-label {
  color: var(--gm);
  border-color: var(--gm);
}
#aplikace .section-title { color: var(--gd); }
#aplikace .section-desc  { color: var(--tmid); }
#aplikace .divider { background: var(--gl); }
#aplikace .divider::before,
#aplikace .divider::after { background: var(--gl); }

.app-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.app-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s;
}

.app-feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--gm);
  box-shadow: var(--shadow-lg);
}

.app-feature-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.app-feature-card strong {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gd);
  margin-bottom: 8px;
}

.app-feature-card p {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  color: var(--tmid);
  line-height: 1.65;
  margin: 0;
}

.app-coming-soon-wrap {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.app-coming-soon-badge {
  display: inline-block;
  background: var(--gd);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.app-coming-soon-wrap > p {
  font-family: 'Lato', sans-serif;
  color: var(--tmid);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

#aplikace .btn-outline {
  border-color: var(--gd);
  color: var(--gd);
}
#aplikace .btn-outline:hover {
  background: var(--gd);
  color: #fff;
  border-color: var(--gd);
}

/* ══════════════════════════════════════
   DÁRKOVÉ BALÍČKY
══════════════════════════════════════ */
#darkove-balicky {
  background: var(--gd);
}
#darkove-balicky .section-label { color: var(--gl); border-color: var(--gl); }
#darkove-balicky .section-title { color: #fff; }
#darkove-balicky .section-desc  { color: rgba(255,255,255,0.75); }
#darkove-balicky .divider { background: var(--gl); }
#darkove-balicky .divider::before,
#darkove-balicky .divider::after { background: var(--gl); }

.gifts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.gift-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  padding: 0 0 20px;
  text-align: center;
  transition: all 0.25s;
  overflow: hidden;
}
.gift-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  border-color: var(--gl);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.gift-card-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px 3px 0 0;
  margin-bottom: 20px;
}

.gift-card h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.18rem;
  margin-bottom: 0;
  color: #fff;
  padding: 0 24px;
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 8px 22px;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
  border-radius: 2px;
}
.btn-outline:hover {
  background: #fff;
  color: var(--gd);
  border-color: #fff;
}

/* ══════════════════════════════════════
   VĚRNOSTNÍ KLUB
══════════════════════════════════════ */
#vernostni-klub {
  background: var(--bg);
}

#vernostni-klub .section-label {
  color: var(--gm);
  border-color: var(--gm);
}
#vernostni-klub .section-title { color: var(--gd); }
#vernostni-klub .divider { background: var(--gl); }
#vernostni-klub .divider::before,
#vernostni-klub .divider::after { background: var(--gl); }
#vernostni-klub .section-desc { color: var(--tmid); }

.club-wrapper {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: start;
}

.club-benefits {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.club-benefit {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.club-benefit-icon {
  font-size: 1.65rem;
  flex-shrink: 0;
  line-height: 1.2;
}

.club-benefit strong {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gd);
  margin-bottom: 4px;
}

.club-benefit p {
  font-family: 'Lato', sans-serif;
  font-size: 0.83rem;
  color: var(--tmid);
  margin: 0;
  line-height: 1.6;
}

/* Formulář */
.club-form-wrap {
  background: var(--white);
  padding: 36px 40px;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.club-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-family: 'Lato', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gd);
}

.required-star { color: #b84040; }

.field-hint {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.71rem;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--tlt);
  font-weight: 400;
  margin-top: 2px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: 'Lato', sans-serif;
  font-size: 0.91rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  border-radius: 3px;
}

.form-group input:focus {
  border-color: var(--gm);
  box-shadow: 0 0 0 3px rgba(91,122,62,0.12);
}

.form-group input.is-error { border-color: #b84040; }

.field-error {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  color: #b84040;
  font-style: italic;
  min-height: 1.1em;
}

/* Honeypot skryté pole */
#hpField {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
}

.form-checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  cursor: pointer;
  position: relative;
}

.check-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
  margin-top: 1px;
  border-radius: 3px;
}

.check-label input:checked ~ .checkmark {
  background: var(--gd);
  border-color: var(--gd);
}

.check-label input:checked ~ .checkmark::after {
  content: '✓';
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.checkmark.chk-error { border-color: #b84040; }

.check-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.83rem;
  color: var(--tmid);
  line-height: 1.65;
}

.check-text a { color: var(--gm); }
.check-text a:hover { color: var(--gd); text-decoration: underline; }
.check-text em { font-size: 0.76rem; color: var(--tlt); }

.form-footer-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.form-note {
  font-family: 'Lato', sans-serif;
  font-size: 0.73rem;
  color: var(--tlt);
  font-style: italic;
  margin: 0;
}

.btn-club {
  background: var(--gd);
  color: #fff;
  border: 2px solid var(--gd);
  padding: 13px 28px;
  font-family: 'Lato', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  border-radius: 3px;
}

.btn-club:hover {
  background: var(--gm);
  border-color: var(--gm);
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(61,84,38,0.25);
}

.btn-club:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.club-msg {
  font-family: 'Lato', sans-serif;
  font-size: 0.84rem;
  padding: 10px 14px;
  border-left: 4px solid transparent;
  display: none;
  border-radius: 2px;
}

.club-msg.is-error {
  display: block;
  background: rgba(184,64,64,0.07);
  border-color: #b84040;
  color: #b84040;
}

.club-done {
  text-align: center;
  padding: 48px 24px;
}

.club-done-icon {
  font-size: 3rem;
  margin-bottom: 14px;
}

.club-done h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.7rem;
  color: var(--gd);
  margin-bottom: 12px;
}

.club-done p {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--tmid);
  line-height: 1.8;
  max-width: 380px;
  margin: 0 auto;
}

/* ══════════════════════════════════════
   KONTAKT
══════════════════════════════════════ */
#kontakt {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.45rem;
  color: var(--gd);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-item-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-text h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gm);
  margin-bottom: 3px;
}

.contact-item-text p,
.contact-item-text a {
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  text-decoration: none;
  line-height: 1.55;
}

.contact-item-text a:hover { color: var(--gm); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gd);
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s;
}

.social-link:hover { background: var(--gm); }

.contact-map {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  min-height: 350px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 350px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--gd);
  color: rgba(255,255,255,0.75);
  font-family: 'Lato', sans-serif;
}

.footer-top {
  padding: 44px 48px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .brand-name {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}

.footer-brand p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.78rem;
  margin-bottom: 6px;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s;
}
.social-btn:hover { background: rgba(255,255,255,0.25); }

.footer-bottom {
  padding: 14px 48px;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   TLAČÍTKA obecná
══════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  background: var(--gd);
  color: #fff;
  padding: 13px 30px;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--gd);
  border-radius: 3px;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--gm);
  border-color: var(--gm);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,84,38,0.25);
}

/* ══════════════════════════════════════
   RESPONZIVITA – tablet 1024px
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .cat-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .product-categories  { grid-template-columns: repeat(2, 1fr); }
  .app-features-grid   { grid-template-columns: repeat(2, 1fr); }
  .gifts-grid          { grid-template-columns: repeat(2, 1fr); }
  .news-grid           { grid-template-columns: repeat(2, 1fr); }
  .fb-posts-grid       { grid-template-columns: repeat(2, 1fr); }
  .info-strip          { grid-template-columns: 1fr; }
  .info-about          { border-right: none; border-bottom: 1px solid var(--border); }
  .info-why            { border-right: none; border-bottom: 1px solid var(--border); }

  .club-wrapper        { grid-template-columns: 1fr; gap: 32px; }

  #home {
    min-height: 400px;
  }
  .hero-left {
    max-width: 60%;
    padding: 40px 40px 40px 50px;
  }
}

/* ══════════════════════════════════════
   RESPONZIVITA – mobil 768px
══════════════════════════════════════ */
@media (max-width: 768px) {
  header {
    padding: 0 20px;
    height: 60px;
  }

  /* Mobilní nav */
  nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    border-bottom: 2px solid var(--gd);
    box-shadow: var(--shadow-lg);
    gap: 4px;
    z-index: 999;
  }
  nav.open { display: flex; }
  nav a {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-bottom: none;
    border-radius: 3px;
  }
  nav a:hover { background: var(--bg); }

  .hamburger { display: flex; }

  /* Hero mobil */
  #home {
    margin-top: 60px;
    min-height: 380px;
  }
  .hero-leaves { display: none; }
  .hero-gradient {
    background: linear-gradient(to bottom, rgba(245,240,228,0.92) 0%, rgba(245,240,228,0.55) 60%, transparent 100%),
                linear-gradient(to right, #F5F0E4 10%, rgba(245,240,228,0.5) 55%, transparent 85%);
  }
  .hero-left {
    max-width: 100%;
    min-height: 380px;
    padding: 32px 24px;
  }
  .hero-left h1 { font-size: 2rem; }
  .hero-circle-badge {
    width: 80px;
    height: 80px;
    font-size: 0.5rem;
    top: 12px;
    right: 12px;
  }
  .hero-desc { max-width: 100%; }

  /* Cat strip mobil */
  .cat-strip { padding: 24px 20px; }
  .cat-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Info strip mobil */
  .info-about  { padding: 32px 20px; }
  .info-why    { padding: 32px 20px; }
  .info-where  { padding: 32px 20px; }
  .why-icons   { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Sekce */
  section { padding: 48px 20px; }

  .news-grid          { grid-template-columns: 1fr; }
  .fb-posts-grid      { grid-template-columns: 1fr; }
  .product-categories { grid-template-columns: 1fr; }
  .app-features-grid  { grid-template-columns: 1fr 1fr; }
  .gifts-grid         { grid-template-columns: 1fr; }
  .contact-grid       { grid-template-columns: 1fr; }

  /* Klub */
  .form-row           { grid-template-columns: 1fr; }
  .club-form-wrap     { padding: 24px 20px; }
  .btn-club           { width: 100%; text-align: center; }
  .form-footer-row    { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Footer mobil */
  .footer-top {
    padding: 32px 24px 24px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom {
    padding: 12px 20px;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .cat-cards { grid-template-columns: 1fr; }
  .cat-card  { border-right: none; border-bottom: 1px solid var(--border); }
  .why-icons { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-badge-item { padding: 12px 12px 10px 0; }
  .hero-badge-item + .hero-badge-item { padding-left: 12px; }
}
