@charset "UTF-8";
/* ==========================================================================
   Wydruki i Oprawy — brand design system
   --------------------------------------------------------------------------
   Palette is lifted verbatim from the sister site kseromaluch.pl (same owner)
   so both properties read as one brand.

   COLOR ROLES — one colour, one job. Do not mix these up:
     --accent  (#FC5E1F)  interactive only: CTAs, links, active/selected state,
                          focus rings. Never a decorative surface.
     --ink     (#000027)  structural: headings, dark bars, the footer.
                          Never a CTA background.
     --paper / --line / --muted   neutral scale for surfaces, borders and text.
     --geo-*              decorative ONLY, and only inside the hero pattern.
                          They carry no interaction meaning.
   ========================================================================== */

/* Grid + icons + effects still relied on by the CMS and legacy content */
@import url(bootstrap.min.css);
@import url(animate.min.css);
@import url(hover-min.css);
@import url(../plugins/fontawesome-5/css/fontawesome-all.min.css);

:root {
  /* Brand */
  --accent:        #FC5E1F;   /* surfaces, borders, icons — the brand orange */
  --accent-hover:  #F48418;
  --accent-soft:   rgba(252, 94, 31, .10);
  --accent-ring:   rgba(252, 94, 31, .28);
  /* #FC5E1F only reaches ~3:1 on a light ground, so accent-coloured *text*
     uses this darker step. Same hue; clears AA on --paper (5.0:1), on white
     (5.3:1) and on --accent-soft (4.7:1). Backgrounds, borders and icons keep
     the exact brand orange above. */
  --accent-text:   #C43C00;

  --ink:           #000027;
  --ink-soft:      #444444;
  /* #868686 (the sister site's grey) is 3.5:1 — one step darker to clear AA. */
  --muted:         #6E6E6E;
  --muted-light:   #B0B0B0;   /* dividers and placeholders only, never body copy */

  --line:          #EDF2F7;
  --paper:         #F7FAFC;
  --surface:       #FFFFFF;

  /* Semantic — reserved for validation feedback. Never reuse them for
     emphasis or decoration, or they stop meaning "error" / "success".
     Both come from the sister site's palette. */
  --danger:        #B82105;
  --danger-soft:   rgba(184, 33, 5, .08);
  --success:       #13612E;
  --success-soft:  rgba(19, 97, 46, .08);

  /* Accent-derived edge, kept here so there is one definition of it */
  --accent-border: rgba(252, 94, 31, .22);

  /* Decorative pattern palette — hero only */
  --geo-teal:  #017595;
  --geo-navy:  #01356E;
  --geo-coral: #FD623E;
  --geo-amber: #FDB302;

  /* Type */
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  /* Shape — cards are softer than controls, that contrast is deliberate */
  --r-control: 8px;
  --r-card:    18px;
  --r-pill:    999px;

  /* Elevation — restrained; depth comes from the border, not the blur */
  --shadow-sm: 0 1px 2px rgba(0, 0, 39, .05);
  --shadow-md: 0 6px 20px -8px rgba(0, 0, 39, .16);
  --shadow-lg: 0 24px 48px -24px rgba(0, 0, 39, .30);

  --header-h: 84px;
  --ease: cubic-bezier(.4, .16, .2, 1);
}

/* --------------------------------------------------------------------------
   1. Base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

/* Bootstrap 3 ships `html { font-size: 10px }`, which would silently shrink
   every rem below to 62.5% of its intended size. Restore the browser default
   so `1rem == 16px` and the type scale means what it says. */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* No overflow clamp on <body>: it would turn the element into a clipping
     context and break `position: sticky` for the wizard progress bar. Sections
     that could bleed horizontally (.hero, .page-title) clip their own overflow. */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  color: var(--ink);
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.4rem, 1.3rem + 4.4vw, 4.4rem); font-weight: 900; line-height: 1.02; letter-spacing: -.03em; }
h2 { font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.8rem); font-weight: 800; line-height: 1.1;  letter-spacing: -.02em; }
h3 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem); font-weight: 700; line-height: 1.25; }
h4 { font-size: 1.125rem; font-weight: 600; line-height: 1.4; }
h5 { font-size: 1rem;     font-weight: 600; }
h6 { font-size: .875rem;  font-weight: 600; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-text); text-decoration: none; transition: color .2s var(--ease); }
a:hover, a:focus { color: var(--accent-hover); text-decoration: none; }

img { max-width: 100%; height: auto; }

