/* ============================================================================
   4sure.pl - Glowny arkusz stylow (samodzielny, bez Bootstrap CSS).
   Rozmiar: ~25 KB. Zastepuje styles3.css + 4sure-modern.css.
   Sekcje:
     1.  Design tokens (CSS variables)
     2.  Reset + typografia
     3.  Bootstrap-compatible utility classes (mb-*, d-flex, container, ...)
     4.  Header / hero z bg.webp
     5.  Navbar
     6.  Sekcje (.page-section, .seo-section, .bg-faded)
     7.  Intro (obrazek + tekst)
     8.  Karty SEO
     9.  Badge list, marki
     10. FAQ accordion
     11. Buttony
     12. Tabele
     13. Karty sklepu
     14. Footer
     15. Cookie banner
     16. Social links
     17. Saturday banner
     18. Mapa
     19. Helpers (is-hidden, h2-center, lead-narrow)
     20. Skip link, focus
     21. Print
============================================================================ */

/* 1. ================ DESIGN TOKENS ======================================= */
:root {
  --brand-50:  #fff5e3;
  --brand-100: #fce6c2;
  --brand-300: #efbe7c;
  --brand-500: #e6a756;
  --brand-600: #d99540;
  --brand-700: #b8762a;
  --brand-800: #875517;

  --ink-900:   #1f0d08;
  --ink-700:   #2f170f;
  --ink-600:   #3a221a;
  --ink-500:   #4d3327;
  --ink-400:   #6b574b;

  --paper:     #faf6ef;
  --paper-2:   #f4ecdc;
  --line:      #e3d9c6;

  --ok:        #1a7f3c;
  --err:       #c0392b;

  --shadow-sm: 0 1px 2px rgba(31,13,8,.06);
  --shadow-md: 0 6px 18px rgba(31,13,8,.10);
  --shadow-lg: 0 18px 40px rgba(31,13,8,.14);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;

  --gradient-brand: linear-gradient(135deg, #f3c378 0%, #e6a756 50%, #d97f3a 100%);

  --bp-sm: 576px;
  --bp-md: 768px;
  --bp-lg: 992px;
  --bp-xl: 1200px;
}

/* 2. ================ RESET + TYPOGRAFIA ================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background:
    radial-gradient(900px 400px at 100% -200px, rgba(230,167,86,.18), transparent 60%),
    radial-gradient(1100px 500px at -10% 0%, rgba(230,167,86,.10), transparent 55%),
    var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-800); }
strong, b { font-weight: 700; color: var(--ink-900); }
em, i { font-style: italic; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; background: var(--paper-2); padding: .12em .4em; border-radius: 4px; font-size: .92em; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1.25;
  margin: 0 0 .8rem;
  letter-spacing: -0.005em;
}
h1 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  text-wrap: balance;          /* ladne wrapowanie wielolinijkowych naglowkow */
  max-width: 65ch;
  margin-left: auto; margin-right: auto;
}
h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); text-wrap: balance; }
h3 { font-size: clamp(1.1rem, 1.55vw, 1.3rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p { margin: 0 0 1rem; color: var(--ink-700); }
ul, ol { margin: 0 0 1rem; padding-left: 1.4rem; }
li { margin-bottom: .35rem; color: var(--ink-700); }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

/* 3. ================ BOOTSTRAP-COMPAT UTILITY CLASSES ==================== */
.container, .container-fluid {
  width: 100%;
  margin-left: auto; margin-right: auto;
  padding-left: 16px; padding-right: 16px;
}
.container { max-width: 1140px; }

.row { display: flex; flex-wrap: wrap; margin-left: -8px; margin-right: -8px; }
.row > [class*="col-"] { padding-left: 8px; padding-right: 8px; }

[class*="col-"] { flex: 0 0 100%; max-width: 100%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-9  { flex: 0 0 75%;  max-width: 75%; }
.col-6  { flex: 0 0 50%;  max-width: 50%; }
.col-4  { flex: 0 0 33.333%; max-width: 33.333%; }
.col-3  { flex: 0 0 25%; max-width: 25%; }
@media (min-width: 768px) {
  .col-md-12 { flex: 0 0 100%;     max-width: 100%; }
  .col-md-8  { flex: 0 0 66.666%;  max-width: 66.666%; }
  .col-md-6  { flex: 0 0 50%;      max-width: 50%; }
  .col-md-4  { flex: 0 0 33.333%;  max-width: 33.333%; }
  .col-md-3  { flex: 0 0 25%;      max-width: 25%; }
}
@media (min-width: 992px) {
  .col-lg-12 { flex: 0 0 100%;     max-width: 100%; }
  .col-lg-10 { flex: 0 0 83.333%;  max-width: 83.333%; }
  .col-lg-9  { flex: 0 0 75%;      max-width: 75%; }
  .col-lg-8  { flex: 0 0 66.666%;  max-width: 66.666%; }
  .col-lg-6  { flex: 0 0 50%;      max-width: 50%; }
  .col-lg-4  { flex: 0 0 33.333%;  max-width: 33.333%; }
  .col-lg-3  { flex: 0 0 25%;      max-width: 25%; }
}
@media (min-width: 1200px) {
  .col-xl-9 { flex: 0 0 75%; max-width: 75%; }
  .col-xl-8 { flex: 0 0 66.666%; max-width: 66.666%; }
  .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
}

/* Margin / padding utilities */
.m-0 { margin: 0 !important; }
.m-auto { margin: auto !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.my-0  { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-3  { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-4  { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5  { margin-top: 3rem !important; margin-bottom: 3rem !important; }
.mt-0  { margin-top: 0 !important; } .mb-0 { margin-bottom: 0 !important; }
.mt-1  { margin-top: .25rem !important; } .mb-1 { margin-bottom: .25rem !important; }
.mt-2  { margin-top: .5rem !important; }  .mb-2 { margin-bottom: .5rem !important; }
.mt-3  { margin-top: 1rem !important; }   .mb-3 { margin-bottom: 1rem !important; }
.mt-4  { margin-top: 1.5rem !important; } .mb-4 { margin-bottom: 1.5rem !important; }
.mt-5  { margin-top: 3rem !important; }   .mb-5 { margin-bottom: 3rem !important; }
.ms-0  { margin-left: 0 !important; }     .me-0 { margin-right: 0 !important; }
.ms-1  { margin-left: .25rem !important; } .me-1 { margin-right: .25rem !important; }
.ms-2  { margin-left: .5rem !important; }  .me-2 { margin-right: .5rem !important; }
.ms-3  { margin-left: 1rem !important; }   .me-3 { margin-right: 1rem !important; }
.ms-auto { margin-left: auto !important; }
.me-auto { margin-right: auto !important; }
.p-0  { padding: 0 !important; }
.p-2  { padding: .5rem !important; }
.p-3  { padding: 1rem !important; }
.p-4  { padding: 1.5rem !important; }
.p-5  { padding: 2rem !important; }
.py-1 { padding-top: .25rem !important; padding-bottom: .25rem !important; }
.py-2 { padding-top: .5rem !important; padding-bottom: .5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.px-2 { padding-left: .5rem !important; padding-right: .5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.ps-2 { padding-left: .5rem !important; }
.ps-3 { padding-left: 1rem !important; }
.ps-4 { padding-left: 1.5rem !important; }
.pe-2 { padding-right: .5rem !important; }
.pe-3 { padding-right: 1rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
@media (min-width: 768px) {
  .p-md-4  { padding: 1.5rem !important; }
  .p-md-5  { padding: 2.5rem !important; }
  .py-md-5 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
  .ps-md-4 { padding-left: 1.5rem !important; }
  .pe-md-4 { padding-right: 1.5rem !important; }
  .mb-md-0 { margin-bottom: 0 !important; }
  .mb-md-3 { margin-bottom: 1rem !important; }
  .text-md-start  { text-align: left !important; }
  .text-md-center { text-align: center !important; }
  .text-md-end    { text-align: right !important; }
}
@media (min-width: 992px) {
  .py-lg-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .py-lg-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  .px-lg-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .gx-lg-5 { --gap-x: 3rem; }
}

/* Display & flex utilities */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }
.d-inline-block { display: inline-block !important; }
@media (min-width: 768px) {
  .d-md-none  { display: none !important; }
  .d-md-block { display: block !important; }
  .d-md-flex  { display: flex !important; }
}
@media (min-width: 992px) {
  .d-lg-none  { display: none !important; }
  .d-lg-block { display: block !important; }
  .d-lg-flex  { display: flex !important; }
}
.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.justify-content-start   { justify-content: flex-start !important; }
.justify-content-end     { justify-content: flex-end !important; }
.justify-content-center  { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around  { justify-content: space-around !important; }
.align-items-start       { align-items: flex-start !important; }
.align-items-end         { align-items: flex-end !important; }
.align-items-center      { align-items: center !important; }
.align-items-baseline    { align-items: baseline !important; }
.align-items-stretch     { align-items: stretch !important; }
.gap-1 { gap: .25rem !important; }
.gap-2 { gap: .5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gx-2 { column-gap: .5rem !important; }
.gx-3 { column-gap: 1rem !important; }
.gx-4 { column-gap: 1.5rem !important; }
.gx-5 { column-gap: 3rem !important; }

/* Text utilities */
.text-center { text-align: center !important; }
.text-left, .text-start { text-align: left !important; }
.text-right, .text-end  { text-align: right !important; }
.text-uppercase { text-transform: uppercase !important; }
.text-lowercase { text-transform: lowercase !important; }
.text-capitalize { text-transform: capitalize !important; }
.text-decoration-none { text-decoration: none !important; }
.text-decoration-underline { text-decoration: underline !important; }
.text-nowrap { white-space: nowrap !important; }
.text-break { word-break: break-word !important; overflow-wrap: anywhere !important; }
.fw-light  { font-weight: 300 !important; }
.fw-normal { font-weight: 400 !important; }
.fw-medium { font-weight: 500 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-bold   { font-weight: 700 !important; }
.fst-italic { font-style: italic !important; }
.fs-1 { font-size: 2.4rem !important; line-height: 1.2; }
.fs-2 { font-size: 2rem !important;   line-height: 1.25; }
.fs-3 { font-size: 1.55rem !important; line-height: 1.3; }
.fs-4 { font-size: 1.3rem !important; line-height: 1.35; }
.fs-5 { font-size: 1.15rem !important; line-height: 1.45; }
.fs-6 { font-size: 1rem !important;   line-height: 1.5; }
.lh-1 { line-height: 1 !important; }
.lh-base { line-height: 1.5 !important; }
.text-muted   { color: var(--ink-400) !important; }
.text-primary { color: var(--brand-700) !important; }
.text-secondary { color: var(--ink-500) !important; }
.text-faded   { color: var(--ink-700); }
.text-dark    { color: var(--ink-900) !important; }
.text-light   { color: rgba(255,255,255,.86) !important; }
.text-success { color: var(--ok) !important; }
.text-danger  { color: var(--err) !important; }
.text-white   { color: #fff !important; }
.small, small { font-size: .875em; }

/* Heading proxy classes (Bootstrap-like h1..h6) */
.h1 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); font-weight: 800; color: var(--ink-900); }
.h2 { font-size: clamp(1.45rem, 2.6vw, 2rem); font-weight: 800; color: var(--ink-900); }
.h3 { font-size: clamp(1.15rem, 1.7vw, 1.35rem); font-weight: 700; color: var(--ink-900); }
.h4 { font-size: 1.1rem; font-weight: 700; color: var(--ink-900); }
.h5 { font-size: 1rem;   font-weight: 700; color: var(--ink-900); }
.h6 { font-size: .9rem;  font-weight: 700; color: var(--ink-900); }

/* Background utilities */
.bg-white { background-color: #fff !important; }
.bg-light { background-color: var(--paper) !important; }
.bg-paper { background-color: var(--paper-2) !important; }
.bg-success { background-color: var(--ok) !important; color: #fff; }
.bg-danger  { background-color: var(--err) !important; color: #fff; }

/* Border utilities */
.border         { border: 1px solid var(--line) !important; }
.border-0       { border: 0 !important; }
.border-top     { border-top: 1px solid var(--line) !important; }
.border-bottom  { border-bottom: 1px solid var(--line) !important; }
.border-start   { border-left: 1px solid var(--line) !important; }
.border-end     { border-right: 1px solid var(--line) !important; }
.border-primary { border-color: var(--brand-500) !important; }
.border-line    { border-color: var(--line) !important; }

/* Other */
.rounded       { border-radius: var(--r-md) !important; }
.rounded-sm    { border-radius: var(--r-sm) !important; }
.rounded-lg    { border-radius: var(--r-lg) !important; }
.rounded-pill  { border-radius: 999px !important; }
.rounded-circle{ border-radius: 50% !important; }
.rounded-0     { border-radius: 0 !important; }

.img-fluid { max-width: 100%; height: auto; }
.list-unstyled { list-style: none; padding-left: 0; margin-left: 0; }
.list-inline { list-style: none; padding-left: 0; }
.list-inline-item { display: inline-block; margin-right: .5rem; }
.clearfix::after { content: ""; display: table; clear: both; }
.shadow    { box-shadow: var(--shadow-md) !important; }
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }
.shadow-none { box-shadow: none !important; }
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-sticky   { position: sticky !important; }
.overflow-hidden { overflow: hidden !important; }

/* Bootstrap-ish helpers used in HTML */
.text-bold           { font-weight: 400; }
.text-bold.strong    { font-weight: 600; }
.text-bold.stronger  { font-weight: 800; }

.bg-faded {
  background: linear-gradient(180deg, rgba(255,255,255,.65), rgba(252,230,194,.36));
  border-top: 1px solid rgba(231,217,188,.6);
  border-bottom: 1px solid rgba(231,217,188,.6);
}

/* 4. ================ HEADER / HERO Z BG.PNG ============================== */
header {
  position: relative;
  padding: 3.4rem 1rem 2.8rem;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 78% 35%, rgba(230,167,86,.20), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.40), rgba(0,0,0,.78)),
    url('../assets/img/bg.webp') center/cover no-repeat,
    #0c0606;
  color: #faf3e3;
  border-bottom: 1px solid rgba(230,167,86,.25);
}
header::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--paper) 95%);
  pointer-events: none;
  z-index: 0;
}
header > * { position: relative; z-index: 1; }

.site-heading { letter-spacing: .02em; color: #faf3e3; margin: 0; }
.site-heading-upper {
  display: inline-block;
  background: linear-gradient(135deg, #ffd9a8 0%, #efbe7c 50%, #e6a756 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-weight: 900;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  margin-bottom: .25rem;
  letter-spacing: -0.01em;
  filter: drop-shadow(0 4px 22px rgba(230,167,86,.40));
}
.site-heading-lower {
  display: block;
  color: rgba(250,243,227,.92);
  font-weight: 500;
  letter-spacing: .02em;
  font-size: clamp(.95rem, 1.8vw, 1.4rem);
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
  padding: 0 .5rem;
}

.site-logo { display: flex; justify-content: center; margin: 1rem 0 0; }
#logo {
  width: clamp(130px, 22vw, 200px);
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(230,167,86,.45));
  transition: transform .3s ease, filter .3s ease;
  cursor: pointer;
}
#logo:hover {
  transform: translateY(-2px) rotate(-1deg);
  filter: drop-shadow(0 18px 34px rgba(230,167,86,.65));
}

.social-links {
  display: inline-flex; gap: .9rem; align-items: center; justify-content: center;
  margin-top: 1rem;
}
.social-links a {
  display: inline-block;
  opacity: .85;
  transition: opacity .2s ease, transform .2s ease;
}
.social-links a:hover { opacity: 1; transform: translateY(-2px); }
.social-icon {
  width: 30px; height: 30px;
  filter: brightness(0) invert(.95);
}

/* Mobile hero - kompakt */
@media (max-width: 767.98px) {
  header { padding: 2rem .8rem 2rem; }
}
@media (max-width: 575.98px) {
  header { padding: 1.6rem .6rem 1.8rem; }
  .site-heading-upper { font-size: 1.85rem; }
  .site-heading-lower { font-size: .92rem; }
  .site-logo { margin-top: .8rem; }
  #logo { width: 130px; }
  .social-icon { width: 26px; height: 26px; }
}
/* Mobile zawsze pokaz tytul w hero (orig. mial d-none d-lg-block) */
@media (max-width: 991.98px) {
  .site-heading.d-none { display: block !important; }
}

/* 5. ================ NAVBAR ============================================== */
.navbar {
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-top: 1px solid rgba(231,217,188,.6);
  border-bottom: 1px solid rgba(231,217,188,.6);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1020;
  padding: .55rem 1rem;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.navbar-brand {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-weight: 900;
  letter-spacing: .06em;
  font-size: 1.1rem;
  text-decoration: none;
}
.navbar-toggler {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: .35rem .55rem;
  cursor: pointer;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.4em; height: 1.4em;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23b8762a' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 100%;
  vertical-align: middle;
}

.navbar-nav { list-style: none; padding: 0; margin: 0; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.nav-item { padding: 0; }
.nav-link {
  display: inline-block;
  color: var(--ink-700) !important;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  padding: .6rem .2rem;
  position: relative;
  font-size: .92rem;
}
.nav-link::after {
  content: '';
  position: absolute; left: 50%; bottom: 0;
  width: 0; height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
  transition: width .25s ease, left .25s ease;
}
.nav-link:hover { color: var(--brand-700) !important; }
.nav-link:hover::after,
.nav-item.active .nav-link::after { width: 70%; left: 15%; }
.nav-item.active .nav-link { color: var(--brand-700) !important; }

/* Mobile collapse - obsluguje data-bs-toggle z Bootstrap JS */
.collapse { display: none; }
.collapse.show { display: block; }
@media (min-width: 992px) {
  .navbar-collapse { display: flex !important; flex-grow: 1; justify-content: center; }
  .navbar-toggler { display: none; }
  .navbar-brand.d-lg-none { display: none !important; }
}
@media (max-width: 991.98px) {
  .navbar { padding: .55rem .8rem; }
  .navbar .container { flex-wrap: wrap; padding: 0; }
  .navbar-collapse {
    width: 100%; flex-basis: 100%;
    border-top: 1px solid rgba(231,217,188,.6);
    margin-top: .55rem;
  }
  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .35rem 0 .25rem;
    margin: 0;
  }
  .nav-item { width: 100%; border-bottom: 1px solid rgba(231,217,188,.4); }
  .nav-item:last-child { border-bottom: 0; }
  .nav-link {
    padding: .85rem .5rem;
    width: 100%;
    text-align: left;
    font-size: .95rem;
  }
  .nav-link::after { display: none; } /* nie potrzeba podkreślenia na mobilkach */
  .nav-item.active .nav-link {
    background: linear-gradient(90deg, rgba(230,167,86,.18), transparent);
    border-left: 3px solid var(--brand-500);
    padding-left: .85rem;
  }
}

/* 6. ================ SEKCJE ============================================== */
main { padding-top: 1.2rem; min-height: 50vh; }
main .container { padding-top: .5rem; }

.page-section, .seo-section, .content-section {
  padding: 3rem 0;
  position: relative;
}
.content-section { padding: 2rem 0; }

.seo-section h2,
.page-section h2,
.content-section h2 {
  position: relative;
  padding-bottom: .9rem;
  margin-bottom: 1.2rem;
}
.seo-section h2::after,
.page-section h2::after,
.content-section h2::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 64px; height: 4px;
  background: var(--gradient-brand);
  border-radius: 4px;
}
.seo-section.text-center h2::after,
.h2-center::after { left: 50% !important; transform: translateX(-50%); }
.h2-center { text-align: center; }

.section-heading { margin-bottom: 1rem; }
.section-heading-upper {
  display: block;
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  letter-spacing: -0.01em;
}
.section-heading-lower {
  display: block;
  color: var(--ink-900);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  margin-top: .3rem;
}

/* 7. ================ INTRO (obrazek + tekst) ============================ */
.intro {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 1.4fr;
  gap: 2rem;
  align-items: center;
  padding: 1rem 0 2rem;
}
.intro-img {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 4px;
  background: linear-gradient(135deg, rgba(255,217,168,.55), rgba(217,127,58,.55));
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
img.intro-img { /* gdy stosujemy <img> bezposrednio */
  border-radius: calc(var(--r-lg) - 4px);
  box-shadow: var(--shadow-lg);
  padding: 0;
  background: transparent;
}
.intro-text {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
}
.intro-text::before {
  content: '';
  position: absolute; left: -1px; top: 24px;
  width: 6px; height: 70px;
  background: var(--gradient-brand);
  border-radius: 6px;
}
.intro-text p { color: var(--ink-700); }
.intro-button { margin-top: 1.2rem; }

@media (max-width: 768px) {
  .intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .intro-text { padding: 1.4rem; }
}

/* 8. ================ KARTY SEO =========================================== */
.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 1.5rem;
}
.seo-card, .content-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.seo-card::before {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 4px; height: 100%;
  background: var(--gradient-brand);
  opacity: .85;
  transform: scaleY(.55);
  transform-origin: top;
  transition: transform .25s ease;
}
.seo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-300);
}
.seo-card:hover::before { transform: scaleY(1); }

.seo-card h3, .seo-card h4, .content-block h3 { margin-top: 0; color: var(--ink-900); }
.seo-card h3 a, .seo-card h4 a {
  color: var(--ink-900);
  background-image: linear-gradient(var(--brand-500), var(--brand-500));
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .25s ease, color .2s ease;
}
.seo-card h3 a:hover, .seo-card h4 a:hover {
  color: var(--brand-700);
  background-size: 100% 2px;
}
.seo-card p, .content-block p { color: var(--ink-600); margin-bottom: 0; }

.info-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-top: 1rem;
}
.info-block h2 {
  color: var(--ink-900);
  font-size: 1.25rem;
  margin-top: 0;
}
.info-block ul { margin-bottom: 0; }
.info-block p:last-child { margin-bottom: 0; }

/* 9. ================ BADGE LIST ========================================== */
.badge-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 1.6rem 0 0;
}
.badge-list li {
  background: rgba(255,255,255,.85);
  color: var(--brand-700);
  border: 1px solid var(--brand-300);
  font-weight: 600;
  padding: .45rem .9rem;
  border-radius: 999px;
  font-size: .87rem;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.badge-list li:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
}

/* 10. =============== FAQ ACCORDION ======================================= */
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1rem 1.3rem;
  margin-bottom: .7rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] {
  border-color: var(--brand-300);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  font-weight: 700;
  color: var(--ink-900);
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; gap: .7rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: '+';
  display: inline-flex; justify-content: center; align-items: center;
  width: 28px; height: 28px;
  background: var(--gradient-brand);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq details[open] summary::before { content: '−'; transform: rotate(180deg); }
.faq details p { margin: .8rem 0 0; color: var(--ink-700); }

/* 11. =============== BUTTONY ============================================= */
.btn {
  display: inline-block;
  padding: .65rem 1.2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: var(--r-sm);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease, background .2s ease, color .2s ease;
  line-height: 1.4;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: .4rem .8rem; font-size: .87rem; }
.btn-lg { padding: .85rem 1.4rem; font-size: 1.05rem; }
.btn-xl { padding: 1rem 1.7rem; font-size: 1.1rem; }

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 6px 16px rgba(217,127,58,.28);
}
.btn-primary:hover {
  box-shadow: 0 12px 24px rgba(217,127,58,.36);
  filter: brightness(1.04);
  color: #fff;
}
.btn-outline-primary {
  border: 2px solid var(--brand-500);
  color: var(--brand-700);
  background: rgba(255,255,255,.6);
  padding: calc(.65rem - 2px) calc(1.2rem - 2px);
}
.btn-outline-primary:hover {
  background: var(--brand-500);
  color: #fff;
}
.btn-outline-primary.btn-lg { padding: calc(.85rem - 2px) calc(1.4rem - 2px); }

#serviceButton {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}
#serviceButton::after {
  content: '';
  position: absolute; inset: -2px;
  background: var(--gradient-brand);
  filter: blur(14px);
  opacity: .35;
  z-index: -1;
}

/* 12. =============== TABELE ============================================== */
table { border-collapse: separate; border-spacing: 0; width: 100%; }
.opening-hours-table, .price-table {
  width: 100%;
  margin: 1rem 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
  border: 1px solid var(--line);
}
.opening-hours-table th, .opening-hours-table td,
.price-table th, .price-table td {
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  color: var(--ink-700);
}
.opening-hours-table th, .price-table th {
  background: var(--paper-2);
  font-weight: 700;
  color: var(--ink-900);
}
.opening-hours-table tr:last-child td,
.price-table tr:last-child td { border-bottom: 0; }

/* 13. =============== KARTY SKLEPU ======================================== */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin: 1rem 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card img {
  width: 100%; height: auto;
  border-top-left-radius: var(--r-md); border-top-right-radius: var(--r-md);
}
.card-body { padding: 1rem 1.2rem 1.2rem; }
.card-title { font-size: 1.15rem; font-weight: 700; color: var(--ink-900); margin: 0 0 .5rem; }
.card-text { color: var(--ink-700); margin-bottom: .9rem; }

/* Tabs (shop.html, service.html) - kafelki kategorii ------------------- */
.nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  list-style: none;
  padding: 0 0 .8rem;
  margin: 0 0 1.4rem;
  border-bottom: 1px solid var(--line);
  justify-content: center;
}
.nav-tabs .nav-item { margin: 0; flex-shrink: 0; }
.nav-tabs .nav-link {
  background: rgba(255,255,255,.65);
  border: 2px solid var(--brand-500);
  border-radius: var(--r-sm);
  color: var(--brand-700) !important;
  padding: .55rem 1.1rem;
  font-weight: 700;
  font-size: clamp(.85rem, 1.1vw, 1rem);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .15s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.nav-tabs .nav-link b { font-weight: 700; }
.nav-tabs .nav-link:hover {
  background: rgba(230,167,86,.15);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.nav-tabs .nav-link.active {
  background: var(--gradient-brand);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(217,127,58,.3);
}
/* Mobile: poziome przewijanie zamiast lamania wierszy */
@media (max-width: 575.98px) {
  .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: .6rem;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .nav-tabs::-webkit-scrollbar { height: 4px; }
  .nav-tabs::-webkit-scrollbar-thumb { background: var(--brand-300); border-radius: 4px; }
  .nav-tabs .nav-link {
    padding: .5rem .85rem;
    font-size: .85rem;
  }
}

/* Bootstrap tab-pane behavior - panele schowane/widoczne ---------------- */
.tab-content { position: relative; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-pane.fade { opacity: 0; transition: opacity .25s ease; }
.tab-pane.fade.show { opacity: 1; }
.tab-pane.fade.show.active { display: block; opacity: 1; }
/* Bootstrap dodaje .show przed .active podczas animacji - oba widoczne */
.tab-pane.show { display: block; }

/* Blog post cards */
.blog-post {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.6rem;
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-post:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-post p, .blog-post li { color: var(--ink-700); }

/* 14. =============== FOOTER ============================================== */
footer.footer {
  background: linear-gradient(180deg, transparent, rgba(31,13,8,.04)), var(--paper-2);
  color: var(--ink-500);
  border-top: 1px solid var(--line);
  position: relative;
  padding: 2rem 1rem;
  margin-top: 2.5rem;
  text-align: center;
}
footer.footer::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: .85;
}
footer.footer p { margin: 0 0 .25rem; color: var(--ink-500); }
footer.footer a {
  color: var(--ink-700);
  font-weight: 600;
  margin: 0 .25rem;
}
footer.footer a:hover { color: var(--brand-700); }
footer.footer .text-muted { color: var(--ink-400); }
footer.footer small { color: var(--ink-400); }

/* 15. =============== COOKIE BANNER + MODAL CMP ========================== */
.consent-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 14px 20px;
  background: linear-gradient(180deg, rgba(31,13,8,.96), rgba(31,13,8,.99));
  color: #fff;
  z-index: 9999;
  border-top: 2px solid var(--brand-500);
  backdrop-filter: blur(6px);
  box-shadow: 0 -4px 22px rgba(0,0,0,.30);
  display: none;
  max-height: 75vh;
  overflow-y: auto;
}
.consent-banner.is-shown { display: block; }
.consent-banner .container {
  max-width: 1100px; padding: 0;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 14px;
}
.consent-text {
  margin: 0;
  font-size: .9rem;
  color: #fff !important;
  flex: 1 1 320px;
  line-height: 1.5;
}
.consent-text strong,
.consent-text b { color: #ffd9a8 !important; font-weight: 700; }
.consent-text a { color: #ffd9a8 !important; text-decoration: underline; }
.consent-text a:hover { color: #fff !important; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.consent-actions .btn { padding: .55rem 1rem; font-size: .9rem; white-space: nowrap; }
.consent-actions .btn-outline {
  background: transparent;
  color: #ffd9a8 !important;
  border: 1px solid rgba(255,217,168,.6);
}
.consent-actions .btn-outline:hover {
  background: rgba(255,217,168,.14);
  color: #fff !important;
  border-color: #ffd9a8;
}
.consent-actions .btn-link {
  background: transparent;
  color: #ffd9a8 !important;
  border: 0;
  text-decoration: underline;
  padding: .55rem .6rem;
  box-shadow: none;
}
.consent-actions .btn-link:hover { color: #fff !important; transform: none; }

/* Mobile: kompaktowy banner, przyciski w wygodnej kolejnosci */
@media (max-width: 767.98px) {
  .consent-banner {
    padding: 12px 14px;
    max-height: 80vh;
  }
  .consent-banner .container {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .consent-text {
    font-size: .82rem;
    line-height: 1.45;
    flex: 0 0 auto;
    text-align: left;
  }
  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }
  .consent-actions .btn { width: 100%; padding: .65rem .5rem; font-size: .9rem; }
  /* Glowny CTA "Akceptuje wszystkie" pelna szerokosc na gorze */
  .consent-actions #consent-accept-all { grid-column: 1 / -1; order: -1; padding: .8rem; font-size: 1rem; }
  .consent-actions #consent-reject   { order: 1; }
  .consent-actions #consent-settings {
    order: 2;
    text-align: center;
    border: 1px solid rgba(255,217,168,.4);
    border-radius: var(--r-sm);
    padding: .65rem .5rem;
  }
}

/* Modal ustawien CMP */
.cookie-modal {
  position: fixed; inset: 0;
  z-index: 10000;
  display: flex; justify-content: center; align-items: center;
  padding: 16px;
  animation: cookieModalIn .2s ease both;
}
@keyframes cookieModalIn { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(31,13,8,.55);
  backdrop-filter: blur(2px);
}
.cookie-modal__panel {
  position: relative;
  max-width: 560px;
  width: 100%;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--brand-500);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}
.cookie-modal__panel h2 {
  margin: 0 0 .5rem;
  font-size: 1.3rem;
  color: var(--ink-900);
}
.cookie-modal__lead { color: var(--ink-600); font-size: .92rem; margin-bottom: 1rem; }
.cookie-modal__close {
  position: absolute; top: 8px; right: 12px;
  background: transparent; border: 0;
  font-size: 1.6rem; line-height: 1;
  color: var(--ink-500);
  cursor: pointer;
  width: 32px; height: 32px;
  border-radius: 50%;
}
.cookie-modal__close:hover { background: var(--paper-2); color: var(--ink-900); }
.cookie-modal__list { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.cookie-modal__row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: .8rem; border: 1px solid var(--line); border-radius: var(--r-md);
  margin-bottom: .6rem; cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.cookie-modal__row:hover { border-color: var(--brand-300); background: var(--paper); }
.cookie-modal__row input[type=checkbox] {
  width: 18px; height: 18px;
  margin-top: 3px; accent-color: var(--brand-600);
  flex-shrink: 0;
}
.cookie-modal__row span { display: block; color: var(--ink-700); font-size: .92rem; }
.cookie-modal__row strong { display: block; color: var(--ink-900); margin-bottom: 2px; }
.cookie-modal__row small { display: block; color: var(--ink-500); font-size: .82rem; line-height: 1.45; margin-top: 2px; }
.cookie-modal__actions {
  display: flex; flex-wrap: wrap; gap: .6rem;
  justify-content: flex-end;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.cookie-modal__actions .btn { padding: .55rem 1rem; font-size: .9rem; }
.cookie-modal__foot { margin: .8rem 0 0; font-size: .82rem; text-align: center; color: var(--ink-400); }
.cookie-modal__foot a { color: var(--brand-700); }

@media (max-width: 480px) {
  .cookie-modal { padding: 8px; }
  .cookie-modal__panel {
    padding: 1.3rem 1rem 1rem;
    max-height: calc(100vh - 16px);
  }
  .cookie-modal__panel h2 { font-size: 1.15rem; padding-right: 32px; }
  .cookie-modal__lead { font-size: .85rem; }
  .cookie-modal__row { padding: .65rem; }
  .cookie-modal__row strong { font-size: .92rem; }
  .cookie-modal__row small { font-size: .76rem; }
  .cookie-modal__actions { flex-direction: column; gap: .5rem; }
  .cookie-modal__actions .btn { width: 100%; }
}

/* 16. =============== SOCIAL ICONS (kontakt + hero) ====================== */
/* social-links + .social-icon: zdefiniowane w sekcji 4 (hero) */

/* 17. =============== SATURDAY BANNER ===================================== */
.saturday-banner {
  display: none;
  max-width: 680px;
  margin: 0 auto 18px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.saturday-banner.open  { background: linear-gradient(135deg, #d6f3df, #b6e7c5); color: #18603a; border-left: 4px solid var(--ok); display: block; }
.saturday-banner.closed{ background: linear-gradient(135deg, #ffd7d3, #f8b9b3); color: #8c2620; border-left: 4px solid var(--err); display: block; }
.saturday-banner small { display: block; font-weight: 400; opacity: .85; margin-top: 2px; }

/* 18. =============== MAPA ================================================ */
.map-iframe {
  border: 0;
  border-radius: var(--r-md);
  display: block;
  width: 100%;
  box-shadow: var(--shadow-sm);
}
#map-container { margin-top: 1rem; border-radius: var(--r-md); overflow: hidden; }

/* 18b. ============== KONTAKT - Hero + Godziny + Adres ==================== */
.cta-inner { background: rgba(255,255,255,.6); }
.section-heading { margin: 0; }
.section-heading-upper {
  display: block;
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
  margin-bottom: .25rem;
}
.section-heading-lower {
  display: block;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: .04em;
  color: rgba(255,255,255,.6);
}
.section-heading-lower.is-open   { color: var(--ok); }
.section-heading-lower.is-closed { color: var(--err); }

/* Karta z godzinami otwarcia */
.hours-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.hours-list { padding: 0; margin: 0; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  color: var(--ink-700);
  margin-bottom: 0;
}
.hours-row:last-child { border-bottom: 0; }
.hours-row strong { color: var(--ink-900); font-weight: 600; }
.hours-row.is-today {
  color: var(--brand-700);
  font-weight: 700;
}
.hours-row.is-today strong { color: var(--brand-700); }
.hours-row.is-today .text-muted { color: var(--brand-700) !important; }
.hours-row.is-open-day { color: var(--ok); }
.hours-row.is-open-day .text-muted { color: var(--ok) !important; }
.today-arrow {
  display: inline-block;
  margin-left: .4rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--brand-600);
}

/* Bloki kontaktowe (Adres / Tel / Email) */
.contact-block { line-height: 1.5; }
.contact-block p { margin-bottom: .35rem; }
.contact-label {
  text-transform: uppercase;
  color: var(--ink-400) !important;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 1px;
  margin-bottom: .35rem !important;
}
.phone-number {
  color: var(--brand-700);
  font-weight: 800;
  letter-spacing: -.01em;
}
.phone-number:hover { color: var(--brand-800); }

/* 19. =============== HELPERS ============================================= */
.is-hidden { display: none !important; }
.is-shown  { display: flex !important; }

.lead-narrow { max-width: 680px; margin: 0 auto 1.4rem; }
.cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; }
.fb-icon-inline { width: 20px; height: 20px; margin-right: 8px; vertical-align: -3px; display: inline-block; }

/* Mailto - obsluguje obfuskacje data-mail */
[data-mail]:empty::before {
  content: attr(data-user) "\0040" attr(data-domain);
}

/* Linki w prosie - lepszy hover */
main a:not(.btn):not(.nav-link):not([class*="navbar-"]) {
  background-image: linear-gradient(var(--brand-500), var(--brand-500));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: color .2s ease, background-size .2s ease, background-color .2s ease;
}
main a:not(.btn):not(.nav-link):not([class*="navbar-"]):hover {
  color: var(--ink-900);
  background-size: 100% 100%;
  background-image: linear-gradient(rgba(230,167,86,.18), rgba(230,167,86,.18));
}

/* Telefon (kontakt) */
.phone-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-700);
}
.phone-number:hover { color: var(--brand-800); }

/* Adres / about */
.address strong { font-size: 1.15rem; color: var(--ink-900); }

/* About-heading layout (kontakt - mapa) */
.about-heading { padding: 2rem 0; }
.about-heading-content { margin-top: 1rem; }
.about-heading-img {
  width: 100%; max-width: 100%; height: auto;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 1rem;
}

/* 20. =============== SKIP LINK + FOCUS =================================== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
  background: var(--ink-900);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: var(--r-sm);
  z-index: 10000;
  box-shadow: var(--shadow-md);
}

:focus-visible {
  outline: 2px solid var(--brand-600);
  outline-offset: 2px;
  border-radius: 4px;
}

/* 21. =============== ANIMACJE (z respektem na reduced-motion) =========== */
@media (prefers-reduced-motion: no-preference) {
  .seo-section, .intro {
    animation: gentleRise .55s ease both;
  }
}
@keyframes gentleRise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 22. =============== MOBILE FINESJE ====================================== */
@media (max-width: 767.98px) {
  .seo-section, .page-section, .content-section { padding: 1.8rem 0; }
  .container, .container-fluid { padding-left: 14px; padding-right: 14px; }
  .seo-card, .info-block, .content-block { padding: 1.1rem; }
  .intro-text { padding: 1.3rem !important; }
  .intro-text::before { top: 16px; height: 50px; }
  .cta-inner { padding: 1.4rem !important; }
  .badge-list { gap: .4rem; }
  .badge-list li { font-size: .8rem; padding: .35rem .7rem; }
  .row { margin-left: -6px; margin-right: -6px; }
  .row > [class*="col-"] { padding-left: 6px; padding-right: 6px; }
  .section-heading-upper { font-size: 1.5rem; }
  .section-heading-lower { font-size: 1.05rem; }
  .info-block h2 { font-size: 1.15rem; }
  .hours-card { padding: 1rem 1.1rem; }
  .hours-row { font-size: .9rem; padding: .5rem 0; }
  .contact-block .fs-3 { font-size: 1.4rem !important; }
  .contact-block .fs-5 { font-size: 1.05rem !important; }
  .contact-label { font-size: .72rem; }
  /* Bottom padding zeby banner cookies nie zaslanial CTA */
  body { padding-bottom: 0; }
}
@media (max-width: 575.98px) {
  .seo-section, .page-section { padding: 1.5rem 0; }
  #serviceButton { width: 100%; }
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }
  .btn-xl { font-size: .95rem; padding: .8rem 1rem; }
  .btn-lg { font-size: .92rem; padding: .65rem 1rem; }
  /* Footer kompaktowy */
  footer.footer { padding: 1.5rem 1rem; font-size: .85rem; }
  footer.footer .mt-3 a { display: inline-block; padding: .15rem .25rem; }
  /* FAQ */
  .faq details { padding: .75rem 1rem; }
  .faq summary { font-size: .95rem; }
  .faq summary::before { width: 24px; height: 24px; font-size: 1rem; }
  /* Saturday banner */
  .saturday-banner { font-size: .9rem; padding: .8rem 1rem; }
  /* Mapa */
  #map-container iframe, .map-iframe { height: 320px !important; }
}

/* 23. =============== PRINT =============================================== */
@media print {
  header, .navbar, .consent-banner, footer.footer, #serviceButton, .skip-link {
    display: none !important;
  }
  body { background: #fff !important; color: #000; }
  a { color: #000 !important; text-decoration: underline; }
  .seo-card, .info-block { box-shadow: none; border: 1px solid #999; }
}
