/* ZELENKA — zahrada a domov | roklncreffshop.net */
:root {
  --green: #5a7d2a;
  --green-dk: #46631f;
  --green-tint: #eef1e2;
  --sun: #e0992b;
  --terra: #c2562a;
  --bg: #f7f4ec;
  --surface: #fffdf8;
  --surface-2: #fbf8f1;
  --ink: #23291d;
  --muted: #6f7361;
  --line: #e7e2d4;
  --line-2: #efe9db;
  --font-head: "Bricolage Grotesque", sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --maxw: 1240px;
  --r: 16px;
  --r-sm: 11px;
  --pad-sec: 64px;
  --gap-grid: 24px;
  --shadow:
    0 1px 2px rgba(35, 41, 29, 0.05), 0 8px 24px -16px rgba(35, 41, 29, 0.18);
  --shadow-lg: 0 18px 50px -24px rgba(35, 41, 29, 0.32);
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  font-weight: 700;
}
a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
img,
svg {
  display: block;
}
::selection {
  background: var(--green);
  color: #fff;
}
.zl-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* buttons */
.zl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  padding: 13px 22px;
  transition: 0.18s;
  white-space: nowrap;
}
.zl-btn:hover {
  background: var(--green-dk);
  transform: translateY(-1px);
}
.zl-btn--lg {
  padding: 16px 28px;
  font-size: 17px;
}
.zl-btn--block {
  width: 100%;
}
.zl-btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.zl-btn--ghost:hover {
  background: #fff;
  border-color: var(--green);
  color: var(--green-dk);
}
.zl-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--green-dk);
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  font-size: 15px;
}
.zl-link:hover {
  color: var(--green);
}
.zl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-dk);
}
.zl-eyebrow--light {
  color: #fff;
}
.zl-eyebrow svg {
  color: var(--sun);
}

/* header */
.zl-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--surface);
  box-shadow: 0 1px 0 var(--line);
}
.zl-topbar {
  background: var(--green-dk);
  color: #eef3e2;
  font-size: 13.5px;
}
.zl-topbar-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}
.zl-topbar-msg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.zl-topbar-msg svg {
  opacity: 0.8;
}
.zl-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.zl-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.92;
}
.zl-topbar-link:hover {
  opacity: 1;
}
.zl-lang {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.zl-lang > svg {
  opacity: 0.7;
}
.zl-lang-btn {
  background: none;
  border: none;
  color: #cfdab6;
  font-weight: 600;
  font-size: 13px;
  padding: 3px 6px;
  border-radius: 6px;
}
.zl-lang-btn.is-on {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.zl-header-main {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.zl-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
  text-decoration: none;
}
.zl-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--green);
}
.zl-logo-word {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 23px;
  letter-spacing: 0.01em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}
.zl-logo-word em {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.zl-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  height: 48px;
  transition: 0.18s;
}
.zl-search:focus-within {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px var(--green-tint);
}
.zl-search svg {
  color: var(--muted);
  flex-shrink: 0;
}
.zl-search input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 15.5px;
  color: var(--ink);
}
.zl-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.zl-iconbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--ink);
  padding: 10px;
  border-radius: 10px;
  position: relative;
}
.zl-iconbtn:hover {
  background: var(--surface-2);
  color: var(--green-dk);
}
.zl-cartbtn {
  background: var(--green-tint);
  color: var(--green-dk);
  font-weight: 600;
  padding: 11px 16px;
}
.zl-cartbtn:hover {
  background: var(--green);
  color: #fff;
}
.zl-cartbtn-label {
  font-size: 15px;
}
.zl-nav {
  border-top: 1px solid var(--line-2);
  background: var(--surface);
}
.zl-nav-in {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 50px;
}
.zl-nav-link {
  background: none;
  border: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
  text-decoration: none;
}
.zl-nav-link:hover {
  background: var(--surface-2);
  color: var(--green-dk);
}
.zl-nav-link.is-on {
  color: var(--green-dk);
}
.zl-nav-link.is-on::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -1px;
  height: 2.5px;
  background: var(--green);
  border-radius: 2px;
}
.zl-nav-sale {
  color: var(--terra);
}
.zl-nav-sale:hover {
  color: #fff;
  background: var(--terra);
}
.zl-nav-spacer {
  flex: 1;
}
.zl-nav-help {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
}

/* hero */
.zl-hero h1 {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 800;
  max-width: 16ch;
  text-wrap: balance;
}
.zl-hero p {
  font-size: clamp(17px, 1.5vw, 20px);
  max-width: 48ch;
  margin: 18px 0 0;
}
.zl-hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.zl-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sun);
  color: #3a2a09;
  font-weight: 700;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.zl-hero--full {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.zl-hero--full .zl-hero-bg {
  position: absolute;
  inset: 0;
}
.zl-hero--full .zl-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zl-hero--full .zl-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(28, 40, 16, 0.82) 0%,
    rgba(28, 40, 16, 0.55) 48%,
    rgba(28, 40, 16, 0.12) 100%
  );
}
.zl-hero-full-in {
  position: relative;
  padding: 84px 24px 88px;
}
.zl-hero--full p {
  color: rgba(255, 255, 255, 0.92);
}
.zl-hero--full .zl-hero-pill {
  margin-top: 30px;
}
.zl-hero--full .zl-btn--ghost,
.zl-hero--full .zl-btn--ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