hr { border: 0; border-top: 1px solid var(--line); margin: 28px 0; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 3px solid var(--accent-ring);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   2. Layout scaffolding
   -------------------------------------------------------------------------- */

.thm-container {
  width: 100%;
  max-width: 1200px;
  padding-left: 24px;
  padding-right: 24px;
  margin: 0 auto;
  display: block;
}

.sec-pad             { padding: 96px 0; }
.sec-top-pad         { padding: 96px 0 0; }
.sec-bottom-pad      { padding: 0 0 96px; }
.sec-bottom-half-pad { padding: 0 0 48px; }

.p0  { padding: 0 !important; }
.pt0 { padding-top: 0; }
.pb0 { padding-bottom: 0 !important; }
.mb0 { margin-bottom: 0 !important; }

/* Section heading group. `span` is the eyebrow, `h3` the headline. */
.sec-title { margin-bottom: 48px; }
.sec-title span {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.sec-title h2,
.sec-title h3 {
  font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 16px;
}
.sec-title p {
  max-width: 62ch;
  color: var(--muted);
  margin-left: auto;
  margin-right: auto;
}
.sec-title.text-center { text-align: center; }
.sec-title:last-child  { margin-bottom: 0; }

/* Page banner used by default.php / pricing.php */
.page-title {
  background: var(--ink);
  color: #fff;
  padding: 64px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-title::after {           /* a whisper of the hero pattern, clipped low */
  content: '';
  position: absolute;
  inset: 0 0 0 auto;
  width: 340px;
  background: url(../images/brand-pattern.svg) right center / 170px repeat;
  opacity: .16;
  -webkit-mask-image: linear-gradient(to left, #000, transparent);
          mask-image: linear-gradient(to left, #000, transparent);
}
.page-title h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 1.2rem + 2.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -.02em;
}

.breadcumb-wrapper { background: var(--surface); border-bottom: 1px solid var(--line); }
.breadcumb { list-style: none; margin: 0; padding: 16px 0; font-size: .875rem; }
.breadcumb li { display: inline-block; color: var(--muted); }
.breadcumb a { color: var(--muted); }
.breadcumb a:hover { color: var(--accent-text); }
.breadcumb .sep { margin: 0 8px; color: var(--muted-light); }
.breadcumb li:last-child span { color: var(--ink); font-weight: 600; }

/* Bootstrap 3 clearfixes `.row` with ::before/::after. Any `.row` we switch to
   flex would otherwise render those as stray flex items and overflow the grid. */
.recent-projects .row::before, .recent-projects .row::after,
.service-style-three .row::before, .service-style-three .row::after,
.pricing-section .row::before, .pricing-section .row::after,
.wo-shipment::before, .wo-shipment::after,
.contact-form .row::before, .contact-form .row::after,
#calculate-form .row::before, #calculate-form .row::after,
.price-feature .row::before, .price-feature .row::after,
#cart-content .row::before, #cart-content .row::after { display: none; }

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */

.thm-btn {
  --btn-bg: var(--accent);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  outline: 0;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.2;
  padding: 16px 34px;
  border-radius: var(--r-control);
  cursor: pointer;
  text-align: center;
  transition: background-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.thm-btn:hover,
.thm-btn:focus {
  --btn-bg: var(--accent-hover);
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.thm-btn:active { transform: translateY(0); box-shadow: none; }
.thm-btn[disabled], .thm-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

/* Legacy hook kept so existing markup and CMS blocks keep working. */
.thm-btn.yellow-bg { --btn-bg: var(--accent); --btn-fg: #fff; }
.thm-btn.yellow-bg:hover, .thm-btn.yellow-bg:focus { --btn-bg: var(--accent-hover); }

.thm-btn.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  box-shadow: inset 0 0 0 2px var(--line);
}
.thm-btn.btn-ghost:hover, .thm-btn.btn-ghost:focus {
  --btn-bg: var(--line);
  --btn-fg: var(--ink);
  box-shadow: inset 0 0 0 2px var(--line);
}

.thm-btn.btn-block { display: flex; width: 100%; }

/* --------------------------------------------------------------------------
   4. Form controls
   -------------------------------------------------------------------------- */

input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
input[type="number"], input[type="password"], input[type="search"], input[type="date"],
select, textarea, .form-control {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-control);
  padding: 13px 16px;
  box-shadow: none;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
textarea { min-height: 132px; resize: vertical; }

input:hover, select:hover, textarea:hover, .form-control:hover { border-color: var(--muted-light); }

input:focus, select:focus, textarea:focus, .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-ring);
  outline: none;
}

input::placeholder, textarea::placeholder { color: var(--muted-light); }

select {
  background-image: url("data:image/svg+xml;charset=utf-8,%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='%23868686' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}

input[type="number"] { -moz-appearance: textfield; }
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button { opacity: 1; height: 28px; }

label { font-weight: 500; color: var(--ink); }

/* Radio pills — used for paragon/faktura on the checkout form */
.rb { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 18px; }
.rb label {
  position: relative;
  flex: 1 1 140px;
  margin: 0;
  cursor: pointer;
}
.rb label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.rb label span {
  display: block;
  text-align: center;
  padding: 13px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-control);
  background: var(--surface);
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .18s var(--ease);
}
.rb label:hover span { border-color: var(--muted-light); }
.rb label input:checked + span {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-text);
  font-weight: 600;
}
.rb label input:focus-visible + span { box-shadow: 0 0 0 4px var(--accent-ring); }

/* Validation messages from jquery.validate */
label.error {
  display: block;
  color: var(--danger);
  font-size: .8125rem;
  font-weight: 500;
  margin: -10px 0 14px;
}
input.error, textarea.error, select.error { border-color: var(--danger); }

/* Status strip shown while files upload / the order posts.
   The markup puts the label text inside the bar, so it has to stay readable. */
[id^="progress"] { margin: 24px 0; }
[id^="progress"] .thm-container { padding: 0; }

.progress-bar {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 20px;
  border-radius: var(--r-control);
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: .9375rem;
  font-weight: 600;
  text-align: center;
  overflow: hidden;
}
.progress-bar::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--accent);
}
.progress-bar-striped::after {
  background-image: linear-gradient(90deg,
    var(--accent) 0 40%, var(--accent-hover) 40% 60%, var(--accent) 60% 100%);
  background-size: 220px 100%;
}
.progress-bar-striped.active::after { animation: wo-stripes 1.1s linear infinite; }
@keyframes wo-stripes { from { background-position: -220px 0; } to { background-position: 220px 0; } }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */

/* The bar sits in the flow, and `.header` reserves its height so that nothing
   jumps when custom.js promotes the inner nav to `position: fixed`. */
.header { position: relative; z-index: 900; min-height: var(--header-h); }

.header-navigation {
  border: 0;
  margin: 0;
  min-height: var(--header-h);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header-navigation > .thm-container {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--header-h);
}

/* Sticky state is toggled by custom.js */
.header-navigation.stricky-fixed {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  /* Near-opaque: content scrolling underneath is photo-heavy, and a lower
     alpha (or a saturate() backdrop filter) tints the bar with whatever the
     image behind it happens to be. */
  background: rgba(255, 255, 255, .97);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line), 0 8px 28px -20px rgba(0, 0, 39, .5);
  --header-h: 72px;
}
body.toolbar .header-navigation.stricky-fixed { top: 48px; }



.navbar-header { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }

.navbar-brand {
  display: flex;
  align-items: center;
  height: auto;
  padding: 0;
  margin: 0;
}
.navbar-brand img { max-height: 52px; width: auto; display: block; }
.navbar-default .navbar-brand,
.navbar-default .navbar-brand:hover { color: var(--ink); }

.navbar-toggle {
  display: none;
  order: 2;
  margin: 0;
  padding: 10px;
  border: 0;
  background: transparent;
  border-radius: var(--r-control);
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.navbar-toggle .icon-bar + .icon-bar { margin-top: 5px; }
.navbar-toggle:not(.collapsed) .icon-bar:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle:not(.collapsed) .icon-bar:nth-child(3) { opacity: 0; }
.navbar-toggle:not(.collapsed) .icon-bar:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

.main-navigation { flex: 1 1 auto; padding: 0; border: 0; box-shadow: none; }

.navigation-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  float: none;
}
.navigation-box > li { position: relative; }
.navigation-box > li > a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--r-control);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.navigation-box > li > a:hover,
.navigation-box > li > a:focus { color: var(--accent-text); background: var(--accent-soft); }
.navigation-box > li.current > a { color: var(--accent-text); font-weight: 600; }

