/* Čistiareň Fresh Nitra — shared stylesheet */

:root{
  --bg:oklch(0.98 0.006 220);
  --bg-soft:oklch(0.955 0.008 220);
  --text:oklch(0.22 0.015 220);
  --text-muted:oklch(0.45 0.02 220);
  --text-muted-2:oklch(0.4 0.02 220);
  --border:oklch(0.88 0.01 220);
  --border-2:oklch(0.8 0.01 220);
  --primary:oklch(0.62 0.11 200);
  --primary-hover:oklch(0.4 0.12 200);
  --primary-dark:oklch(0.48 0.11 200);
  --primary-text:oklch(0.4 0.11 200);
  --pill-bg:oklch(0.94 0.02 200);
  --accent:oklch(0.68 0.13 35);
  --footer-bg:oklch(0.2 0.012 220);
  --footer-text:oklch(0.9 0.006 220);
  --footer-muted:oklch(0.7 0.01 220);
  --footer-border:oklch(0.32 0.012 220);
  --heading-font:'Segoe UI',system-ui,-apple-system,'Helvetica Neue',Arial,sans-serif;
  --body-font:'Segoe UI',system-ui,-apple-system,'Helvetica Neue',Arial,sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--body-font);
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
a{color:var(--primary-text);text-decoration:none;}
a:hover{color:var(--primary-hover);text-decoration:underline;}
::selection{background:oklch(0.62 0.11 200 / 0.25);}
input,textarea,button{font-family:var(--body-font);}
img{max-width:100%;display:block;}

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

h1,h2,h3,.brand-name{font-family:var(--heading-font);font-weight:800;}

@keyframes slideUp{from{transform:translateY(120%);opacity:0;}to{transform:translateY(0);opacity:1;}}

