/* ============================================================
   Schladíme.sk — style.css
   Konverzný dizajn inšpirovaný lacnydisplay.sk
   mobile-first, pure CSS
   ============================================================ */

/* ===== Custom Properties ===== */
:root {
  --c-accent:      #ff6600;
  --c-accent-dark: #dd5500;
  --c-text:        #000000;
  --c-text-mid:    #333;
  --c-text-muted:  #666;
  --c-bg:          #ffffff;
  --c-bg-alt:      #f4f4f4;
  --c-border:      #cccccc;
  --c-form-border: #cc0000;
  --c-nav-link:    #333333;

  --font-sans: Arial, Helvetica, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;

  --sp-xs: 0.4rem;
  --sp-sm: 0.8rem;
  --sp-md: 1.6rem;
  --sp-lg: 3rem;

  --max-w:    960px;
  --radius:   0px;
  --transition: 0.12s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: #0000cc; text-decoration: underline; }
a:hover { color: var(--c-accent); }
button { font: inherit; cursor: pointer; border: none; background: none; }

:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

/* ===== Layout ===== */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-sm);
}

/* ===== Typography ===== */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--sp-xs);
  color: var(--c-text);
}
.section-title--left { text-align: left; }
.section-subtitle {
  text-align: center;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-md);
  font-size: 0.82rem;
}
.accent { color: var(--c-accent); }

/* ===== Navigation ===== */
.nav {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow 0.2s ease;
}
.nav.is-scrolled {
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  padding-block: 0.5rem;
}
.nav__logo {
  font-size: 1.2rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--c-text);
  font-family: var(--font-sans);
}
.nav__logo span { color: var(--c-accent); }

.nav__links {
  display: none;
  gap: 0;
}
.nav__links a {
  text-decoration: none;
  color: var(--c-nav-link);
  font-size: 0.8rem;
  font-weight: 400;
  padding: 0 0.5rem;
  border-right: 1px solid var(--c-border);
}
.nav__links li:last-child a { border-right: none; }
.nav__links a:hover { color: var(--c-accent); text-decoration: underline; }

.nav__phone {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-accent);
  text-decoration: none;
  white-space: nowrap;
}
.nav__phone:hover { text-decoration: underline; }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--c-text);
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav.is-open .nav__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-sm);
}
.nav.is-open .nav__links a {
  font-size: 0.95rem;
  padding: 0.4rem 0;
  border-right: none;
  border-bottom: 1px solid var(--c-border);
}

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__hamburger { display: none; }
}

/* ===== Hero ===== */
.hero {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
}

/* Full-width headline strip */
.hero__headline {
  border-bottom: 1px solid var(--c-border);
  padding-block: var(--sp-sm) var(--sp-xs);
  margin-bottom: var(--sp-sm);
}

.hero__inner {
  display: grid;
  gap: var(--sp-md);
  align-items: start;
  padding-bottom: var(--sp-md);
}
.hero__location {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-xs);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--sp-xs);
  color: var(--c-text);
}
.hero__sub {
  color: var(--c-text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}
.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.82rem;
  color: var(--c-text-mid);
  margin-bottom: var(--sp-sm);
}

.phone-link {
  display: inline-block;
  text-decoration: none;
}
.phone-link__label {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  display: block;
}
.phone-link__num {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-accent);
  text-decoration: none;
}
.hero__benefits {
  list-style: none;
  margin: 1rem 0 0.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero__benefits li {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-text-mid);
}
.hero__photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 260px;
}

@media (min-width: 760px) {
  .hero__inner { grid-template-columns: 1fr 300px; gap: var(--sp-md); }
}

/* ===== Form Box ===== */
.hero__form-wrap { position: relative; }

