/* Čistota a Poriadok — spoločný štýl webu */

:root {
  --bg: oklch(0.985 0.004 240);
  --text: oklch(0.26 0.02 240);
  --primary: oklch(0.56 0.13 240);
  --primary-dark: oklch(0.46 0.13 240);
  --muted: oklch(0.5 0.02 235);
  --border: oklch(0.89 0.014 225);
  --surface-alt: oklch(0.96 0.014 225);
  --footer-bg: oklch(0.93 0.02 225);
  --accent: oklch(0.72 0.1 185);
  --dark: oklch(0.24 0.02 240);
  --cookie-link: oklch(0.78 0.08 190);
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  font-family: var(--font);
  color: var(--text);
}

a { color: var(--primary); }
a:hover { color: var(--primary-dark); }

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

input, textarea, button, select { font-family: var(--font); }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}
.site-header .bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { width: 34px; height: 34px; border-radius: 50%; background: var(--primary); position: relative; flex-shrink: 0; display: inline-block; }
.brand-mark span { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); top: 7px; left: 7px; }
.brand-name { font-weight: 800; font-size: 18px; letter-spacing: -0.01em; color: var(--text); }

.main-nav { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; font-size: 14.5px; font-weight: 600; }
.main-nav a { text-decoration: none; color: var(--text); }
.main-nav a.active { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.tel-link { text-decoration: none; color: var(--muted); font-size: 13.5px; font-weight: 600; }
.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--surface-alt);
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
}
.cart-link.active { color: var(--primary); }
.cart-badge {
  display: none;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  padding: 1px 7px;
}
.cart-badge.show { display: inline-block; }

/* Breadcrumb */
.breadcrumb { font-size: 13.5px; color: var(--muted); margin-bottom: 10px; }
.breadcrumb a { text-decoration: none; color: var(--muted); }

/* Hero */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: var(--surface-alt);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 { font-size: 44px; line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 20px; }
.hero h1 .accent { color: var(--primary); }
.hero p.lead { font-size: 17px; line-height: 1.6; color: var(--muted); margin: 0 0 32px; max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: flex; gap: 32px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .num { font-size: 26px; font-weight: 800; color: var(--primary); }
.hero-stats .label { font-size: 13px; color: var(--muted); }
.hero-photo { width: 100%; height: 420px; border-radius: 24px; object-fit: cover; }

/* Buttons */
.btn {
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-outline { background: #fff; border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { color: var(--text); }
.btn-block { width: 100%; }

/* Feature cards */
.features { max-width: 1280px; margin: 0 auto; padding: 24px 24px 64px; }
.features-grid, .grid-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; }
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 22px; display: flex; align-items: center; gap: 14px; }
.feature-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--surface-alt); flex-shrink: 0; }
.feature-icon.round { border-radius: 50%; }
.feature-icon.diamond { border-radius: 12px; transform: rotate(45deg); }
.feature-title { font-weight: 700; font-size: 14.5px; }
.feature-desc { font-size: 13px; color: var(--muted); }

/* Sections */
.section { padding: 64px 24px; }
.section-alt { background: var(--surface-alt); }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.section-head h2, .section-title { font-size: 28px; font-weight: 800; margin: 0; }
.section-link { text-decoration: none; font-weight: 700; font-size: 14.5px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; }
.service-card { background: #fff; border-radius: 16px; padding: 26px; }
.service-card h3 { font-weight: 800; font-size: 16px; margin: 0 0 8px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; }

.categories-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 20px; }
.category-card { text-decoration: none; color: inherit; }
.category-photo { width: 100%; height: 150px; border-radius: 16px; object-fit: cover; }
.category-name { font-weight: 700; font-size: 14.5px; margin-top: 10px; }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; }
.testimonial-card { background: #fff; border-radius: 16px; padding: 26px; }
.testimonial-card p { font-size: 14.5px; line-height: 1.6; margin: 0 0 14px; }
.testimonial-name { font-weight: 700; font-size: 13.5px; }

.tips-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 24px; }
.tip-card { text-decoration: none; color: inherit; }
.tip-photo { width: 100%; height: 160px; border-radius: 16px; object-fit: cover; }
.tip-title { font-weight: 700; font-size: 15px; margin-top: 12px; }