/* HEADER */
.site-header{
  position:sticky;top:0;z-index:40;
  background:oklch(1 0 0 / 0.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  max-width:1200px;margin:0 auto;padding:14px 24px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
}
.brand{cursor:pointer;display:flex;align-items:center;gap:10px;}
.brand-mark{
  width:38px;height:38px;border-radius:10px;background:var(--primary);color:#fff;
  display:flex;align-items:center;justify-content:center;font-family:var(--heading-font);font-weight:800;font-size:16px;flex:none;
}
.brand-name{font-size:18px;line-height:1.1;color:var(--text);}
.brand-sub{font-size:11px;color:var(--text-muted);letter-spacing:0.03em;}

.main-nav{display:flex;gap:4px;flex-wrap:wrap;align-items:center;}
.main-nav a{
  padding:9px 12px;border-radius:7px;font-weight:700;font-size:14px;color:oklch(0.3 0.015 220);
}
.main-nav a:hover{text-decoration:none;background:var(--bg-soft);}
.main-nav a.active{color:var(--primary-text);background:var(--pill-bg);}

.cart-link{
  cursor:pointer;position:relative;display:flex;align-items:center;gap:8px;
  background:var(--primary);color:#fff;padding:9px 16px;border-radius:8px;font-weight:700;font-size:14px;
}
.cart-link:hover{color:#fff;text-decoration:none;background:var(--primary-hover);}
.cart-badge{
  background:var(--accent);border-radius:999px;min-width:20px;height:20px;padding:0 5px;
  display:flex;align-items:center;justify-content:center;font-size:12px;color:#fff;
}

/* BUTTONS */
.btn{display:inline-block;padding:14px 24px;border-radius:9px;font-weight:700;font-size:15px;cursor:pointer;border:none;}
.btn-primary{background:var(--primary);color:#fff;}
.btn-primary:hover{background:var(--primary-hover);color:#fff;text-decoration:none;}
.btn-outline{border:1px solid var(--border-2);color:var(--text);background:none;}
.btn-outline:hover{text-decoration:none;background:var(--bg-soft);}
.btn-block{width:100%;text-align:center;}

/* HERO */
.hero{
  max-width:1200px;margin:0 auto;padding:64px 24px 56px;
  display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;
}
.hero.hero-left-image{grid-template-columns:1fr 1fr;}
.hero.hero-left-image .hero-media{order:1;}
.hero.hero-left-image .hero-text{order:2;}
.hero-badge{
  display:inline-block;background:var(--pill-bg);color:var(--primary-text);font-weight:700;font-size:13px;
  padding:6px 12px;border-radius:999px;margin-bottom:16px;
}
.hero-text h1{font-size:44px;line-height:1.12;margin:0 0 18px;}
.hero-text p{font-size:17px;line-height:1.6;color:var(--text-muted-2);margin:0 0 28px;max-width:520px;}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;}
.express-note{margin-top:26px;display:flex;align-items:center;gap:10px;color:var(--text-muted-2);font-size:14px;flex-wrap:wrap;}
.express-badge{background:var(--accent);color:#fff;font-weight:800;font-size:12px;padding:5px 10px;border-radius:6px;}
.hero-media{aspect-ratio:4/3;border-radius:16px;overflow:hidden;border:1px solid var(--border);}
.hero-media img{width:100%;height:100%;object-fit:cover;}

/* USP STRIP */
.usp-strip{background:var(--bg-soft);border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.usp-grid{max-width:1200px;margin:0 auto;padding:32px 24px;display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;}
.usp-item{display:flex;gap:12px;align-items:flex-start;}
.usp-icon{
  width:34px;height:34px;flex:none;border-radius:8px;background:var(--pill-bg);color:var(--primary-text);
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:14px;
}
.usp-title{font-weight:700;font-size:15px;margin-bottom:2px;}
.usp-text{font-size:13px;color:var(--text-muted);}

/* SECTIONS */
.section{max-width:1200px;margin:0 auto;padding:64px 24px;}
.section-soft{background:var(--bg-soft);border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.section h2{font-size:30px;margin:0 0 8px;}
.section-lead{color:var(--text-muted);margin:0 0 32px;max-width:600px;}

.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px;}
.service-card{border:1px solid var(--border);border-radius:12px;padding:22px;background:#fff;}
.service-icon{
  width:36px;height:36px;border-radius:8px;background:var(--primary);color:#fff;
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:13px;margin-bottom:14px;
}
.service-card-title{font-weight:700;font-size:16px;margin-bottom:6px;}
.service-card-text{font-size:13px;color:var(--text-muted);line-height:1.5;}
.section-more{margin-top:24px;}
.section-more a{font-weight:700;}

.steps-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:24px;}
.step{text-align:center;}
.step-num{
  width:44px;height:44px;border-radius:999px;background:var(--primary);color:#fff;
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:16px;margin:0 auto 12px;
}
.step-title{font-weight:700;font-size:15px;margin-bottom:6px;}
.step-text{font-size:13px;color:var(--text-muted);}

.testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px;}
.testimonial{border:1px solid var(--border);border-radius:12px;padding:22px;background:#fff;}
.testimonial-stars{color:var(--accent);font-size:14px;margin-bottom:10px;}
.testimonial-text{font-size:14px;line-height:1.6;color:oklch(0.3 0.015 220);margin-bottom:14px;}
.testimonial-name{font-weight:700;font-size:13px;}

.cta-banner{
  max-width:1200px;margin:24px auto 64px;padding:0 24px;
}
.cta-banner-inner{
  background:var(--primary);border-radius:16px;padding:40px;display:flex;justify-content:space-between;
  align-items:center;gap:24px;flex-wrap:wrap;color:#fff;
}
.cta-banner-title{font-size:24px;margin-bottom:6px;font-family:var(--heading-font);font-weight:800;}
.cta-banner-text{font-size:14px;opacity:0.9;}
.cta-banner .btn{background:#fff;color:var(--primary-dark);flex:none;font-weight:800;}
.cta-banner .btn:hover{background:oklch(0.94 0.02 200);}

/* PAGE HEADERS */
.page-header{max-width:1200px;margin:0 auto;padding:56px 24px 0;}
.page-title{font-size:36px;margin:0 0 12px;}
.page-lead{color:var(--text-muted);max-width:640px;margin:0 0 40px;}

/* SERVICES LIST PAGE */
.services-list{max-width:1200px;margin:0 auto;padding:0 24px 56px;display:flex;flex-direction:column;gap:28px;}
.service-row{
  display:grid;grid-template-columns:220px 1fr;gap:24px;border:1px solid var(--border);
  border-radius:14px;padding:24px;background:#fff;
}
.service-row-media{aspect-ratio:4/3;border-radius:10px;overflow:hidden;border:1px solid var(--border);}
.service-row-media img{width:100%;height:100%;object-fit:cover;}
.service-row-head{display:flex;justify-content:space-between;align-items:flex-start;gap:12px;flex-wrap:wrap;}
.service-row-title{font-family:var(--heading-font);font-weight:800;font-size:19px;}
.service-row-price{
  background:var(--pill-bg);color:var(--primary-text);font-weight:800;font-size:14px;
  padding:6px 12px;border-radius:8px;white-space:nowrap;
}
.service-row-desc{font-size:14px;line-height:1.6;color:var(--text-muted-2);margin:10px 0 0;}

/* SHOP PAGE */
.shop-layout{max-width:1200px;margin:0 auto;padding:0 24px 56px;display:grid;grid-template-columns:1fr 340px;gap:32px;align-items:start;}
.products-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px;}
.product-card{border:1px solid var(--border);border-radius:12px;padding:18px;background:#fff;display:flex;flex-direction:column;gap:10px;}
.product-media{aspect-ratio:5/3;border-radius:8px;overflow:hidden;border:1px solid var(--border);}
.product-media img{width:100%;height:100%;object-fit:cover;}
.product-name{font-weight:700;font-size:14px;}
.product-price{font-size:13px;color:var(--text-muted);}
.product-add{margin-top:auto;background:var(--primary);color:#fff;border:none;padding:10px;border-radius:7px;font-weight:700;font-size:13px;cursor:pointer;}
.product-add:hover{background:var(--primary-hover);}

.cart-box{border:1px solid var(--border);border-radius:14px;padding:22px;background:#fff;position:sticky;top:84px;}
.cart-title{font-family:var(--heading-font);font-weight:800;font-size:18px;margin-bottom:16px;}
.cart-items{display:flex;flex-direction:column;gap:12px;margin-bottom:16px;}
.cart-item{display:flex;justify-content:space-between;align-items:center;gap:8px;border-bottom:1px solid oklch(0.9 0.008 220);padding-bottom:10px;}
.cart-item-name{font-size:13px;font-weight:700;}
.cart-item-price{font-size:12px;color:var(--text-muted);}
.qty-btn{width:22px;height:22px;border:1px solid var(--border-2);background:#fff;border-radius:5px;cursor:pointer;line-height:1;}
.qty-val{font-size:13px;min-width:16px;text-align:center;display:inline-block;}
.cart-total{display:flex;justify-content:space-between;font-weight:800;font-size:15px;margin-bottom:20px;}
.cart-empty{text-align:center;padding:30px 4px;color:var(--text-muted);font-size:13px;}
.cart-success{text-align:center;padding:24px 4px;}
.cart-success-icon{
  width:44px;height:44px;border-radius:999px;background:var(--pill-bg);color:var(--primary-text);
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:20px;margin:0 auto 14px;
}

/* FORMS */
.form-field{padding:10px;border:1px solid var(--border-2);border-radius:7px;font-size:13px;width:100%;}
.form-field.lg{padding:11px;font-size:14px;}
.form-col{display:flex;flex-direction:column;gap:10px;}
.form-note{font-size:11px;color:oklch(0.5 0.02 220);line-height:1.5;}

/* BLOG */
.blog-list{max-width:900px;margin:0 auto;padding:0 24px 56px;display:flex;flex-direction:column;gap:24px;}
.blog-card{
  display:grid;grid-template-columns:180px 1fr;gap:20px;border:1px solid var(--border);
  border-radius:12px;padding:18px;background:#fff;
}
.blog-card-media{aspect-ratio:4/3;border-radius:8px;overflow:hidden;border:1px solid var(--border);}
.blog-card-media img{width:100%;height:100%;object-fit:cover;}
.blog-date{font-size:12px;color:oklch(0.5 0.02 220);margin-bottom:6px;}
.blog-card-title{font-family:var(--heading-font);font-weight:800;font-size:18px;margin-bottom:8px;}
.blog-card-excerpt{font-size:13px;color:var(--text-muted);line-height:1.6;}

.article{max-width:900px;margin:0 auto;padding:56px 24px;}
.article-back{font-weight:700;font-size:13px;}
.article-date{font-size:12px;color:oklch(0.5 0.02 220);margin:18px 0 8px;}
.article-title{font-size:32px;margin:0 0 20px;}
.article-media{aspect-ratio:16/7;border-radius:12px;overflow:hidden;border:1px solid var(--border);margin-bottom:24px;}
.article-media img{width:100%;height:100%;object-fit:cover;}
.article p{font-size:15px;line-height:1.75;color:oklch(0.3 0.015 220);margin:0 0 16px;}

/* ABOUT */
.about-hero{max-width:1000px;margin:0 auto;padding:56px 24px 0;display:grid;grid-template-columns:1fr 320px;gap:32px;margin-bottom:0;}
.about-media{aspect-ratio:4/5;border-radius:12px;overflow:hidden;border:1px solid var(--border);}
.about-media img{width:100%;height:100%;object-fit:cover;}
.about-body{max-width:1000px;margin:0 auto;padding:0 24px 56px;}
.about-body p{font-size:15px;line-height:1.75;color:oklch(0.3 0.015 220);margin:0 0 16px;}
.values-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px;margin:32px 0 40px;}
.value-card{border:1px solid var(--border);border-radius:12px;padding:20px;background:#fff;}
.value-title{font-weight:800;font-size:15px;margin-bottom:6px;color:var(--primary-text);}
.value-text{font-size:13px;color:var(--text-muted);line-height:1.5;}

/* CONTACT */
.contact-layout{max-width:1100px;margin:0 auto;padding:0 24px 56px;display:grid;grid-template-columns:1fr 1fr;gap:32px;}
.contact-info{display:flex;flex-direction:column;gap:16px;margin-bottom:28px;}
.contact-label{font-weight:700;font-size:13px;color:var(--text-muted);}
.contact-value{font-size:15px;}
.contact-map{
  aspect-ratio:16/9;border-radius:12px;background:repeating-linear-gradient(45deg, oklch(0.93 0.008 220) 0px, oklch(0.93 0.008 220) 10px, oklch(0.97 0.006 220) 10px, oklch(0.97 0.006 220) 20px);
  border:1px solid var(--border);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;
  color:var(--text-muted);font-size:13px;text-align:center;padding:16px;
}
.contact-form-box{border:1px solid var(--border);border-radius:14px;padding:24px;background:#fff;}
.contact-success{text-align:center;padding:20px 4px;}

/* LEGAL */
.legal{max-width:800px;margin:0 auto;padding:56px 24px;}
.legal-title{font-size:32px;margin:0 0 8px;}
.legal-date{font-size:12px;color:oklch(0.5 0.02 220);margin-bottom:32px;}
.legal-section{margin-bottom:22px;}
.legal-h{font-weight:800;font-size:16px;margin-bottom:8px;}
.legal-p{font-size:14px;line-height:1.7;color:oklch(0.35 0.015 220);margin:0;}

/* FOOTER */
.site-footer{background:var(--footer-bg);color:var(--footer-text);margin-top:24px;}
.footer-grid{max-width:1200px;margin:0 auto;padding:48px 24px 24px;display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:32px;}
.footer-brand{font-family:var(--heading-font);font-weight:800;font-size:17px;margin-bottom:10px;color:#fff;}
.footer-addr{font-size:13px;line-height:1.7;color:var(--footer-muted);}
.footer-heading{font-weight:700;font-size:14px;margin-bottom:12px;color:#fff;}
.footer-links{display:flex;flex-direction:column;gap:8px;}
.footer-links a{font-size:13px;color:var(--footer-muted);}
.footer-contact{font-size:13px;line-height:1.9;color:var(--footer-muted);}
.footer-contact a{color:var(--footer-muted);}
.footer-bottom{max-width:1200px;margin:0 auto;padding:16px 24px 28px;border-top:1px solid var(--footer-border);font-size:12px;color:oklch(0.6 0.01 220);}

/* COOKIE BANNER */
.cookie-banner{
  position:fixed;bottom:0;left:0;right:0;z-index:60;background:oklch(1 0 0);border-top:1px solid oklch(0.85 0.01 220);
  box-shadow:0 -4px 20px rgba(0,0,0,0.08);animation:slideUp 0.35s ease;
}
.cookie-banner.hidden{display:none;}
.cookie-inner{max-width:1200px;margin:0 auto;padding:18px 24px;display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;}
.cookie-text{font-size:13px;color:oklch(0.35 0.015 220);max-width:640px;}
.cookie-actions{display:flex;gap:10px;flex:none;}
.cookie-actions button{padding:10px 18px;border-radius:7px;font-weight:700;font-size:13px;cursor:pointer;}
.cookie-reject{background:none;border:1px solid var(--border-2);}
.cookie-accept{background:var(--primary);color:#fff;border:none;}
.cookie-accept:hover{background:var(--primary-hover);}

/* Mobile menu toggle */
.nav-toggle{display:none;}

@media (max-width: 900px){
  .hero{grid-template-columns:1fr;padding:40px 24px 40px;}
  .hero.hero-left-image .hero-media,.hero.hero-left-image .hero-text{order:initial;}
  .hero-media{order:-1;}
  .about-hero{grid-template-columns:1fr;}
  .contact-layout{grid-template-columns:1fr;}
  .shop-layout{grid-template-columns:1fr;}
  .cart-box{position:static;}
  .service-row{grid-template-columns:1fr;}
  .blog-card{grid-template-columns:1fr;}
}

@media (max-width: 640px){
  .hero-text h1{font-size:32px;}
  .main-nav{width:100%;justify-content:flex-start;}
  .header-inner{padding:12px 16px;}
  .section,.page-header,.services-list,.shop-layout,.blog-list,.article,.about-hero,.about-body,.contact-layout,.legal{padding-left:16px;padding-right:16px;}
}
