:root {
  --cream: #F5EFE3;
  --ivory: #FBF7EF;
  --sage: #93A283;
  --sage-dk: #6E8062;
  --olive: #3F4A2E;
  --brown: #6B4630;
  --terracotta: #C05B34;
  --graphite: #2B2724;
  --burgundy: #7A2E36;
  --border: #E3D9C4;
  --font-serif: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  --font-sans: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  --font-mono: "Consolas", "SFMono-Regular", Menlo, monospace;
}

* { box-sizing: border-box; }
::selection { background: var(--terracotta); color: var(--ivory); }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--graphite);
  line-height: 1.55;
  font-size: 17px;
}

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

a { color: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- cookie banner ---------- */
.cookie-banner {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--olive);
  color: var(--ivory);
  padding: 14px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  font-size: 15px;
}
.cookie-banner a { color: var(--ivory); text-decoration: underline; }
.cookie-banner button {
  background: var(--terracotta);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.site-header .inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.brand {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  text-decoration: none;
}
.brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 19px;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--graphite);
  font-weight: 600;
}
.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.main-nav a {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--graphite);
  padding: 6px 2px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.main-nav a[aria-current="page"] { border-bottom-color: var(--terracotta); }
.cart-btn {
  position: relative;
  background: var(--graphite);
  color: var(--ivory);
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-badge {
  background: var(--terracotta);
  color: #fff;
  border-radius: 50%;
  min-width: 22px;
  height: 22px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  padding: 0 4px;
}
.cart-badge.show { display: flex; }

/* ---------- layout helpers ---------- */
main { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
section { padding: 56px 0; }
section.tight { padding: 56px 0 24px; }
section.tight-bottom { padding: 0 0 48px; }
.section-alt {
  background: var(--ivory);
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 16px;
}
.section-dark {
  background: var(--olive);
  color: var(--ivory);
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 16px;
}
.section-dark p { color: #D9CFBC; }

h1, h2, h3 { font-family: var(--font-serif); color: var(--graphite); margin: 0; }
.section-dark h2, .section-dark h3 { color: var(--ivory); }
h1 { font-size: 44px; margin-bottom: 12px; }
h2 { font-size: 38px; margin-bottom: 8px; }
.lede { font-size: 19px; color: var(--brown); max-width: 640px; margin: 0 0 32px; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--terracotta);
  text-transform: uppercase;
}

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 64px 0 56px;
}
.hero h1 { font-size: 56px; line-height: 1.1; margin: 16px 0 20px; }
.hero p.lede { font-size: 20px; max-width: 520px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-photo {
  aspect-ratio: 5/4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  border-radius: 8px;
  padding: 16px 30px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  text-align: center;
  font-family: var(--font-sans);
}
.btn-terracotta { background: var(--terracotta); color: #fff; }
.btn-outline-olive { background: transparent; color: var(--olive); border: 2px solid var(--olive); padding: 14px 28px; }
.btn-olive { background: var(--olive); color: var(--ivory); padding: 14px 28px; font-size: 16px; }
.btn-small { padding: 10px 18px; font-size: 15px; }

/* ---------- grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-cards { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-herbs { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-6 { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; }
.grid-articles { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-two { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; }
.grid-two-hero { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 40px; align-items: center; }

/* ---------- cards ---------- */
.card {
  text-align: left;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.card-photo { aspect-ratio: 4/3; border-bottom: 1px solid var(--border); overflow: hidden; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; }
.card-photo-square { aspect-ratio: 1/1; }
.card-photo-wide { aspect-ratio: 16/10; }
.card-body { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-body h3 { font-size: 21px; margin: 0 0 6px; }
.card-body p { font-size: 15px; color: var(--brown); margin: 0; }

.helper-card { border: 1px solid var(--border); border-radius: 10px; padding: 24px; background: var(--ivory); }
.helper-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 20px; color: var(--olive); margin-bottom: 14px;
}
.helper-card h3 { font-size: 21px; margin: 0 0 8px; }
.helper-card p { font-size: 16px; color: var(--brown); margin: 0; }

.herb-mini { background: var(--cream); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.herb-mini .card-photo { aspect-ratio: 1/1; }
.herb-mini .card-body { padding: 14px; gap: 4px; }
.herb-mini h3 { font-size: 19px; }
.herb-mini p { font-size: 14px; }

.ritual-step { text-align: center; }
.ritual-photo {
  aspect-ratio: 1/1; border-radius: 50%; overflow: hidden;
  margin: 0 auto 16px; max-width: 150px; border: 1px solid var(--border);
}
.ritual-photo img { width: 100%; height: 100%; object-fit: cover; }
.ritual-step h3 { font-size: 20px; margin: 0 0 8px; }
.ritual-step p { font-size: 15px; color: var(--brown); margin: 0; }

.journey-item .num { font-family: var(--font-mono); font-size: 13px; color: var(--sage); }
.journey-item h3 { font-size: 19px; margin: 6px 0 8px; }
.journey-item p { font-size: 14px; margin: 0; }

.product-card { border: 1px solid var(--border); border-radius: 10px; background: var(--ivory); overflow: hidden; display: flex; flex-direction: column; }
.product-card .card-body { padding: 18px; gap: 10px; }
.product-card h3 { font-size: 20px; margin: 0; }
.product-card p { font-size: 14px; color: var(--brown); margin: 0; }
.product-row { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-size: 19px; font-weight: 700; color: var(--graphite); }
.btn-add {
  background: var(--terracotta); color: #fff; border: none; border-radius: 8px;
  padding: 10px 16px; font-size: 15px; font-weight: 700; cursor: pointer;
}

/* filter pills */
.filters { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.filter-pill {
  border-radius: 24px; padding: 10px 20px; font-size: 15px; font-weight: 600; cursor: pointer;
  border: 2px solid var(--olive); background: transparent; color: var(--olive);
  font-family: var(--font-sans);
}
.filter-pill.active { background: var(--olive); color: var(--ivory); }

.tea-card, .herb-card, .culture-card, .season-card, .recipe-card, .tool-card {
  border: 1px solid var(--border); border-radius: 10px; background: var(--ivory); overflow: hidden;
}
.tea-card .card-body, .herb-card .card-body, .culture-card .card-body, .season-card .card-body, .recipe-card .card-body, .tool-card .card-body { padding: 20px; }
.tea-card .cat-tag { font-family: var(--font-mono); font-size: 12px; color: var(--terracotta); text-transform: uppercase; }
.tea-card h3, .herb-card h3, .culture-card h3, .season-card h3 { font-size: 22px; margin: 8px 0 8px; }
.tea-card p, .herb-card p, .culture-card p, .season-card p { font-size: 15px; color: var(--brown); margin: 0 0 10px; }
.tea-card .meta { font-size: 14px; margin: 0 0 4px; }
.herb-card .note { font-size: 14px; color: var(--olive); margin: 0; }

.recipe-card .card-body { display: flex; flex-direction: column; gap: 4px; }
.recipe-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.recipe-head h3 { font-size: 21px; margin: 0 0 10px; }
.recipe-time { font-size: 14px; color: var(--terracotta); white-space: nowrap; }
.recipe-card ul { font-size: 14px; color: var(--brown); margin: 0 0 12px; padding-left: 20px; }
.recipe-card .method { font-size: 14px; color: var(--brown); margin: 0; }

.tool-card .card-body, .lifestyle-card .card-body { padding: 18px; }
.tool-card h3, .lifestyle-card h3 { font-size: 20px; margin: 0 0 8px; }
.tool-card p, .lifestyle-card p { font-size: 14px; color: var(--brown); margin: 0; }
.lifestyle-card { border: 1px solid var(--border); border-radius: 10px; background: var(--ivory); overflow: hidden; }

.info-card { border: 1px solid var(--border); border-radius: 10px; padding: 24px; background: var(--ivory); }
.info-card h3 { font-size: 21px; margin: 0 0 10px; }
.info-card p { font-size: 15px; color: var(--brown); margin: 0; }

/* faq */
.faq-list { display: flex; flex-direction: column; gap: 16px; max-width: 760px; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; padding: 22px; background: var(--ivory); }
.faq-item summary { font-family: var(--font-serif); font-size: 19px; cursor: pointer; color: var(--graphite); }
.faq-item p { font-size: 16px; color: var(--brown); margin: 10px 0 0; }

/* about / contact */
.about-photo, .kontakt-photo {
  aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; border: 1px solid var(--border);
}
.about-photo img, .kontakt-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text p { font-size: 18px; margin: 0 0 16px; }
.contact-card { border: 1px solid var(--border); border-radius: 10px; padding: 28px; background: var(--ivory); }
.contact-card h2 { font-size: 24px; margin: 0 0 16px; }
.contact-card p { font-size: 16px; margin: 0 0 4px; }
.contact-card p.gap { margin-bottom: 16px; }
.kontakt-photo {
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px;
  background: var(--cream); text-align: center; padding: 24px; position: relative;
}
.kontakt-photo .pin { font-size: 32px; color: var(--terracotta); }
.kontakt-photo a { color: var(--olive); font-weight: 700; text-decoration: underline; font-size: 15px; }

/* legal */
.legal { max-width: 760px; }
.legal p { font-size: 16px; color: var(--brown); }

/* cart */
.cart-line {
  display: flex; align-items: center; gap: 16px; border: 1px solid var(--border);
  border-radius: 10px; padding: 16px; background: var(--ivory);
}
.cart-line .info { flex: 1; }
.cart-line h3 { font-size: 19px; margin: 0 0 4px; }
.cart-line p { font-size: 14px; color: var(--brown); margin: 0; }
.qty-group { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 34px; height: 34px; border-radius: 6px; border: 1px solid var(--border);
  background: var(--cream); font-size: 18px; cursor: pointer;
}
.line-total { font-size: 17px; font-weight: 700; min-width: 80px; text-align: right; }
.remove-btn { background: none; border: none; color: var(--burgundy); font-size: 14px; cursor: pointer; text-decoration: underline; }
.cart-summary {
  display: flex; justify-content: flex-end; align-items: center; gap: 16px; padding-top: 12px;
  border-top: 1px solid var(--border); margin-top: 16px;
}
.cart-summary .total { font-size: 20px; font-weight: 700; }
.cart-empty { font-size: 18px; color: var(--brown); }

/* cart drawer */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(43,39,36,0.45); z-index: 80; display: none;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: -420px; height: 100%; width: min(400px, 100%);
  background: var(--ivory); z-index: 90; box-shadow: -8px 0 24px rgba(0,0,0,.15);
  padding: 28px; overflow-y: auto; display: flex; flex-direction: column; transition: right .25s ease;
}
.cart-drawer.open { right: 0; }
.cart-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.cart-drawer-head h2 { font-size: 24px; }
.cart-drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--graphite); }
.drawer-line { border-bottom: 1px solid var(--border); padding-bottom: 12px; margin-bottom: 14px; }
.drawer-line-top { display: flex; justify-content: space-between; gap: 10px; }
.drawer-line-top span:first-child { font-size: 16px; font-weight: 600; }
.drawer-line-top span:last-child { font-size: 15px; }
.drawer-line-actions { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.drawer-qty-btn { width: 28px; height: 28px; border-radius: 6px; border: 1px solid var(--border); background: var(--cream); cursor: pointer; }
.drawer-remove { margin-left: auto; background: none; border: none; color: var(--burgundy); font-size: 13px; cursor: pointer; text-decoration: underline; }
.drawer-summary { border-top: 1px solid var(--border); padding-top: 16px; margin-top: 16px; }
.drawer-summary-row { display: flex; justify-content: space-between; font-size: 17px; font-weight: 700; margin-bottom: 14px; }
.drawer-summary .btn { width: 100%; padding: 14px; }

/* checkout form */
.checkout-form { display: flex; flex-direction: column; gap: 14px; max-width: 640px; }
.checkout-form label { font-size: 15px; font-weight: 600; }
.checkout-form input, .checkout-form textarea {
  display: block; width: 100%; margin-top: 6px; padding: 12px 14px; font-size: 16px;
  border: 1px solid var(--border); border-radius: 8px; background: var(--ivory); font-family: var(--font-sans);
}
.checkout-form .hint { font-size: 15px; color: var(--brown); margin: 8px 0 0; }
.checkout-summary { border: 1px solid var(--border); border-radius: 10px; padding: 18px; background: var(--ivory); margin-bottom: 18px; font-size: 15px; }
.checkout-summary .row { display: flex; justify-content: space-between; padding: 4px 0; }
.form-note { font-size: 13px; color: var(--brown); margin: 4px 0 0; }
.form-error { color: var(--burgundy); font-size: 14px; margin: 0; display: none; }
.form-error.show { display: block; }

/* footer */
.site-footer { background: var(--olive); color: var(--ivory); margin-top: 40px; padding: 56px 24px 32px; }
.site-footer .inner { max-width: 1240px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-bottom: 40px; }
.footer-grid h3 { font-size: 24px; margin: 0 0 8px; color: var(--ivory); }
.footer-grid .claim { font-size: 15px; color: var(--sage); margin: 0; }
.footer-grid h4 { font-size: 15px; text-transform: uppercase; letter-spacing: .05em; color: var(--sage); margin: 0 0 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--ivory); text-align: left; padding: 0; font-size: 15px; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(251,247,239,0.2); padding-top: 24px; font-size: 14px; color: var(--sage); }
.footer-bottom p { margin: 0 0 4px; }

.italic-note { font-size: 14px; color: var(--brown); margin-top: 24px; font-style: italic; }

/* thank you */
.thanks { padding: 80px 0; text-align: center; }
.thanks h1 { font-size: 38px; margin: 0 0 16px; }
.thanks p { font-size: 18px; color: var(--brown); max-width: 520px; margin: 0 auto 28px; }

@media (max-width: 860px) {
  .hero, .grid-two, .grid-two-hero { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  .site-header .inner { gap: 12px; }
  .main-nav { gap: 14px; order: 3; width: 100%; justify-content: flex-start; }
}

@media (max-width: 520px) {
  main, .container { padding: 0 16px; }
  .site-header { padding: 12px 16px; }
  .cart-drawer { padding: 20px; }
}