/* The contact entries the autonav template appends read as metadata, not
   navigation — quieter, and the icon carries the accent. */
.navigation-box > li > a > .fas { color: var(--accent); font-size: .8125rem; }
.navigation-box > li:nth-last-child(-n+2) > a { color: var(--muted); font-size: .875rem; }
.navigation-box > li:nth-last-child(-n+2) > a:hover { color: var(--accent-text); }

.right-side-box { flex: 0 0 auto; display: flex; align-items: center; gap: 8px; }

.right-side-box .social,
.footer-bottom .social-box { display: flex; align-items: center; gap: 8px; }

.right-side-box .social a,
.social-box a,
.contact-widget .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: .9375rem;
  color: var(--ink);
  background: var(--line);
  transition: background-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.right-side-box .social a:hover,
.social-box a:hover,
.contact-widget .social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* Prominent order CTA, injected by the header template */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: var(--r-control);
  background: var(--accent);
  color: #fff;
  font-size: .9375rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.header-cta:hover, .header-cta:focus {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   6. Hero (home)
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--surface);
  padding: 84px 0 88px;
  overflow: hidden;
}
/* The one place the geometric artwork appears. Keeping it to a single
   high-impact spot is what makes it read as a signature rather than wallpaper. */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 46%;
  background: url(../images/brand-pattern.svg) center / 200px repeat;
  -webkit-mask-image: linear-gradient(105deg, transparent 0 12%, #000 34%);
          mask-image: linear-gradient(105deg, transparent 0 12%, #000 34%);
}
.hero > .thm-container { position: relative; z-index: 1; }
.hero-copy { max-width: 560px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero-lead {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Trust strip under the hero copy */
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ink);
}
.hero-points i { color: var(--accent); font-size: .875rem; }

/* --------------------------------------------------------------------------
   7. Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .68);
  padding: 80px 0 56px;
}
.footer a { color: rgba(255, 255, 255, .68); }
.footer a:hover { color: var(--accent); }

.footer-widget { margin-bottom: 32px; }
.footer-widget .title h3 {
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: .01em;
  margin: 0 0 20px;
  padding-bottom: 14px;
  position: relative;
}
.footer-widget .title h3::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 3px;
  border-radius: 2px;
  background: var(--accent);
}
.footer-widget p { color: rgba(255, 255, 255, .60); font-size: .9375rem; }

.footer .link-list { list-style: none; margin: 0; padding: 0; }
.footer .link-list li + li { margin-top: 10px; }
.footer .link-list a {
  font-size: .9375rem;
  display: inline-block;
  transition: color .18s var(--ease), transform .18s var(--ease);
}
.footer .link-list a:hover { transform: translateX(3px); }
.footer .link-list li.current > a { color: var(--accent); }

.footer-bottom {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .10);
  padding: 22px 0;
  color: rgba(255, 255, 255, .48);
  font-size: .875rem;
}
.footer-bottom .thm-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom .copy-text, .footer-bottom .social-box { float: none !important; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255, 255, 255, .48); }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom .social-box a {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .78);
  width: 34px; height: 34px;
  font-size: .875rem;
}
.footer-bottom .social-box a:hover { background: var(--accent); color: #fff; }

.scroll-to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 800;
  display: none;               /* jQuery fadeIn() sets this to block */
  width: 46px; height: 46px;
  line-height: 46px;
  text-align: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.scroll-to-top:hover { background: var(--accent-hover); transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   8. Home — the two entry cards (wycena / zamówienie)
   -------------------------------------------------------------------------- */

.recent-projects .row { display: flex; flex-wrap: wrap; }
.recent-projects .row > div { display: flex; margin-bottom: 24px; }

.single-recent-project {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.single-recent-project:hover,
.single-recent-project:focus {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.single-recent-project .img-box { overflow: hidden; background: var(--line); }
.single-recent-project .img-box img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.single-recent-project:hover .img-box img { transform: scale(1.05); }

.single-recent-project .text-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 26px;
}
.single-recent-project .text-box .inner { flex: 1 1 auto; }
.single-recent-project .text-box h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}
.single-recent-project .text-box p {
  margin: 4px 0 0;
  font-size: .875rem;
  font-weight: 400;
  color: var(--muted);
}
.single-recent-project .text-box .more {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: .875rem;
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.single-recent-project:hover .text-box .more { background: var(--accent); color: #fff; }

/* --------------------------------------------------------------------------
   9. Order flow — progress stepper
   -------------------------------------------------------------------------- */

.wo-steps {
  --wo-line: var(--line);
  display: flex;
  align-items: flex-start;
  list-style: none;
  margin: 0 0 44px;
  padding: 0;
  counter-reset: wo;
}
.wo-steps li {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--muted-light);
  padding-top: 42px;
}
/* Connector rail */
.wo-steps li::before {
  content: '';
  position: absolute;
  top: 15px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: var(--wo-line);
}
.wo-steps li:first-child::before { display: none; }
/* Numbered node */
.wo-steps li::after {
  counter-increment: wo;
  content: counter(wo);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  line-height: 30px;
  border-radius: 50%;
  border: 2px solid var(--wo-line);
  background: var(--surface);
  color: var(--muted-light);
  font-size: .8125rem;
  font-weight: 700;
}
.wo-steps li.is-done { color: var(--ink); }
.wo-steps li.is-done::after {
  content: '\f00c';                        /* fa-check */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: .6875rem;
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.wo-steps li.is-done::before { background: var(--accent); }
.wo-steps li.is-current { color: var(--accent-text); font-weight: 600; }
.wo-steps li.is-current::after {
  border-color: var(--accent);
  color: var(--accent-text);
  box-shadow: 0 0 0 5px var(--accent-ring);
}
.wo-steps li.is-current::before { background: var(--accent); }

/* Step heading used above each stage of the flow */
.wo-step-head { margin-bottom: 28px; }
.wo-step-head .wo-kicker {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 8px;
}
.wo-step-head h3 { margin: 0; font-size: clamp(1.3rem, 1.05rem + 1vw, 1.75rem); font-weight: 700; }
.wo-step-head p  { margin: 8px 0 0; color: var(--muted); font-size: .9375rem; }

/* --------------------------------------------------------------------------
   10. Order flow — choice cards (rodzaj pracy, typ wydruku…)
   -------------------------------------------------------------------------- */

.service-style-three .row { display: flex; flex-wrap: wrap; }
.service-style-three .row > div { display: flex; margin-bottom: 20px; }

.single-service-three {
  display: flex;
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-card);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}
a.single-service-three:hover,
a.single-service-three:focus {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.single-service-three .text-box {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 26px 28px;
}
.single-service-three .text-box h3 {
  flex: 1 1 auto;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}
.single-service-three .read-more {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--line);
  color: var(--ink);
  font-size: .875rem;
  transition: background-color .22s var(--ease), color .22s var(--ease), transform .22s var(--ease);
}
a.single-service-three:hover .read-more { background: var(--accent); color: #fff; transform: translateX(3px); }

/* The "already chosen" summary card the flow leaves behind */
.single-service-three.active {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.single-service-three.active .text-box h3 { color: var(--accent-text); }
.single-service-three.active .read-more { background: var(--accent); color: #fff; }

/* --------------------------------------------------------------------------
   11. Order flow — cover colour picker
   -------------------------------------------------------------------------- */

.pick-color, .pick-file { align-items: flex-start; }

.pick-color > div:first-child h4,
.pick-file  > div:first-child h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin: 0 0 6px;
}
.pick-color > div:first-child h4 small,
.pick-file  > div:first-child h4 small {
  display: block;
  font-size: .8125rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 4px;
}
/* The decorative chevron beside those headings adds nothing on a grid layout */
.pick-color > div:first-child .read-more,
.pick-file  > div:first-child .read-more { display: none; }

.color-pickers .row > div { margin-bottom: 22px; }

a.pick {
  display: block;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--surface);
  border: 2px solid var(--line);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
a.pick:hover, a.pick:focus { border-color: var(--muted-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }
a.pick.active { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-ring); }

a.pick figure { margin: 0; }
a.pick figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
a.pick figcaption {
  padding: 12px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  border-top: 1px solid var(--line);
}
a.pick.active figcaption { color: var(--accent-text); font-weight: 600; }

/* --------------------------------------------------------------------------
   12. Order flow — file source tiles + dropzone
   -------------------------------------------------------------------------- */

.file-pickers .pick-file > div:not(:first-child) { margin-bottom: 16px; }

.pick-file a[onclick] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  min-height: 138px;
  padding: 24px 16px;
  text-align: center;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-card);
  color: var(--ink);
  font-size: .9375rem;
  font-weight: 500;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease), color .2s var(--ease);
}
.pick-file a[onclick]:hover, .pick-file a[onclick]:focus {
  border-color: var(--accent);
  color: var(--accent-text);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pick-file a[onclick] i { font-size: 2rem !important; color: var(--accent); }
.pick-file a[onclick] br { display: none; }

#url-wrapper { margin-top: 8px; }
#url-wrapper > div { margin-bottom: 12px; }

/* Dropzone */
.dropzone {
  margin-top: 18px;
  border: 2px dashed var(--muted-light);
  border-radius: var(--r-card);
  background: var(--surface);
  padding: 44px 24px;
  min-height: 180px;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.dropzone:hover, .dropzone.dz-drag-hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.dropzone .dz-message {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.dropzone .dz-preview .dz-progress { border-radius: var(--r-pill); }
.dropzone .dz-preview .dz-progress .dz-upload { background: var(--accent); }

#logo-preview { background: var(--line); color: var(--ink); font-weight: 500; margin-bottom: 12px; }

/* --------------------------------------------------------------------------
   13. Order flow — print parameters, cart, summary
   -------------------------------------------------------------------------- */

.project-details-content {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.project-details-table > h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.project-details-table > h3:first-child { margin-top: 0; }

.single-project-details-table {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  padding: 11px 0;
}
.single-project-details-table .title {
  flex: 1 1 220px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.single-project-details-table .name {
  flex: 0 1 auto;
  min-width: 150px;
  margin-left: auto;
  font-weight: 500;
  color: var(--ink);
}
.single-project-details-table .name input,
.single-project-details-table .name select { min-width: 150px; }

/* A bare `.title` with no value alongside it is a group label, not a row */
.single-project-details-table .title:only-child {
  flex: 1 1 100%;
  font-weight: 600;
  color: var(--ink);
  padding-top: 12px;
}
.single-project-details-table h4 {
  flex: 1 1 100%;
  margin: 22px 0 4px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.project-details-table .thm-btn { margin-top: 10px; width: 100%; }
.project-details-table #cart { margin-bottom: 12px; }
/* "Dodaj kolejny" is the secondary path; "Dalej" is the one we want clicked. */
.project-details-table #cart.thm-btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  box-shadow: inset 0 0 0 2px var(--line);
}
.project-details-table #cart.thm-btn:hover,
.project-details-table #cart.thm-btn:focus {
  --btn-bg: var(--line);
  --btn-fg: var(--ink);
  box-shadow: inset 0 0 0 2px var(--line);
}

/* Uploaded-document previews */
#thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 14px;
  margin: 0;
  overflow-y: auto;
}
#thumbnails img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

/* Basket shell. The list itself is styled with `.wo-cart-*` further down —
   nothing here may target bare `h4`, or it would also hit the basket heading. */
#cart-content:not(:empty) {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 24px 28px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

/* Shipping options: a grid of equal cards rather than stacked full-width bars */
#step-5 .sec-title .row,
section[id="step-5"] .row { display: flex; flex-wrap: wrap; justify-content: center; }
#step-5 .row > div { margin-bottom: 14px; }
#step-5 .thm-btn {
  --btn-bg: var(--surface);
  --btn-fg: var(--ink);
  width: 100%;
  min-height: 68px;
  padding: 16px 20px;
  font-weight: 600;
  box-shadow: inset 0 0 0 1.5px var(--line);
}
#step-5 .thm-btn:hover, #step-5 .thm-btn:focus {
  --btn-bg: var(--surface);
  --btn-fg: var(--accent);
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 2px var(--accent), var(--shadow-md);
}

/* --------------------------------------------------------------------------
   14. Contact / checkout forms
   -------------------------------------------------------------------------- */

.contact-form-content, .contact-info {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form-content .title span, .contact-info .title span {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 8px;
}
.contact-form-content .title h2, .contact-info .title h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 26px;
}
.contact-form-content > h3 { font-size: 1.25rem; font-weight: 700; margin: 0 0 26px; }

.contact-form input,
.contact-form textarea,
.contact-form select { margin-bottom: 16px; }
.contact-form .thm-btn { margin-top: 6px; }
.contact-form .row { margin-bottom: 4px; }
.contact-form .row > div { display: flex; flex-direction: column; justify-content: center; }
.contact-form h4 {
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-control) var(--r-control) 0;
  padding: 14px 18px;
  margin: 8px 0 22px;
  line-height: 1.5;
}

/* Parcel-locker field: the map icon is the affordance, so make it look like one */
#parcel-selector { position: relative; }
#parcel-selector input { padding-right: 52px; cursor: pointer; }
#parcel-selector .fa-map {
  position: absolute;
  top: 16px; right: 18px;
  color: var(--accent-text);
  pointer-events: none;
}

.form-result .success, .form-result .inner.success {
  background: var(--success-soft);
  color: var(--success);
  border-radius: var(--r-control);
  padding: 14px 18px;
  margin-top: 16px;
  font-weight: 500;
}
.form-result .error, .form-result .inner.error {
  background: var(--danger-soft);
  color: var(--danger);
  border-radius: var(--r-control);
  padding: 14px 18px;
  margin-top: 16px;
  font-weight: 500;
}

.single-contact-info { padding: 14px 0; border-bottom: 1px solid var(--line); }
.single-contact-info:last-child { border-bottom: 0; }

.google-map { height: 420px; width: 100%; background: var(--line); }

/* --------------------------------------------------------------------------
   15. Pricing
   -------------------------------------------------------------------------- */

.pricing-section .row { display: flex; flex-wrap: wrap; }
.pricing-section .row > div { display: flex; margin-bottom: 26px; }

.single-pricing {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.single-pricing:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.single-pricing .list-box { list-style: none; margin: 0; padding: 0; text-align: left; }
.single-pricing .list-box li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--accent-text);
}
.single-pricing .list-box li:last-child { border-bottom: 0; }
.single-pricing .list-box li strong {
  flex: 1 1 auto;
  font-weight: 500;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   16. Wycena — the live price calculator
   -------------------------------------------------------------------------- */

.service-style-two {
  position: relative;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.service-style-two .overlay { display: none; }
.service-style-two .background-right {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(100deg, transparent 0 14%, #000 40%);
          mask-image: linear-gradient(100deg, transparent 0 14%, #000 40%);
}
.service-style-two .thm-container { position: relative; z-index: 1; }
.service-content h2 { margin-bottom: 30px; }

#calculate-form .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
#calculate-form .row:last-child { border-bottom: 0; }
#calculate-form label { margin: 0; font-weight: 500; color: var(--ink-soft); }

.price-feature-box {
  position: sticky;
  top: 100px;
  background: var(--ink);
  border-radius: var(--r-card);
  padding: 32px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.price-feature .row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  text-align: left;
}
.price-feature .row + .row { border-top: 1px solid rgba(255, 255, 255, .12); }
.price-feature h3 { margin: 0; color: rgba(255, 255, 255, .7); font-size: .9375rem; font-weight: 500; }
.price-feature .row h3[data-print],
.price-feature .row h3[data-shipment] {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
  text-align: right;
}
.price-feature .row h3[data-print] { color: var(--accent); }

/* Google reviews block: styled in its own stylesheet, at
   application/blocks/google_reviews/view.css — concrete5 injects that after
   this file, so putting the rules here would just be overridden. */

/* --------------------------------------------------------------------------
   18. Preloader
   -------------------------------------------------------------------------- */

body.active-preloader-ovh { overflow: hidden; }
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
}
.preloader .spinner {
  width: 44px; height: 44px;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: wo-spin .8s linear infinite;
}
@keyframes wo-spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   19. CMS editing surface — keep concrete5's own UI legible
   -------------------------------------------------------------------------- */

.ccm-ui span { font-family: inherit; color: inherit; font-size: inherit; }
body.edit-mode .header-navigation.stricky-fixed { position: static; }

/* --------------------------------------------------------------------------
   20. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1199px) {
  .navigation-box > li > a { padding: 10px 11px; font-size: .9rem; }
}

@media (max-width: 991px) {
  :root { --header-h: 72px; }

  .sec-pad             { padding: 64px 0; }
  .sec-top-pad         { padding: 64px 0 0; }
  .sec-bottom-pad      { padding: 0 0 64px; }
  .sec-bottom-half-pad { padding: 0 0 36px; }

  .navbar-toggle { display: block; }
  .navbar-header { flex: 1 1 auto; justify-content: space-between; width: 100%; }
  .header-navigation > .thm-container { flex-wrap: wrap; gap: 0; }

  /* Collapsed drawer */
  .main-navigation.collapse:not(.in) { display: none; }
  .main-navigation {
    flex: 1 1 100%;
    max-height: calc(100vh - var(--header-h) - 20px);
    overflow-y: auto;
    border-top: 1px solid var(--line);
    margin-top: 8px;
    padding: 12px 0;
  }
  .navigation-box { flex-direction: column; align-items: stretch; gap: 2px; }
  .navigation-box > li > a { padding: 13px 12px; font-size: 1rem; }
  .navigation-box > li:nth-last-child(-n+2) > a { font-size: .9375rem; }

  .right-side-box { display: none; }

  .hero { padding: 56px 0 64px; text-align: center; }
  .hero::after { display: none; }
  .hero-copy { max-width: none; margin: 0 auto; }
  .hero-actions, .hero-points { justify-content: center; }

  .price-feature-box { position: static; margin-top: 32px; }
  .service-style-two .background-right { display: none; }

  .footer { padding: 56px 0 32px; }
}

@media (max-width: 767px) {
  body { font-size: 15px; }

  .thm-container { padding-left: 18px; padding-right: 18px; }

  .sec-pad             { padding: 48px 0; }
  .sec-top-pad         { padding: 48px 0 0; }
  .sec-bottom-pad      { padding: 0 0 48px; }
  .sec-title           { margin-bottom: 32px; }

  .page-title { padding: 44px 0; }
  .page-title::after { width: 180px; }

  .thm-btn { width: 100%; padding: 15px 24px; }
  .header-cta { width: auto; }

  /* Numbered rail is too dense on a phone — show the current stage only */
  .wo-steps { margin-bottom: 32px; }
  .wo-steps li { font-size: 0; padding-top: 38px; }
  .wo-steps li.is-current { font-size: .8125rem; }
  .wo-steps li::after { width: 28px; height: 28px; line-height: 26px; }
  .wo-steps li::before { top: 13px; }

  .project-details-content, .contact-form-content, .contact-info { padding: 24px 20px; }
  .single-project-details-table { padding: 9px 0; }
  .single-project-details-table .name { margin-left: 0; width: 100%; }
  .single-project-details-table .name input,
  .single-project-details-table .name select { width: 100%; }

  .single-recent-project .text-box { padding: 20px; }
  .single-service-three .text-box { padding: 20px; gap: 14px; }
  .single-service-three .text-box h3 { font-size: 1.0625rem; }

  #cart-content:not(:empty) { padding: 20px; }
  #thumbnails { grid-template-columns: repeat(auto-fill, minmax(94px, 1fr)); }

  .footer-bottom .thm-container { justify-content: center; text-align: center; }
}

/* --------------------------------------------------------------------------
   21. Order flow — supporting pieces
   -------------------------------------------------------------------------- */

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 12px 20px;
  border-radius: 0 0 var(--r-control) var(--r-control);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

.nav-cta-mobile { display: none; padding: 12px 12px 4px; }
.nav-cta-mobile .header-cta { display: flex; justify-content: center; }

/* Sticky progress bar for the wizard */
#wo-progress {
  position: sticky;
  top: 0;
  z-index: 600;
  display: none;
  padding-top: 18px;
  padding-bottom: 6px;
  background: linear-gradient(var(--paper) 78%, rgba(247, 250, 252, 0));
}
#wo-progress.is-visible { display: block; }
body.toolbar #wo-progress { top: 48px; }
#wo-progress .wo-steps { margin-bottom: 18px; }

/* Icon badge on a choice card */
.wo-card-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: 1.125rem;
  transition: background-color .22s var(--ease), color .22s var(--ease);
}
a.single-service-three:hover .wo-card-icon { background: var(--accent); color: #fff; }

.single-service-three .text-box h3 small {
  display: block;
  margin-top: 5px;
  font-size: .8125rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.45;
}

/* "You already picked X" confirmation strip */
.wo-chosen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: 16px 22px;
  border-radius: var(--r-card);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
}
.wo-chosen-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-text);
}
.wo-chosen-value { font-weight: 600; color: var(--ink); }