/* trust bar */
.zl-trust {
  background: var(--surface);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.zl-trust-in {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 20px 24px;
}
.zl-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.zl-trust-ic {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 11px;
  background: var(--green-tint);
  color: var(--green-dk);
  display: grid;
  place-items: center;
}
.zl-trust-tx {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.zl-trust-tx strong {
  font-size: 14.5px;
  font-weight: 700;
}
.zl-trust-tx em {
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
}

/* sections */
.zl-section {
  padding: var(--pad-sec) 0;
}
.zl-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.zl-section-head h2 {
  font-size: clamp(24px, 2.6vw, 33px);
}

/* category tiles */
.zl-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-grid);
}
.zl-cat-tile {
  position: relative;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
  transition: 0.2s;
  box-shadow: var(--shadow);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.zl-cat-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.zl-cat-tile img {
  width: 100%;
  display: block;
}
.zl-cat-tile-tx {
  display: block;
  padding: 18px 18px 20px;
}
.zl-cat-tile-tx strong {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  display: block;
}
.zl-cat-tile-tx em {
  font-style: normal;
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 5px;
  min-height: 2.6em;
}
.zl-cat-tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--green-dk);
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
}

/* product card */
.zl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-grid);
}
.zl-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: 0.18s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.zl-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: #d7d0bd;
}
.zl-card-media {
  position: relative;
  background: var(--surface-2);
}
.zl-card-media img {
  width: 100%;
  display: block;
}
.zl-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}
.zl-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}
.zl-badge--hit {
  background: var(--green);
  color: #fff;
}
.zl-badge--sale {
  background: var(--terra);
  color: #fff;
}
.zl-badge--new {
  background: var(--sun);
  color: #3a2a09;
}
.zl-card-body {
  padding: 15px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.zl-card-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  font-family: var(--font-body);
  letter-spacing: 0;
}
.zl-card-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
}
.zl-stars {
  display: inline-flex;
  gap: 1px;
}
.zl-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
}
.zl-price {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.zl-price strong {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
}
.zl-price s {
  color: var(--muted);
  font-size: 13px;
}
.zl-add {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-tint);
  color: var(--green-dk);
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 14px;
  transition: 0.16s;
}
.zl-add:hover {
  background: var(--green);
  color: #fff;
}

/* seasonal band */
.zl-season {
  background: linear-gradient(180deg, var(--surface-2), var(--bg));
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.zl-season-in {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  padding: var(--pad-sec) 24px;
  align-items: start;
}
.zl-season-copy h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 14px 0 12px;
}
.zl-season-copy p {
  color: var(--muted);
  margin: 0 0 22px;
}
.zl-season-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
}

/* story */
.zl-story {
  background: var(--green-dk);
  color: #f3f6ea;
}
.zl-story-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  padding: var(--pad-sec) 24px;
}
.zl-story-media img {
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  width: 100%;
  display: block;
}
.zl-story-tx .zl-eyebrow {
  color: #cfe09e;
}
.zl-story-tx h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin: 14px 0 16px;
  color: #fff;
}
.zl-story-tx p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 14px;
  max-width: 46ch;
}

/* footer */
.zl-footer {
  background: #1c2510;
  color: #dbe2cd;
  margin-top: 0;
}
.zl-footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding: 56px 24px 44px;
}
.zl-footer .zl-logo-word em {
  color: rgba(255, 255, 255, 0.6);
}
.zl-footer-brand p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14.5px;
  margin: 18px 0;
  max-width: 36ch;
}
.zl-footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  color: #cfe09e;
}
.zl-footer-col h4 {
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.zl-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.zl-footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
}
.zl-footer-col a:hover {
  color: #fff;
}
.zl-footer-news h4 {
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.zl-footer-news p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  margin: 0 0 14px;
}
.zl-news-form {
  display: flex;
  gap: 8px;
}
.zl-news-form input {
  flex: 1;
  font-family: inherit;
  font-size: 14.5px;
  padding: 11px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.zl-news-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.zl-news-form input:focus {
  outline: none;
  border-color: var(--sun);
}
.zl-news-form button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--sun);
  color: #3a2a09;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  padding: 0 16px;
  white-space: nowrap;
}
.zl-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.zl-footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}
.zl-footer-bottom a:hover {
  color: #fff;
}

/* cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  flex-wrap: wrap;
}
.cookie-banner p {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}
.cookie-banner a {
  color: var(--green-dk);
  text-decoration: underline;
}
.cookie-banner .zl-btn {
  font-size: 14px;
  padding: 10px 20px;
}

/* responsive */
@media (max-width: 1080px) {
  .zl-cat-grid,
  .zl-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .zl-cartbtn-label {
    display: none;
  }
  .zl-season-in {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .zl-season-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .zl-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 860px) {
  .zl-header-main {
    flex-wrap: wrap;
  }
  .zl-search {
    order: 3;
    flex-basis: 100%;
  }
  .zl-nav-in {
    overflow-x: auto;
  }
  .zl-story-in {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .zl-trust-in {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 620px) {
  body {
    font-size: 16px;
  }
  .zl-cat-grid,
  .zl-grid,
  .zl-season-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .zl-footer-top {
    grid-template-columns: 1fr;
  }
}
