/* Praonica Sara - shared stylesheet */
:root {
  --bg: oklch(98% 0.004 95);
  --section-bg: oklch(95% 0.01 95);
  --text: oklch(20% 0.02 260);
  --text-muted: oklch(45% 0.02 260);
  --text-muted-2: oklch(48% 0.02 260);
  --border: oklch(90% 0.01 95);
  --dark: oklch(22% 0.02 260);
  --primary: oklch(58% 0.13 210);
  --primary-dark: oklch(42% 0.11 210);
  --primary-darker: oklch(38% 0.1 210);
  --tag-bg: oklch(93% 0.03 210);
  --tag-bg-green: oklch(95% 0.03 150);
  --tag-text-green: oklch(38% 0.1 150);
  --font-heading: 'Sora', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Work Sans', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}
a { color: var(--primary); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-heading); }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 1000px; margin: 0 auto; padding: 0 32px; }
.wrap-legal { max-width: 760px; margin: 0 auto; padding: 56px 32px 80px; }

.tag {
  display: inline-block;
  background: var(--tag-bg);
  color: var(--primary-darker);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.tag-green { background: var(--tag-bg-green); color: var(--tag-text-green); }

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--text); border-color: oklch(88% 0.01 95); }
.btn-outline:hover { color: var(--primary); border-color: var(--primary); }
.btn-white { background: #fff; color: var(--primary-dark); }
.btn-white:hover { background: oklch(94% 0.01 95); }
.btn-sm { padding: 11px 22px; font-size: 13.5px; border-radius: 9px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(98% 0.004 95 / 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 11px; background: var(--primary);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-family: var(--font-heading); font-weight: 800; font-size: 17px; flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-heading); font-weight: 700; font-size: 19px; color: var(--text); }
.brand-sub { font-size: 11px; letter-spacing: .06em; color: var(--text-muted-2); text-transform: uppercase; }

.nav { display: flex; gap: 26px; align-items: center; }
.nav-link { text-decoration: none; color: oklch(30% 0.02 260); font-size: 15px; padding: 4px 2px; }
.nav-link:hover { color: var(--primary); }
.nav-link.is-active { color: var(--primary); font-weight: 700; }
.nav-cta { text-decoration: none; background: var(--primary); color: #fff; padding: 10px 18px; border-radius: 9px; font-weight: 600; font-size: 14px; }
.nav-cta:hover { background: var(--primary-dark); color: #fff; }
.burger { display: none; }

@media (max-width: 860px) {
  .nav { display: none !important; }
  .burger {
    display: flex !important; align-items: center; gap: 8px; text-decoration: none;
    color: var(--text); font-weight: 600; font-size: 14px; background: var(--section-bg);
    padding: 9px 14px; border-radius: 8px;
  }
}

/* Footer */
.site-footer { font-family: var(--font-body); background: var(--dark); color: oklch(85% 0.01 95); padding: 56px 32px 0; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-mark { width: 38px; height: 38px; border-radius: 10px; background: var(--primary); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-heading); font-weight: 800; font-size: 15px; }
.footer-brand-name { font-family: var(--font-heading); font-weight: 700; font-size: 18px; color: #fff; }
.footer-col-title { font-family: var(--font-heading); font-weight: 700; color: #fff; font-size: 14px; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { color: oklch(85% 0.01 95); text-decoration: none; font-size: 14px; }
.footer-link:hover { color: #fff; }
.footer-bottom { max-width: 1200px; margin: 40px auto 0; border-top: 1px solid oklch(35% 0.02 260); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12.5px; color: oklch(65% 0.01 95); }
.footer-social { display: flex; gap: 10px; }
.footer-social span { width: 32px; height: 32px; border-radius: 50%; background: oklch(32% 0.02 260); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; font-weight: 700; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--dark); color: #fff; padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; box-shadow: 0 -6px 24px rgba(0,0,0,.15);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: 13.5px; line-height: 1.6; max-width: 720px; color: oklch(88% 0.01 95); }
.cookie-banner a { color: oklch(75% 0.1 210); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-decline { background: transparent; border: 1px solid oklch(45% 0.02 260); color: oklch(85% 0.01 95); padding: 10px 18px; border-radius: 8px; font-size: 13.5px; font-weight: 600; cursor: pointer; }
.cookie-accept { background: var(--primary); border: none; color: #fff; padding: 10px 20px; border-radius: 8px; font-size: 13.5px; font-weight: 600; cursor: pointer; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Cards */
.card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.card-link { text-decoration: none; color: inherit; border: 1px solid var(--border); border-radius: 14px; padding: 26px 22px; display: block; background: #fff; }
.feature-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feature-title { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.feature-text, .card-text { font-size: 13.5px; color: var(--text-muted-2); line-height: 1.6; }
.card-title { font-family: var(--font-heading); font-weight: 700; font-size: 16px; margin-bottom: 8px; color: var(--text); }

/* Photo frames */
.photo { border-radius: 20px; overflow: hidden; }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-16-9 { aspect-ratio: 16 / 9; }
.photo-4-3 { aspect-ratio: 4 / 3; }
.photo-1-1 { aspect-ratio: 1 / 1; border-radius: 50%; }

/* Stats */
.stats { display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap; }
.stat-num { font-family: var(--font-heading); font-weight: 800; font-size: 26px; }
.stat-label { font-size: 13px; color: var(--text-muted-2); }

/* Steps */
.steps-section { background: var(--dark); padding: 64px 32px; }
.step { text-align: center; }
.step-num { width: 38px; height: 38px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 14px; }
.step-title { color: #fff; font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.step-text { color: oklch(70% 0.01 95); font-size: 13px; line-height: 1.6; }

/* Testimonials */
.testimonial { background: var(--section-bg); border-radius: 14px; padding: 26px; }
.stars { color: oklch(55% 0.13 40); font-size: 14px; margin-bottom: 12px; }
.testimonial p { font-size: 14px; line-height: 1.7; color: oklch(30% 0.02 260); margin: 0 0 14px; }
.testimonial-author { font-weight: 600; font-size: 13.5px; }

/* CTA banner */
.cta-banner { background: var(--primary); padding: 56px 32px; }
.cta-banner-row { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.cta-banner h2 { color: #fff; font-weight: 800; font-size: 26px; margin: 0 0 8px; }
.cta-banner p { color: oklch(94% 0.02 210); font-size: 14.5px; margin: 0; }

/* Forms */
.form { display: flex; flex-direction: column; gap: 12px; }
.form input[type="text"], .form input[type="email"], .form input[type="tel"], .form textarea {
  padding: 11px 14px; border: 1px solid oklch(85% 0.01 95); border-radius: 8px; font-size: 14px; font-family: inherit; width: 100%;
}
.form textarea { min-height: 110px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--text-muted-2); line-height: 1.5; }
.form-check input { margin-top: 2px; }
.form-msg { border-radius: 10px; padding: 12px 16px; font-size: 13.5px; margin-bottom: 14px; }
.form-msg-ok { background: oklch(93% 0.05 150); color: oklch(30% 0.1 150); }
.form-msg-err { background: oklch(93% 0.05 25); color: oklch(35% 0.13 25); }

/* Info cards (contact) */
.info-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.info-card-title { font-family: var(--font-heading); font-weight: 700; font-size: 14.5px; margin-bottom: 6px; }
.hours-row { font-size: 13.5px; color: var(--text-muted); display: flex; justify-content: space-between; padding: 4px 0; }
.hours-row.split { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 8px; }

/* Table (cjenik) */
.price-table-wrap { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table td, .price-table th { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.price-table th { font-family: var(--font-heading); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); }
.price-table tr:last-child td { border-bottom: none; }

/* Legal pages */
.lp h1 { font-family: var(--font-heading); font-weight: 800; font-size: 30px; margin: 0 0 8px; }
.lp .lp-updated { color: var(--text-muted-2); font-size: 13px; }
.lp h2 { font-family: var(--font-heading); font-weight: 700; font-size: 19px; margin: 30px 0 10px; }
.lp p, .lp li { font-size: 14.5px; line-height: 1.8; color: oklch(35% 0.02 260); }
.lp .impresum-box { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 26px 30px; }
.lp table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.lp td, .lp th { border-bottom: 1px solid var(--border); padding: 10px 12px; font-size: 13.5px; text-align: left; }

/* FAQ */
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; }
.faq-q { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.faq-a { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Blog */
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.blog-card .photo { border-radius: 0; }
.blog-card-body { padding: 20px; }
.blog-meta { font-size: 11.5px; color: var(--text-muted-2); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.blog-title { font-family: var(--font-heading); font-weight: 700; font-size: 16px; margin-bottom: 10px; }
.blog-excerpt { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* Shop */
.shop-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }
.product-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.product-photo { width: 100%; height: 110px; border-radius: 10px; overflow: hidden; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-name { font-family: var(--font-heading); font-weight: 700; font-size: 14.5px; }
.product-desc { font-size: 13px; color: var(--text-muted-2); line-height: 1.5; flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.product-price { font-family: var(--font-heading); font-weight: 800; font-size: 16px; }
.product-add { background: var(--primary); color: #fff; border: none; padding: 9px 16px; border-radius: 8px; font-weight: 600; font-size: 13px; cursor: pointer; }
.product-add:hover { background: var(--primary-dark); }

.cart-panel { position: sticky; top: 96px; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 22px; }
.cart-title { font-family: var(--font-heading); font-weight: 700; font-size: 16px; margin-bottom: 14px; }
.cart-empty { font-size: 13.5px; color: var(--text-muted); }
.cart-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.cart-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.cart-row-name { font-size: 13px; font-weight: 600; }
.cart-row-unit { font-size: 12px; color: var(--text-muted); }
.qty-controls { display: flex; align-items: center; gap: 6px; }
.qty-btn { width: 26px; height: 26px; border-radius: 6px; border: 1px solid oklch(85% 0.01 95); background: #fff; cursor: pointer; font-size: 14px; color: oklch(30% 0.02 260); }
.cart-row-line { font-size: 13px; font-weight: 700; width: 60px; text-align: right; }
.cart-remove { border: none; background: none; color: oklch(55% 0.15 25); cursor: pointer; font-size: 12px; }
.cart-total { border-top: 1px solid var(--border); padding-top: 14px; display: flex; justify-content: space-between; font-weight: 700; font-size: 15px; margin-bottom: 16px; }
.cart-note { font-size: 11.5px; color: oklch(55% 0.02 260); margin-top: 10px; line-height: 1.5; }
.cart-back { background: transparent; border: none; color: var(--text-muted-2); font-size: 12.5px; cursor: pointer; text-align: left; padding: 0; }
.cart-done { text-align: center; padding: 10px 0; }
.cart-done-icon { width: 44px; height: 44px; border-radius: 50%; background: oklch(93% 0.05 150); color: oklch(40% 0.13 150); display: flex; align-items: center; justify-content: center; font-size: 20px; margin: 0 auto 12px; }
.cart-done-title { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.cart-done p { font-size: 13px; color: var(--text-muted-2); line-height: 1.6; }
.shop-note { background: var(--section-bg); border-radius: 16px; padding: 30px 36px; font-size: 13px; line-height: 1.8; color: var(--text-muted); }
[hidden] { display: none !important; }