/* Primary / secondary action pair at the foot of the parameters card */
.wo-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.wo-actions .thm-btn { margin-top: 0; width: 100%; }

.wo-preview {
  position: sticky;
  top: 96px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.wo-preview-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.wo-preview-title i { color: var(--accent); font-size: 1rem; }

/* Selected file source */
.pick-file a[onclick].is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-text);
}

/* Running total above the shipping choices */
.wo-total {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 26px;
  margin-bottom: 28px;
  border-radius: var(--r-card);
  background: var(--ink);
  color: #fff;
}
.wo-total-label { font-size: .9375rem; color: rgba(255, 255, 255, .7); }
.wo-total-value { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }

.wo-shipment { display: flex; flex-wrap: wrap; }
.wo-shipment > div { display: flex; margin-bottom: 14px; }
.wo-shipment .thm-btn {
  --btn-bg: var(--surface);
  --btn-fg: var(--ink);
  width: 100%;
  justify-content: flex-start;
  gap: 14px;
  padding: 18px 22px;
  text-align: left;
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.wo-shipment .thm-btn:hover,
.wo-shipment .thm-btn:focus {
  --btn-bg: var(--surface);
  --btn-fg: var(--ink);
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 2px var(--accent), var(--shadow-md);
}
.wo-shipment .thm-btn > i { color: var(--accent); font-size: 1.125rem; width: 22px; text-align: center; }
.wo-ship-name  { flex: 1 1 auto; }
.wo-ship-price { flex: 0 0 auto; font-weight: 700; color: var(--accent-text); white-space: nowrap; }

.wo-field-hint {
  margin: -8px 0 16px;
  font-size: .8125rem;
  color: var(--muted);
}
.wo-optional { color: var(--muted-light); font-weight: 400; }

.contact-form label { display: block; margin: 0 0 7px; font-size: .875rem; font-weight: 600; }
.contact-form .rb label { margin-bottom: 0; }
.contact-form .rb + textarea { margin-top: 4px; }

/* Basket summary rendered into #cart-content */
.wo-cart-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 6px;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.wo-cart-title i { color: var(--accent); font-size: 1rem; }
.wo-cart-list { margin: 0; padding: 0; list-style: none; counter-reset: cart; }
.wo-cart-list > li {
  counter-increment: cart;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.wo-cart-list > li:last-child { border-bottom: 0; padding-bottom: 0; }
.wo-cart-thumb {
  flex: 0 0 auto;
  width: 62px;
  height: 84px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.wo-cart-body { flex: 1 1 auto; min-width: 0; }
.wo-cart-body h5 { margin: 0 0 3px; font-size: 1rem; font-weight: 600; }
.wo-cart-body h5::before { content: counter(cart) ". "; color: var(--accent-text); }
.wo-cart-body p { margin: 0; font-size: .875rem; color: var(--muted); }
.wo-cart-price { flex: 0 0 auto; font-weight: 700; color: var(--ink); white-space: nowrap; }

/* Confirmation */
.wo-done {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 44px 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.wo-done-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px; height: 68px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: 1.75rem;
}
.wo-done h3 { margin: 0 0 8px; }
.wo-done p { color: var(--muted); margin-bottom: 22px; }
.wo-order-code {
  display: inline-block;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  background: var(--line);
  font-size: .9375rem;
  color: var(--ink-soft);
}
.wo-order-code strong { color: var(--ink); letter-spacing: .04em; }

.wo-grand-total {
  margin-top: 8px;
  padding: 18px 20px !important;
  border-radius: var(--r-control);
  background: var(--accent-soft);
}
.wo-grand-total .title { font-weight: 700; color: var(--ink); }
.wo-grand-total .name strong { font-size: 1.375rem; font-weight: 800; color: var(--accent-text); }

.wo-pay { text-align: center; margin-top: 32px; }
.wo-pay img { max-width: 100%; }

.wo-spam-note {
  display: flex;
  gap: 10px;
  margin: 26px 0 0;
  padding: 14px 18px;
  border-radius: var(--r-control);
  background: var(--line);
  font-size: .875rem;
  color: var(--ink-soft);
}
.wo-spam-note i { color: var(--accent); margin-top: 4px; }

/* CTA inside the dark price box on /wycena */
.price-feature-box .thm-btn {
  margin-top: 22px;
  --btn-bg: var(--accent);
  --btn-fg: #fff;
}

/* Step head paragraph icon */
.wo-step-head p i { color: var(--accent); margin-right: 6px; }
.wo-step-head p strong { color: var(--ink); }

/* --------------------------------------------------------------------------
   22. Responsive — flow components
   (kept last so these win over the base rules above)
   -------------------------------------------------------------------------- */

@media (max-width: 991px) {
  .nav-cta-mobile { display: block; }

  .wo-preview { position: static; margin-top: 24px; }
  #thumbnails { height: auto !important; max-height: 420px; }

  .price-feature-box { position: static; }
}

@media (max-width: 767px) {
  .wo-step-head { margin-bottom: 22px; }

  .wo-chosen { padding: 14px 18px; }

  .wo-total { padding: 16px 20px; }
  .wo-total-value { font-size: 1.25rem; }

  .wo-shipment .thm-btn { padding: 16px 18px; gap: 12px; }

  .wo-cart-list > li { gap: 14px; }
  .wo-cart-thumb { width: 48px; height: 64px; }
  .wo-cart-price { font-size: .9375rem; }

  .wo-done { padding: 32px 22px; }
  .wo-done-icon { width: 56px; height: 56px; font-size: 1.375rem; }

  .pick-file a[onclick] { min-height: 108px; flex-direction: row; justify-content: flex-start; gap: 16px; text-align: left; }
  .pick-file a[onclick] i { font-size: 1.5rem !important; }

  .dropzone { padding: 32px 18px; min-height: 150px; }

  #wo-progress { padding-top: 12px; }
}