.form-box {
  border: 2px dashed var(--c-form-border);
  border-radius: 0;
  padding: var(--sp-sm);
  background: #fff;
}
.form-box__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-form-border);
  text-align: center;
  margin-bottom: var(--sp-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Contact info below form */
.form-contact {
  border: 1px solid var(--c-border);
  border-top: none;
  padding: var(--sp-sm);
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-contact__item {
  font-size: 0.88rem;
  color: var(--c-text-mid);
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}
.form-contact__label {
  font-weight: 700;
  color: var(--c-text);
  flex-shrink: 0;
  min-width: 60px;
}
.form-contact a { color: var(--c-accent); text-decoration: none; }
.form-contact a:hover { text-decoration: underline; }
.form-contact__item--addr { align-items: flex-start; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select {
  font: inherit;
  font-size: 0.95rem;
  color: var(--c-text);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 0;
  padding: 0.45rem 0.6rem;
  width: 100%;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--c-accent);
}
.form-group input::placeholder { color: #bbb; }

/* Radio pills */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.2rem;
}
.radio-opt {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 3px;
  padding: 0.3rem 0.6rem;
  transition: border-color var(--transition), background var(--transition);
  user-select: none;
  text-transform: none;
  letter-spacing: 0;
}
.radio-opt:hover { border-color: var(--c-accent); }
.radio-opt input[type="radio"] { display: none; }
.radio-opt:has(input:checked) {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
}

/* Submit button */
.btn-submit {
  display: block;
  width: 100%;
  background: var(--c-accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.65rem;
  border-radius: 0;
  border: 1px solid var(--c-accent-dark);
  cursor: pointer;
  text-align: center;
  transition: background var(--transition);
  margin-bottom: 0.4rem;
  font-family: var(--font-sans);
}
.btn-submit:hover { background: var(--c-accent-dark); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-gdpr {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  line-height: 1.4;
  text-align: center;
}

.form-message {
  margin-top: var(--sp-sm);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
}
.form-message--success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.form-message--error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.form-message--error a { color: inherit; }

/* ===== Proof Bar ===== */
.proof-bar {
  background: var(--c-text);
  color: #fff;
  padding-block: var(--sp-sm);
}
.proof-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xs);
  text-align: center;
}
.proof-bar__item strong {
  display: block;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--c-accent);
}
.proof-bar__item span { font-size: 0.78rem; opacity: 0.65; }

@media (min-width: 600px) {
  .proof-bar__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Generic Section ===== */
.section { padding-block: var(--sp-lg); }
.section--alt { background: var(--c-bg-alt); }

/* ===== Cards ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-md);
  margin-top: var(--sp-md);
}
.card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-accent);
  border-radius: 0;
  padding: var(--sp-md);
}
.card__icon { font-size: 2rem; margin-bottom: var(--sp-xs); }
.card__title { font-size: 1rem; font-weight: 800; margin-bottom: var(--sp-xs); }
.card p { color: var(--c-text-muted); font-size: 0.92rem; }

/* ===== Card price ===== */
.card__price { font-size: 1.1rem; color: var(--c-accent); margin-bottom: 0.4rem; }
.card__price strong { font-size: 1.4rem; }
.card__note { font-size: 0.75rem; color: var(--c-text-muted); margin-top: 0.5rem; border-top: 1px solid var(--c-border); padding-top: 0.4rem; }

/* ===== Brands ===== */
.brands-section {
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding-block: 0.75rem;
}
.brands-section .container { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1rem; }
.brands-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: var(--c-text-muted); white-space: nowrap; }
.brands-list { display: flex; flex-wrap: wrap; gap: 0.3rem 0; list-style: none; }
.brands-list li {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-text-mid);
  padding: 0 0.6rem;
  border-right: 1px solid var(--c-border);
}
.brands-list li:last-child { border-right: none; }

/* ===== About ===== */
.about__inner {
  display: grid;
  gap: var(--sp-lg);
  align-items: center;
}
.benefits-list { display: flex; flex-direction: column; gap: var(--sp-sm); margin-top: var(--sp-md); }
.benefit { display: flex; gap: var(--sp-sm); align-items: flex-start; }
.benefit__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.benefit strong { display: block; font-size: 0.97rem; margin-bottom: 0.15rem; }
.benefit p { color: var(--c-text-muted); font-size: 0.9rem; }

