/* KAVANA BEREK — glavni stylesheet */

:root {
  --bg: oklch(98% 0.012 75);
  --text: oklch(24% 0.03 50);
  --text-muted: oklch(40% 0.03 50);
  --text-muted2: oklch(35% 0.03 50);
  --text-muted3: oklch(45% 0.03 50);
  --accent: oklch(58% 0.14 45);
  --accent-strong: oklch(50% 0.1 45);
  --accent-deep: oklch(45% 0.13 45);
  --dark: oklch(24% 0.03 50);
  --dark-hover: oklch(30% 0.03 50);
  --surface: oklch(99% 0.005 75);
  --surface-alt: oklch(95% 0.018 70);
  --border: oklch(90% 0.015 70);
  --border-light: oklch(92% 0.015 70);
  --border-strong: oklch(85% 0.02 60);
  --green-bg: oklch(92% 0.05 130);
  --green-text: oklch(38% 0.07 135);
  --green-text2: oklch(35% 0.07 135);
  --green-text3: oklch(30% 0.06 130);
  --green-accent: oklch(52% 0.08 135);
  --green-accent-text: oklch(38% 0.08 135);
  --green-eyebrow: oklch(50% 0.08 135);
  --footer-bg: oklch(22% 0.028 50);
  --footer-text: oklch(88% 0.015 70);
  --footer-text-muted: oklch(75% 0.015 70);
  --footer-text-muted2: oklch(70% 0.015 70);
  --footer-border: oklch(35% 0.02 55);
  --footer-heading: oklch(80% 0.02 70);
  --white: oklch(99% 0.005 75);
  --danger: oklch(55% 0.1 30);
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: oklch(58% 0.14 45 / 0.25); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 1000px; margin: 0 auto; padding: 0 28px; }
.container-legal { max-width: 760px; margin: 0 auto; padding: 0 28px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: oklch(98% 0.012 75 / 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 28px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.brand-name { font-family: var(--font-serif); font-weight: 700; font-size: 19px; letter-spacing: 0.02em; }
.brand-sub { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted2); }

.main-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.main-nav a {
  background: none; border: none; cursor: pointer; font-family: var(--font-sans);
  font-size: 14.5px; padding: 9px 12px; border-radius: 8px; color: var(--text);
  text-decoration: none; display: inline-block;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { background: oklch(95% 0.02 70); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn {
  position: relative; background: var(--dark); color: var(--bg);
  border: none; border-radius: 999px; padding: 10px 18px; font-size: 14px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; gap: 8px; font-family: var(--font-sans);
}
.cart-btn:hover { background: var(--dark-hover); }
.cart-badge {
  background: var(--accent); color: white; border-radius: 999px; min-width: 20px; height: 20px;
  padding: 0 5px; font-size: 11.5px; display: flex; align-items: center; justify-content: center;
}
.nav-toggle { display: none; background: none; border: 1px solid var(--border-strong); border-radius: 8px; padding: 8px 12px; font-size: 20px; cursor: pointer; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 600; cursor: pointer;
  border-radius: 10px; padding: 14px 26px; border: none; text-decoration: none;
}
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: var(--dark-hover); }
.btn-outline { background: none; border: 2px solid var(--dark); color: var(--dark); padding: 12px 24px; }
.btn-outline:hover { background: oklch(95% 0.02 70); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-deep); }
.btn-outline-green { background: none; border: 2px solid var(--green-accent); color: var(--green-accent-text); padding: 11px 22px; font-size: 14.5px; }
.btn-outline-green:hover { background: var(--green-bg); }
.btn-small { padding: 9px 16px; border-radius: 8px; font-size: 13.5px; }

/* ---------- COOKIE CONSENT ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: var(--dark); color: var(--bg); padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.15);
}
.cookie-banner[hidden] { display: none; }
.cookie-text { font-size: 13.5px; max-width: 680px; }
.cookie-text a { color: oklch(80% 0.1 45); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-outline { background: none; border: 1px solid oklch(60% 0.02 50); color: var(--bg); padding: 9px 16px; border-radius: 8px; font-size: 13.5px; cursor: pointer; font-family: var(--font-sans); }
.cookie-btn-accept { background: var(--accent); border: none; color: white; padding: 9px 18px; border-radius: 8px; font-size: 13.5px; font-weight: 600; cursor: pointer; font-family: var(--font-sans); }

/* ---------- CART DRAWER ---------- */
.cart-overlay { position: fixed; inset: 0; background: rgba(20,14,8,0.4); z-index: 70; }
.cart-overlay[hidden] { display: none; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw);
  background: var(--surface); z-index: 71; box-shadow: -12px 0 40px rgba(0,0,0,0.18);
  display: flex; flex-direction: column; padding: 24px;
}
.cart-drawer[hidden] { display: none; }
.cart-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.cart-drawer-title { font-family: var(--font-serif); font-size: 22px; font-weight: 600; }
.cart-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text-muted2); }
.cart-empty-msg { color: var(--text-muted2); font-size: 14.5px; padding: 20px 0; }
.cart-empty-msg a { color: var(--accent); cursor: pointer; }
.cart-items { flex: 1; overflow: auto; display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: flex; gap: 12px; align-items: center; border-bottom: 1px solid var(--border-light); padding-bottom: 14px; }
.cart-item-thumb { width: 56px; height: 56px; border-radius: 10px; flex-shrink: 0; object-fit: cover; background: var(--border-light); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14.5px; font-weight: 600; }
.cart-item-price { font-size: 13px; color: var(--text-muted2); }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 24px; height: 24px; border-radius: 6px; border: 1px solid var(--border-strong); background: white; cursor: pointer; }
.cart-item-remove { background: none; border: none; color: var(--danger); cursor: pointer; font-size: 12.5px; margin-left: 6px; }
.cart-footer { border-top: 1px solid var(--border); padding-top: 16px; margin-top: 10px; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 16px; font-weight: 600; margin-bottom: 14px; }
.cart-checkout-btn { width: 100%; background: var(--accent); color: white; border: none; padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: var(--font-sans); text-decoration: none; display: block; text-align: center; }
.cart-note { font-size: 11.5px; color: var(--text-muted3); margin-top: 10px; text-align: center; }