.cta-banner {
  max-width: 1280px; margin: 0 auto 64px; padding: 0 24px;
}
.cta-banner-inner {
  background: var(--primary);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta-banner-inner.alt { background: var(--surface-alt); }
.cta-banner h2 { color: #fff; font-size: 26px; font-weight: 800; margin: 0 0 8px; }
.cta-banner-inner.alt h2 { color: var(--text); }
.cta-banner p { color: oklch(0.95 0.02 225); margin: 0; font-size: 15px; }
.cta-banner-inner.alt p { color: var(--muted); }
.cta-banner .btn { background: #fff; color: var(--primary-dark); font-weight: 800; flex-shrink: 0; }

/* Footer */
.site-footer { background: var(--footer-bg); border-top: 1px solid var(--border); }
.footer-grid { max-width: 1280px; margin: 0 auto; padding: 56px 24px 28px; display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 36px; }
.footer-brand { font-weight: 800; font-size: 17px; margin-bottom: 12px; }
.footer-col-title { font-weight: 700; font-size: 14px; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; font-size: 13.5px; }
.footer-links a { text-decoration: none; color: var(--muted); }
.footer-text { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0 0 12px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  color: var(--muted);
}
.site-footer.simple .footer-grid { padding: 40px 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; font-size: 13px; }
.site-footer.simple .footer-links { flex-direction: row; gap: 18px; flex-wrap: wrap; }

/* Cookie banner */
.cookie-banner {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--dark); color: #fff; padding: 18px 24px;
  flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; font-size: 13px; max-width: 680px; line-height: 1.5; }
.cookie-banner a { color: var(--cookie-link); }
.cookie-banner button {
  background: var(--primary); color: #fff; border: none; font-weight: 700;
  font-size: 13.5px; padding: 10px 20px; border-radius: 8px; cursor: pointer;
}

/* Toast */
.toast {
  display: none;
  position: fixed; bottom: 24px; right: 24px;
  background: var(--dark); color: #fff; padding: 14px 22px;
  border-radius: 10px; font-size: 14px; font-weight: 600; z-index: 300;
}
.toast.show { display: block; }

/* Page header */
.page-head { max-width: 1280px; margin: 0 auto; padding: 48px 24px 8px; }
.page-head h1 { font-size: 34px; font-weight: 800; margin: 0 0 12px; letter-spacing: -0.01em; }
.page-head p { font-size: 15.5px; color: var(--muted); max-width: 680px; line-height: 1.6; margin: 0 0 8px; }
.page-head.center { text-align: center; }

/* Shop */
.shop-categories { max-width: 1280px; margin: 0 auto; padding: 16px 24px 8px; display: flex; flex-wrap: wrap; gap: 10px; }
.cat-btn {
  border: 1px solid var(--border); background: #fff; color: var(--text);
  font-weight: 700; font-size: 13.5px; padding: 9px 18px; border-radius: 999px; cursor: pointer;
}
.cat-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.products-section { max-width: 1280px; margin: 0 auto; padding: 24px 24px 72px; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 22px; }
.product-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 16px; display: flex; flex-direction: column; }
.product-photo { width: 100%; height: 150px; border-radius: 12px; object-fit: cover; margin-bottom: 14px; }
.product-cat { font-size: 11.5px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 6px; }
.product-name { font-weight: 700; font-size: 14.5px; margin-bottom: 6px; line-height: 1.3; }
.product-desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 14px; flex-grow: 1; }
.product-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-weight: 800; font-size: 16px; }
.add-btn { background: var(--primary); color: #fff; border: none; font-weight: 700; font-size: 13px; padding: 9px 14px; border-radius: 8px; cursor: pointer; }
.add-btn:hover { background: var(--primary-dark); }

/* Services list */
.services-list { max-width: 1280px; margin: 0 auto; padding: 32px 24px 24px; display: flex; flex-direction: column; gap: 24px; }
.service-block {
  background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 32px;
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.3fr); gap: 32px; align-items: center;
}
.service-block.reverse { grid-template-columns: minmax(0,1.3fr) minmax(0,1fr); }
.service-block.reverse .service-photo { order: 2; }
.service-photo { width: 100%; height: 220px; border-radius: 16px; object-fit: cover; }
.service-block h2 { font-size: 22px; font-weight: 800; margin: 0 0 10px; }
.service-block p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0 0 14px; }
.service-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.service-meta strong { color: var(--text); }
.service-btn { text-decoration: none; background: var(--primary); color: #fff; font-weight: 700; font-size: 14px; padding: 11px 22px; border-radius: 9px; }
.service-btn:hover { background: var(--primary-dark); color: #fff; }

.how-it-works { max-width: 1280px; margin: 0 auto; padding: 24px 24px 64px; }
.how-box { background: var(--surface-alt); border-radius: 20px; padding: 36px; }
.how-box h2 { font-size: 22px; font-weight: 800; margin: 0 0 20px; }
.how-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 24px; }
.how-step-num { font-weight: 800; font-size: 22px; color: var(--primary); margin-bottom: 6px; }
.how-step-title { font-weight: 700; font-size: 14.5px; margin-bottom: 4px; }
.how-step-desc { font-size: 13px; color: var(--muted); }

/* Tips articles */
.tips-section { max-width: 1280px; margin: 0 auto; padding: 32px 24px 72px; }
.tips-articles-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 28px; }
.article-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.article-photo { width: 100%; height: 170px; object-fit: cover; }
.article-body { padding: 22px; }
.article-body h2 { font-size: 17px; font-weight: 800; margin: 0 0 10px; }
.article-body p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin: 0; }