.about__visual {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--c-border);
  aspect-ratio: 4/3;
  background: var(--c-border);
}
.about__visual img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 900px) {
  .about__inner { grid-template-columns: 1fr 1fr; }
}

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-md);
  margin-top: var(--sp-md);
}
.review-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 0;
  padding: var(--sp-md);
}
.review-card__stars { color: #f59e0b; margin-bottom: var(--sp-xs); letter-spacing: 0.05em; }
.review-card blockquote p { font-style: italic; color: var(--c-text-mid); font-size: 0.93rem; line-height: 1.6; }
.review-card blockquote p::before { content: "\201E"; }
.review-card blockquote p::after  { content: "\201C"; }
.review-card footer { margin-top: var(--sp-sm); font-size: 0.85rem; color: var(--c-text-muted); font-weight: 700; }

/* ===== Steps ===== */
.steps-list {
  max-width: 600px;
  margin-inline: auto;
  margin-top: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.step { display: flex; gap: var(--sp-sm); align-items: flex-start; }
.step__number {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
}
.step strong { display: block; font-size: 1rem; margin-bottom: 0.2rem; }
.step p { color: var(--c-text-muted); font-size: 0.92rem; }

/* ===== FAQ ===== */
.faq__inner { max-width: 720px; margin-inline: auto; }
.faq-list { display: flex; flex-direction: column; gap: 0.4rem; margin-top: var(--sp-md); }
.faq-item { border: 1px solid var(--c-border); border-radius: 0; background: var(--c-bg); overflow: hidden; }
.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-sm);
  transition: background var(--transition);
}
.faq-item__question:hover { background: var(--c-bg-alt); }
.faq-item__question[aria-expanded="true"] { color: var(--c-accent); background: var(--c-bg-alt); }

.faq-item__icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--c-accent);
  position: relative;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item__icon::before { width: 8px; height: 2px; }
.faq-item__icon::after  { width: 2px; height: 8px; transition: transform var(--transition); }
.faq-item__question[aria-expanded="true"] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-item__answer {
  padding: 0 1rem 0.9rem;
  color: var(--c-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  border-top: 1px solid var(--c-border);
}
.faq-item__answer[hidden] { display: none; }

/* ===== Bottom CTA ===== */
.bottom-cta {
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding-block: var(--sp-lg);
  text-align: center;
}
.bottom-cta h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 800;
  margin-bottom: var(--sp-sm);
  color: var(--c-text);
}
.cta-phone-big {
  display: inline-block;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  color: var(--c-accent);
  text-decoration: none;
  border-bottom: 3px solid var(--c-accent);
  line-height: 1.1;
  margin-bottom: var(--sp-sm);
  letter-spacing: -0.02em;
}
.cta-phone-big:hover { border-bottom-color: transparent; }
.bottom-cta p { color: var(--c-text-muted); font-size: 0.9rem; }

/* ===== Footer ===== */
.footer {
  background: #222;
  color: rgba(255,255,255,0.75);
  padding-block: var(--sp-md);
  font-size: 0.88rem;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-md);
}
.footer__brand { line-height: 1.8; }
.footer__brand strong { color: #fff; font-size: 1rem; display: block; }
.footer a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer__nav { display: flex; flex-direction: column; gap: 0.35rem; }
.footer__copy { align-self: flex-end; font-size: 0.78rem; }

/* ===== Simple contact form ===== */
.simple-form-wrap {
  max-width: 560px;
  margin: 0 auto;
}
.sform-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}
.sform-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-text-mid);
}
.sform-required-note {
  font-weight: 400;
  color: var(--c-text-muted);
  font-size: 0.75rem;
}
.sform-group input,
.sform-group textarea {
  border: 1px solid var(--c-border);
  border-radius: 0;
  padding: 0.5rem 0.6rem;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  width: 100%;
}
.sform-group input:focus,
.sform-group textarea:focus {
  outline: 2px solid var(--c-accent);
  border-color: var(--c-accent);
}
.sform-group textarea { resize: vertical; }