/* ---------- HERO ---------- */
.hero {
  padding: 72px 28px 60px; max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
.hero-copy { animation: fadeUp 0.6s ease both; }
.eyebrow-pill {
  display: inline-block; background: var(--green-bg); color: var(--green-text);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.h1 { font-family: var(--font-serif); font-size: clamp(34px, 5vw, 54px); line-height: 1.1; margin: 0 0 20px; font-weight: 600; }
.hero-lead { font-size: 17px; color: var(--text-muted2); max-width: 520px; margin: 0 0 28px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media { height: 380px; border-radius: 22px; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- USP STRIP ---------- */
.usp-strip { background: var(--surface-alt); padding: 40px 28px; }
.usp-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.usp-item { text-align: center; }
.usp-icon {
  width: 48px; height: 48px; border-radius: 50%; background: oklch(58% 0.14 45 / 0.12);
  margin: 0 auto 12px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--accent); font-family: var(--font-serif); font-weight: 700;
}
.usp-title { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.usp-desc { font-size: 13px; color: var(--text-muted); }

/* ---------- SECTION HEADINGS ---------- */
.section { max-width: 1180px; margin: 0 auto; padding: 72px 28px; }
.section-head { text-align: center; margin-bottom: 44px; }
.eyebrow { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: oklch(55% 0.1 40); font-weight: 600; margin-bottom: 8px; }
.eyebrow-green { color: var(--green-eyebrow); }
.h2 { font-family: var(--font-serif); font-size: 34px; margin: 0; font-weight: 600; }
.h1-page { font-family: var(--font-serif); font-size: 40px; margin: 0 0 24px; font-weight: 600; }

/* ---------- OFFER CARDS ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.offer-card {
  cursor: pointer; border: 1px solid var(--border); border-radius: 16px; padding: 26px 20px;
  background: var(--surface); text-decoration: none; color: inherit; display: block; transition: border-color .15s, transform .15s;
}
.offer-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.offer-media { height: 110px; border-radius: 10px; margin-bottom: 16px; overflow: hidden; }
.offer-media img { width: 100%; height: 100%; object-fit: cover; }
.offer-title { font-family: var(--font-serif); font-weight: 600; font-size: 18px; margin-bottom: 6px; }
.offer-desc { font-size: 13.5px; color: var(--text-muted); }

/* ---------- TESTIMONIAL ---------- */
.testimonial-section { background: var(--dark); color: oklch(96% 0.01 75); padding: 64px 28px; }
.testimonial-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.testimonial-quote { font-family: var(--font-serif); font-style: italic; font-size: 26px; line-height: 1.4; margin-bottom: 20px; }
.testimonial-author { font-size: 14px; color: oklch(75% 0.02 70); }

/* ---------- SPLIT SECTIONS ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-media { border-radius: 20px; overflow: hidden; height: 320px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media-sm { height: 260px; }
.split-eyebrow { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.split-title { font-family: var(--font-serif); font-size: 30px; margin: 0 0 16px; font-weight: 600; }
.split-text { color: var(--text-muted2); margin: 0 0 20px; }
.split-list { margin: 0; padding-left: 20px; color: var(--text-muted2); font-size: 14.5px; }
.section-alt { background: var(--surface-alt); }
.py-64 { padding: 64px 28px; }

/* ---------- GALLERY ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.gallery-item { position: relative; aspect-ratio: 1; border-radius: 10px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 6px 8px; font-size: 10.5px;
  color: white; background: linear-gradient(transparent, rgba(0,0,0,0.55)); text-transform: capitalize;
}

/* ---------- SHOP CTA ---------- */
.shop-cta-wrap { padding: 60px 28px 80px; max-width: 1180px; margin: 0 auto; }
.shop-cta {
  background: var(--accent); border-radius: 24px; padding: 52px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; color: white;
}
.shop-cta-title { font-family: var(--font-serif); font-size: 26px; font-weight: 600; margin-bottom: 8px; }
.shop-cta-text { font-size: 14.5px; opacity: 0.9; }
.shop-cta .btn { background: white; color: var(--accent-deep); font-weight: 700; }

/* ---------- STATS / FEATURES ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.stat-card { text-align: center; padding: 22px; border: 1px solid var(--border); border-radius: 14px; }
.stat-num { font-family: var(--font-serif); font-size: 32px; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 13.5px; color: var(--text-muted); margin-top: 4px; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 32px 0; }
.feature-card { padding: 22px; border: 1px solid var(--border); border-radius: 14px; }
.feature-title { font-weight: 600; margin-bottom: 6px; }
.feature-desc { font-size: 14px; color: var(--text-muted); }

.legal-p { font-size: 16.5px; color: var(--text-muted2); margin: 0 0 18px; }
.legal-media { height: 300px; border-radius: 18px; margin-bottom: 32px; overflow: hidden; }
.legal-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- MENU ---------- */
.menu-intro { color: var(--text-muted); margin-top: 12px; }
.menu-group { margin-bottom: 44px; }
.menu-group-title { font-family: var(--font-serif); font-size: 24px; font-weight: 600; border-bottom: 2px solid var(--accent); display: inline-block; padding-bottom: 6px; margin-bottom: 20px; }
.menu-list { display: flex; flex-direction: column; gap: 2px; }
.menu-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 4px; border-bottom: 1px solid var(--border-light); }
.menu-item-name { font-weight: 600; font-size: 15.5px; }
.menu-item-desc { font-size: 13px; color: var(--text-muted3); margin-top: 2px; }
.menu-item-price { font-weight: 600; font-size: 15.5px; white-space: nowrap; color: var(--accent-strong); }
.menu-note { text-align: center; margin-top: 20px; padding: 24px; background: var(--surface-alt); border-radius: 14px; font-size: 14px; color: var(--text-muted); }

/* ---------- SHOP PRODUCTS ---------- */
.shop-lead { color: var(--text-muted); margin-top: 12px; max-width: 560px; margin-left: auto; margin-right: auto; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { border: 1px solid var(--border); border-radius: 16px; padding: 20px; background: var(--surface); display: flex; flex-direction: column; }
.product-media { height: 150px; border-radius: 10px; margin-bottom: 16px; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-name { font-family: var(--font-serif); font-weight: 600; font-size: 17px; margin-bottom: 6px; }
.product-desc { font-size: 13.5px; color: var(--text-muted); flex: 1; margin-bottom: 14px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-weight: 700; font-size: 17px; color: var(--accent-strong); }
.add-to-cart-btn { background: var(--dark); color: white; border: none; padding: 9px 16px; border-radius: 8px; font-size: 13.5px; font-weight: 600; cursor: pointer; font-family: var(--font-sans); }
.add-to-cart-btn:hover { background: var(--dark-hover); }
.shop-legal-note { margin-top: 44px; font-size: 13.5px; color: var(--text-muted3); text-align: center; }
.shop-legal-note a { color: var(--accent); }

/* ---------- CHECKOUT ---------- */
.checkout-section { background: var(--surface-alt); padding: 64px 28px; margin-top: 20px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.checkout-summary { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.checkout-line { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--border-light); }
.checkout-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 17px; padding-top: 14px; }

/* ---------- FORMS ---------- */
.field-col { display: flex; flex-direction: column; gap: 14px; }
.field-input, .field-select {
  padding: 13px 14px; border-radius: 10px; border: 1px solid var(--border-strong);
  font-size: 14.5px; font-family: inherit; width: 100%; background: white; color: var(--text);
}
textarea.field-input { resize: vertical; }
.field-checkbox { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: var(--text-muted3); }
.field-checkbox input { margin-top: 2px; }
.field-checkbox a { color: var(--accent); }
.form-msg { padding: 12px 16px; border-radius: 10px; font-size: 13.5px; margin-bottom: 4px; }
.form-msg-error { background: oklch(93% 0.05 25); color: oklch(40% 0.12 25); }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.contact-info-label { font-weight: 600; font-size: 14.5px; }
.contact-info-value { color: var(--text-muted); font-size: 14.5px; }
.map-box {
  height: 220px; border-radius: 16px; background: var(--surface-alt); border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  text-align: center; padding: 20px;
}
.map-box-text { font-size: 13.5px; color: var(--text-muted); }
.map-box a { color: var(--accent); font-weight: 600; font-size: 13.5px; text-decoration: underline; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 56px 28px 90px; margin-top: 20px; }
.footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-mark { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-weight: 700; font-size: 13px; }
.footer-brand-name { font-family: var(--font-serif); font-weight: 700; font-size: 17px; }
.footer-legal-text { font-size: 13px; color: var(--footer-text-muted2); line-height: 1.7; }
.footer-heading { font-weight: 600; font-size: 13.5px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--footer-heading); }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a, .footer-links button {
  color: var(--footer-text-muted); font-size: 13.5px; cursor: pointer; text-decoration: none;
  background: none; border: none; text-align: left; padding: 0; font-family: var(--font-sans);
}
.footer-links a:hover, .footer-links button:hover { color: oklch(90% 0.01 70); }
.footer-contact { font-size: 13.5px; color: var(--footer-text-muted); line-height: 1.9; }
.footer-bottom {
  max-width: 1180px; margin: 36px auto 0; border-top: 1px solid var(--footer-border); padding-top: 20px;
  font-size: 12px; color: var(--footer-text-muted2); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { height: 300px; order: -1; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split-media { height: 240px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .main-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 2px; order: 3; }
  .main-nav.open { display: flex; }
  .main-nav a { text-align: left; }
  .nav-toggle { display: inline-flex; }
  .site-header { position: static; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .shop-cta { flex-direction: column; align-items: flex-start; }
}
