/* Goras Bumba — domáca aromatizácia. Design tokens follow the approved Claude Design project 1:1. */
:root {
  --ink: #3B2E22;
  --ink-soft: #4A3B2C;
  --muted: #6B5842;
  --muted-soft: #A6957E;
  --gold: #B08D57;
  --gold-dark: #8C6D3F;
  --bg: #FAF6EF;
  --tan: #EDE1D0;
  --tan-border: #E3D4BC;
  --tan-border-2: #DFCBAE;
  --footer-bg: #3B2E22;
  --footer-text: #D8C9B5;
  --footer-muted: #B8A88F;
  --footer-border: #55452F;
  --footer-copy: #8C7B62;
  --white: #ffffff;
  --font-serif: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Times New Roman', serif;
  --font-sans: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-dark); text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; margin: 0; }
p { margin: 0; }
input, textarea, select, button { font-family: var(--font-sans); }
input::placeholder, textarea::placeholder { color: var(--muted-soft); }
button { font-family: var(--font-sans); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Announcement bar */
.announce {
  background: var(--ink);
  color: #EDE1D0;
  font-size: 13px;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.02em;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 246, 239, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--tan-border);
}
.site-header .wrap {
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: baseline; gap: 8px; cursor: pointer; }
.brand-name { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--ink); }
.brand-tag { font-size: 11px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
.main-nav { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.main-nav a { font-size: 14px; font-weight: 600; color: var(--muted); }
.main-nav a:hover { text-decoration: none; color: var(--ink); }
.main-nav a.active { font-weight: 800; color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.cart-pill {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--tan);
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.cart-pill:hover { text-decoration: none; }
.cart-dot { width: 8px; height: 8px; border-radius: 2px; background: var(--gold); display: inline-block; }
.cart-count { font-size: 13px; color: var(--muted); font-weight: 600; }
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--ink);
}

main { flex: 1; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 28px;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: #2c2119; color: var(--bg); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-sm { padding: 9px 14px; font-size: 13px; border-radius: 999px; background: var(--ink); color: #fff; border: none; font-weight: 700; cursor: pointer; }
.btn-sm:hover { background: #2c2119; text-decoration: none; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.hero h1 { font-size: 56px; line-height: 1.08; margin: 0 0 20px; }
.hero p { font-size: 17px; line-height: 1.7; color: var(--muted); max-width: 480px; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media, .media-box {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background: var(--tan);
}
.hero-media img, .media-box img { width: 100%; height: 100%; object-fit: cover; }

/* Trust strip */
.trust-strip { background: var(--tan); border-top: 1px solid var(--tan-border-2); border-bottom: 1px solid var(--tan-border-2); }
.trust-grid { padding: 30px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.trust-item span.label { font-size: 14px; font-weight: 600; color: var(--ink); }

/* Section headings */
.section { padding: 70px 24px 20px; }
.section-tight { padding: 60px 24px 20px; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 32px; flex-wrap: wrap; gap: 10px; }
.section h2 { font-size: 36px; }
.section-lead { color: var(--muted); font-size: 15px; margin: 8px 0 32px; }
.link-strong { cursor: pointer; font-weight: 700; color: var(--gold); }

/* Grids */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

/* Category cards */
.category-card { cursor: pointer; background: #fff; border: 1px solid var(--tan-border); border-radius: 16px; overflow: hidden; text-decoration: none; color: var(--ink); display: block; }
.category-card:hover { text-decoration: none; border-color: var(--gold); }
.category-thumb { width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--tan); }
.category-thumb img { width: 100%; height: 100%; object-fit: cover; }
.category-card-label { padding: 16px; font-weight: 700; font-size: 15px; }

/* Product cards */
.product-card { background: #fff; border: 1px solid var(--tan-border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.product-thumb { display: block; width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--tan); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); font-weight: 700; }
.product-name { font-weight: 700; font-size: 16px; color: var(--ink); text-decoration: none; }
.product-name:hover { text-decoration: underline; }
.product-short { font-size: 14px; color: var(--muted); flex: 1; }
.product-row { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.product-price { font-weight: 800; font-size: 16px; }
.add-feedback { font-size: 12px; color: var(--gold-dark); font-weight: 700; }

/* About teaser / split blocks */
.split-block { background: var(--tan); margin-top: 70px; }
.split-inner { padding: 60px 24px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.split-media { width: 100%; aspect-ratio: 4/3; border-radius: 20px; overflow: hidden; background: var(--tan-border-2); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* Article / blog cards */
.article-card { cursor: pointer; background: #fff; border: 1px solid var(--tan-border); border-radius: 16px; overflow: hidden; text-decoration: none; color: var(--ink); display: block; }
.article-card:hover { text-decoration: none; }
.article-thumb { width: 100%; aspect-ratio: 16/10; overflow: hidden; background: var(--tan); }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-body { padding: 18px; }
.article-meta { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); font-weight: 700; }
.article-title { font-weight: 700; font-size: 17px; margin: 8px 0 6px; font-family: var(--font-serif); color: var(--ink); }
.article-excerpt { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Newsletter CTA */
.newsletter { max-width: var(--max); margin: 70px auto 0; padding: 0 24px; }
.newsletter-box {
  background: var(--ink);
  border-radius: 24px;
  padding: 52px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--bg);
}
.newsletter-box h3 { font-size: 28px; margin: 0 0 8px; color: var(--bg); }
.newsletter-box p { margin: 0; color: #D8C9B5; font-size: 14px; max-width: 420px; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input { padding: 14px 18px; border-radius: 999px; border: none; font-size: 14px; width: 230px; }
.newsletter-form button { background: var(--gold); color: var(--ink); border: none; padding: 14px 24px; border-radius: 999px; font-size: 14px; font-weight: 800; cursor: pointer; }
.newsletter-success { color: var(--bg); font-weight: 700; }

/* Generic page header */
.page-crumb { font-size: 13px; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.page-title { font-size: 42px; margin: 0 0 8px; }
.page-lead { color: var(--muted); font-size: 15px; margin: 0 0 30px; }
.back-link { font-size: 13px; color: var(--gold); font-weight: 700; margin-bottom: 20px; cursor: pointer; display: inline-block; }

/* Filters */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.filter-btn { padding: 11px 20px; border-radius: 999px; border: 1px solid var(--tan-border-2); background: #fff; color: var(--ink); font-size: 13px; font-weight: 700; cursor: pointer; }
.filter-btn.active { border-color: var(--ink); background: var(--ink); color: var(--bg); }

/* Product detail */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.product-gallery { width: 100%; aspect-ratio: 1; border-radius: 20px; overflow: hidden; background: var(--tan); }
.product-gallery img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-cat { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 700; }
.product-detail h1 { font-size: 38px; margin: 10px 0 12px; }
.product-detail-price { font-size: 26px; font-weight: 800; margin-bottom: 16px; }
.product-scent { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.product-long { font-size: 15px; line-height: 1.8; color: var(--muted); margin: 0 0 26px; }
.product-perks { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--tan-border); display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--muted); }
.related-heading { font-size: 28px; margin: 0 0 24px; }
.related-block { margin-top: 70px; }
.related-card { background: #fff; border: 1px solid var(--tan-border); border-radius: 16px; overflow: hidden; text-decoration: none; color: var(--ink); display: block; }
.related-card:hover { text-decoration: none; }
.related-thumb { width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--tan); }
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-body { padding: 14px; }
.related-name { font-weight: 700; font-size: 15px; }
.related-price { font-weight: 800; font-size: 15px; margin-top: 6px; }

/* Cart */
.cart-empty { text-align: center; padding: 60px 20px; background: #fff; border: 1px solid var(--tan-border); border-radius: 16px; }
.cart-empty p { color: var(--muted); font-size: 16px; margin: 0 0 20px; }
.cart-list { display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--tan-border); border-radius: 14px; padding: 14px; flex-wrap: wrap; }
.cart-item-thumb { width: 70px; height: 70px; flex-shrink: 0; border-radius: 10px; overflow: hidden; background: var(--tan); }
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 140px; }
.cart-item-name { font-weight: 700; font-size: 15px; }
.cart-item-price { font-size: 13px; color: var(--muted); }
.qty-control { display: flex; align-items: center; gap: 10px; background: var(--tan); border-radius: 999px; padding: 6px 10px; }
.qty-control button { cursor: pointer; font-weight: 800; width: 22px; height: 22px; text-align: center; border: none; background: transparent; color: var(--ink); font-size: 15px; }
.qty-value { font-weight: 700; min-width: 16px; text-align: center; }
.cart-item-subtotal { font-weight: 800; width: 70px; text-align: right; }
.cart-item-remove { cursor: pointer; color: var(--muted-soft); font-size: 13px; background: none; border: none; }
.cart-summary { display: flex; justify-content: flex-end; margin-top: 26px; }
.cart-summary-box { width: 280px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 8px; color: var(--muted); }

/* Forms */
.form-col { display: flex; flex-direction: column; gap: 12px; }
.field {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--tan-border-2);
  font-size: 14px;
  background: #fff;
  color: var(--ink);
  width: 100%;
}
.field:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.field-row { display: flex; gap: 12px; }
.field-row .field.city { flex: 1; }
.field-row .field.zip { width: 110px; flex: none; }
.payment-options { display: flex; gap: 10px; flex-wrap: wrap; }
.payment-chip { padding: 10px 16px; border-radius: 999px; border: 1px solid var(--tan-border-2); font-size: 13px; font-weight: 600; background: #fff; color: var(--ink); cursor: pointer; }
.payment-chip.selected { border-color: var(--gold); background: var(--tan); }
.checkout-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 17px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--tan-border); }
.form-note { font-size: 12px; color: var(--muted-soft); text-align: center; margin-top: 6px; }
.form-error { font-size: 13px; color: #a3372c; margin-top: -4px; }

/* Success state */
.success-box { text-align: center; padding: 60px 20px; background: #fff; border: 1px solid var(--tan-border); border-radius: 16px; }
.success-box h1 { font-size: 32px; margin: 0 0 14px; }
.success-box p { color: var(--muted); font-size: 15px; margin: 0 0 24px; }

/* Value cards (about) */
.value-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 44px 0; }
.value-card { background: var(--tan); border-radius: 16px; padding: 26px; }
.value-card-title { font-family: var(--font-serif); font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.value-card-text { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Long-form text pages */
.prose { max-width: 760px; }
.prose h1 { font-size: 38px; margin: 0 0 24px; }
.prose h2 { font-size: 22px; margin: 26px 0 12px; }
.prose p { font-size: 15px; line-height: 1.85; color: var(--ink-soft); margin: 0 0 18px; }
.prose ul { font-size: 15px; line-height: 1.9; color: var(--muted); padding-left: 20px; margin: 0; }
.prose .updated { font-size: 14px; color: var(--muted-soft); margin: 0 0 24px; }

/* Delivery table */
.delivery-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.delivery-row { display: flex; justify-content: space-between; padding: 14px 18px; background: #fff; border: 1px solid var(--tan-border); border-radius: 12px; font-size: 14px; }
.delivery-row.highlight { background: var(--tan); border: none; font-weight: 700; }

/* FAQ */
.faq-item { padding: 20px 0; border-bottom: 1px solid var(--tan-border); }
.faq-q { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Cookies list */
.cookie-types { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.cookie-type { padding: 16px 18px; background: #fff; border: 1px solid var(--tan-border); border-radius: 12px; }
.cookie-type-desc { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Impressum */
.impressum-list { display: flex; flex-direction: column; gap: 14px; font-size: 15px; color: var(--ink-soft); }

/* Article page */
.article-hero { width: 100%; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; background: var(--tan); margin-bottom: 30px; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-page-body p { font-size: 16px; line-height: 1.85; color: var(--ink-soft); margin: 0 0 18px; }
.article-related { margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--tan-border); }
.article-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.article-related-card { cursor: pointer; background: #fff; border: 1px solid var(--tan-border); border-radius: 14px; padding: 16px; text-decoration: none; color: var(--ink); display: block; }
.article-related-card:hover { text-decoration: none; }
.article-related-cat { font-size: 11px; color: var(--gold); font-weight: 700; text-transform: uppercase; }
.article-related-title { font-weight: 700; font-size: 15px; margin-top: 6px; }

/* Contact */
.contact-info { display: flex; flex-direction: column; gap: 16px; font-size: 15px; color: var(--ink-soft); margin-bottom: 30px; }
.contact-media { width: 100%; aspect-ratio: 4/3; border-radius: 16px; overflow: hidden; background: var(--tan); position: relative; }
.contact-media img { width: 100%; height: 100%; object-fit: cover; }
.contact-media .map-badge { position: absolute; left: 12px; bottom: 12px; background: rgba(59,46,34,0.85); color: #fff; font-size: 12px; padding: 8px 12px; border-radius: 8px; }

/* Footer */
.site-footer { background: var(--footer-bg); color: var(--footer-text); margin-top: auto; }
.footer-grid { padding: 56px 24px 30px; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.footer-brand { font-family: var(--font-serif); font-size: 24px; color: var(--bg); font-weight: 700; margin-bottom: 10px; }
.footer-desc { font-size: 13px; line-height: 1.7; color: var(--footer-muted); max-width: 260px; }
.footer-col-title { font-weight: 700; color: var(--bg); font-size: 14px; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--footer-muted); }
.footer-links a:hover { color: var(--bg); }
.footer-bottom { border-top: 1px solid var(--footer-border); padding: 20px 24px; text-align: center; font-size: 12px; color: var(--footer-copy); }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--ink); color: var(--tan);
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
  z-index: 60;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner span { font-size: 13px; max-width: 600px; }
.cookie-banner button { background: var(--gold); color: var(--ink); border: none; padding: 11px 22px; border-radius: 999px; font-size: 13px; font-weight: 800; cursor: pointer; white-space: nowrap; }

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 12px; top: 12px; }

/* Responsive */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-media { order: -1; aspect-ratio: 16/10; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; gap: 28px; }
  .split-inner { grid-template-columns: 1fr; }
  .split-media { order: -1; aspect-ratio: 16/10; }
  .product-detail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .main-nav { display: none; width: 100%; order: 3; flex-direction: column; gap: 4px; padding-top: 10px; border-top: 1px solid var(--tan-border); }
  .main-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .hero h1 { font-size: 38px; }
  .section h2, .page-title { font-size: 28px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .article-related-grid { grid-template-columns: 1fr; }
  .value-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-box { padding: 36px 24px; }
  .newsletter-form input { width: 100%; }
  .newsletter-form { width: 100%; }
  .newsletter-form button { flex: 1; }
}
@media (max-width: 520px) {
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cart-item { justify-content: space-between; }
  .cart-summary { justify-content: stretch; }
  .cart-summary-box { width: 100%; }
}