/* ===== Urgency strip (form) ===== */
.form-urgency {
  background: #fff3cd;
  border-left: 3px solid #ff6600;
  padding: 0.4rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #7a3800;
  margin-bottom: 0.5rem;
}

/* ===== Review CTA box ===== */
.review-cta-box {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--c-border);
  background: var(--c-bg-alt);
}
.review-cta-box__text {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.btn-review-google {
  display: inline-block;
  background: var(--c-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  text-decoration: none;
  border: none;
}
.btn-review-google:hover { background: var(--c-accent-dark); }
.review-cta-box__note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--c-text-muted);
}

/* ===== Sticky mobile CTA ===== */
.sticky-cta {
  display: none;
}
@media (max-width: 759px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    border-top: 2px solid var(--c-accent);
  }
  .sticky-cta__call {
    flex: 1;
    background: var(--c-accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    padding: 0.85rem 0.5rem;
    text-decoration: none;
  }
  .sticky-cta__form {
    flex: 1;
    background: #222;
    color: #fff;
    font-size: 0.85rem;
    text-align: center;
    padding: 0.85rem 0.5rem;
    text-decoration: none;
  }
  /* Offset body so sticky bar doesn't cover content */
  body { padding-bottom: 56px; }
}

/* ===== WhatsApp button ===== */
.whatsapp-btn {
  position: fixed;
  right: 1.25rem;
  bottom: 1.5rem;
  z-index: 300;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  transition: background 0.15s;
}
.whatsapp-btn:hover { background: #1ebe5d; }
@media (max-width: 759px) {
  .whatsapp-btn { bottom: 4.5rem; } /* above sticky CTA bar */
}

/* ===== Brands ===== */
.brands__inner { text-align: center; }
.brands__label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-text-muted); margin-bottom: 1rem; }
.brands__list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 2rem; }
.brands__list li { font-weight: 600; font-size: 1rem; color: var(--c-text); }

/* ===== Cookie consent bar ===== */
.cookie-bar[hidden] { display: none !important; }
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: #222;
  color: #fff;
  padding: 0.85rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
}
.cookie-bar__text { flex: 1 1 260px; margin: 0; line-height: 1.5; }
.cookie-bar__text a { color: #ffb380; }
.cookie-bar__btns { display: flex; gap: 0.5rem; }
.cookie-bar__accept {
  background: var(--c-accent);
  color: #fff;
  border: none;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.cookie-bar__accept:hover { background: var(--c-accent-dark); }
.cookie-bar__decline {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: inherit;
}
.cookie-bar__decline:hover { color: #fff; border-color: #999; }
@media (max-width: 759px) {
  .cookie-bar { padding-bottom: 4.5rem; } /* above sticky CTA */
}

/* ===== Gallery / Realizácie ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
}
.gallery-item__img-wrap {
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.gallery-item__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-item__img-wrap img { transform: scale(1.04); }
.gallery-brand-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  border-left: 3px solid var(--c-accent);
  padding-left: 0.6rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.gallery-brand-label:first-of-type { margin-top: 0; }
.gallery-item figcaption {
  font-size: 0.8rem;
  color: #666;
  padding: 0.45rem 0.5rem;
  text-align: center;
}
@media (max-width: 759px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item__img-wrap { height: 170px; }
}
@media (max-width: 479px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item__img-wrap { height: 230px; }
}

/* ===== Print ===== */
@media print {
  .nav, .hero__form-wrap, .bottom-cta, .footer__nav, .sticky-cta, .whatsapp-btn, .cookie-bar { display: none; }
  body { color: #000; }
}