/* About */
.about-hero { max-width: 1280px; margin: 0 auto; padding: 56px 24px 40px; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 48px; align-items: center; }
.about-hero p { font-size: 15.5px; color: var(--muted); line-height: 1.65; margin: 0 0 14px; }
.about-photo { width: 100%; height: 360px; border-radius: 24px; object-fit: cover; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
.value-title { font-weight: 800; font-size: 16px; margin-bottom: 8px; }
.value-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 24px; }
.team-card { text-align: center; }
.team-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; }
.team-name { font-weight: 700; font-size: 14.5px; }
.team-role { font-size: 13px; color: var(--muted); }

.timeline-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 24px; }
.timeline-year { font-weight: 800; font-size: 20px; color: var(--primary); margin-bottom: 6px; }
.timeline-desc { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

/* Contact */
.contact-grid { max-width: 1280px; margin: 0 auto; padding: 32px 24px 24px; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.3fr); gap: 32px; }
.contact-col { display: flex; flex-direction: column; gap: 16px; }
.info-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.info-title { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.info-text { font-size: 14px; color: var(--muted); line-height: 1.6; }
.map-photo { width: 100%; height: 160px; border-radius: 16px; object-fit: cover; }

.form-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid input[type="text"], .form-grid input[type="email"], .form-grid input[type="tel"], .form-grid textarea, .form-grid input:not([type]) {
  padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; width: 100%;
}
.form-grid textarea { min-height: 140px; resize: vertical; }
.span-2 { grid-column: span 2; }
.checkbox-row { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.checkbox-row input { margin-top: 2px; }
.submit-btn {
  background: var(--primary); color: #fff; border: none; font-weight: 800; font-size: 15px;
  padding: 14px; border-radius: 10px; cursor: pointer; margin-top: 4px;
}
.submit-btn:hover { background: var(--primary-dark); }
.thankyou-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 48px; text-align: center; }
.thankyou-card .title { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.thankyou-card p { font-size: 14.5px; color: var(--muted); margin: 0; }

.faq-section { max-width: 1280px; margin: 0 auto; padding: 32px 24px 72px; }
.faq-section h2 { font-size: 22px; font-weight: 800; margin: 0 0 20px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.faq-q { font-weight: 700; font-size: 14.5px; margin-bottom: 6px; }
.faq-a { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* Cart */
.cart-section { max-width: 1000px; margin: 0 auto; padding: 48px 24px 80px; }
.cart-section h1 { font-size: 30px; font-weight: 800; margin: 0 0 28px; letter-spacing: -0.01em; }
.cart-box { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 8px; margin-bottom: 24px; }
.cart-item { display: flex; align-items: center; gap: 16px; padding: 16px; border-bottom: 1px solid oklch(0.92 0.012 225); flex-wrap: wrap; }
.cart-item:last-child { border-bottom: none; }
.cart-item-info { flex-grow: 1; min-width: 140px; }
.cart-item-name { font-weight: 700; font-size: 14.5px; }
.cart-item-price { font-size: 13px; color: var(--muted); margin-top: 4px; }
.qty-control { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--border); background: #fff; cursor: pointer; font-weight: 700; }
.qty-val { font-weight: 700; font-size: 14px; min-width: 18px; text-align: center; }
.line-total { font-weight: 800; font-size: 15px; min-width: 70px; text-align: right; }
.remove-btn { border: none; background: transparent; color: var(--muted); cursor: pointer; font-size: 13px; text-decoration: underline; }
.cart-totals { padding: 20px 16px; display: flex; flex-direction: column; gap: 8px; }
.cart-totals-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); }
.cart-totals-row.grand { font-size: 18px; font-weight: 800; margin-top: 6px; color: var(--text); }
.order-form-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.order-form-card h2 { font-size: 18px; font-weight: 800; margin: 0 0 18px; }
.payment-options { grid-column: span 2; display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; }
.payment-options label { display: flex; gap: 8px; align-items: center; }
.empty-cart, .order-success { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 48px; text-align: center; }
.empty-cart .title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.order-success .title { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.empty-cart p, .order-success p { font-size: 14.5px; color: var(--muted); margin: 0 0 20px; }

/* Legal pages */
.legal-section { max-width: 800px; margin: 0 auto; padding: 56px 24px 96px; }
.legal-section h1 { font-size: 30px; font-weight: 800; margin: 0 0 8px; letter-spacing: -0.01em; }
.legal-date { font-size: 13.5px; color: var(--muted); margin: 0 0 32px; }
.legal-body { font-size: 14.5px; line-height: 1.75; color: oklch(0.3 0.02 240); display: flex; flex-direction: column; gap: 22px; }
.legal-body h2 { font-size: 17px; font-weight: 800; margin: 0 0 8px; }
.legal-body p { margin: 0; }
.legal-body table { width: 100%; border-collapse: collapse; }
.legal-body th, .legal-body td { text-align: left; padding: 10px 12px; font-size: 13.5px; border-bottom: 1px solid var(--border); }

/* Responsive */
@media (max-width: 860px) {
  .hero, .about-hero { grid-template-columns: 1fr; }
  .hero-photo, .about-photo { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-block, .service-block.reverse { grid-template-columns: 1fr; }
  .service-block.reverse .service-photo { order: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: span 1; }
  .cta-banner-inner { padding: 32px; }
}
