/* ==========================================================================
   neocase.pl / verde
   Nowoczesny sklep. Jasna baza, zielen jako kolor marki.
   Sygnatura: wybor telefonu wprost w naglowku strony - to realne zadanie
   klienta w sklepie z etui, wiec dostaje najlepsze miejsce.
   ========================================================================== */

:root {
  --v-bg: #F5F7F4;
  --v-surface: #FFFFFF;
  --v-plate: #F0F3EF;          /* podklad pod zdjeciem produktu */
  --v-ink: #101613;
  --v-muted: #5D6C64;
  --v-line: #E3E8E2;

  --v-brand: #0E6E44;
  --v-brand-deep: #08472C;
  --v-brand-soft: #E7F2EA;
  --v-accent: #17A55C;

  --v-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --v-body: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;

  --v-gutter: clamp(1rem, 4vw, 3.5rem);
  --v-max: 1400px;
  --v-r: 14px;
  --v-r-lg: 26px;
  --v-ease: cubic-bezier(.2, .7, .3, 1);
  --v-shadow: 0 1px 2px rgba(16, 22, 19, .04), 0 8px 24px -12px rgba(16, 22, 19, .14);
  --v-shadow-lift: 0 2px 4px rgba(16, 22, 19, .05), 0 20px 40px -18px rgba(16, 22, 19, .25);
}

/* --------------------------------------------------------------- BAZA ---- */

body {
  background: var(--v-bg);
  color: var(--v-ink);
  font-family: var(--v-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

#wrapper, #main, .container, #content-wrapper {
  background: transparent;
  box-shadow: none;
}
#wrapper { padding: 0; }
#wrapper .container { max-width: var(--v-max); padding-inline: var(--v-gutter); }

a { color: var(--v-brand); text-decoration: none; transition: color .18s var(--v-ease); }
a:hover { color: var(--v-brand-deep); }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--v-brand);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3, h4, .h1, .h2, .h3 {
  font-family: var(--v-display);
  font-weight: 700;
  color: var(--v-ink);
  letter-spacing: -.022em;
  line-height: 1.12;
}

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

.v-wrap { max-width: var(--v-max); margin-inline: auto; padding-inline: var(--v-gutter); }

/* ----------------------------------------------------------- NAGLOWEK ---- */

#header {
  background: var(--v-surface);
  border-bottom: 1px solid var(--v-line);
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 900;
}
#header .header-top, #header .header-nav {
  background: transparent;
  border: 0;
  max-width: var(--v-max);
  margin-inline: auto;
  padding-inline: var(--v-gutter);
}
/* cienki pasek informacyjny nad naglowkiem */
.v-ticker {
  background: var(--v-brand-deep);
  color: #DCEFE3;
  font-size: .8rem;
  letter-spacing: .01em;
}
.v-ticker__inner {
  max-width: var(--v-max);
  margin-inline: auto;
  padding: .55rem var(--v-gutter);
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.v-ticker__item { display: inline-flex; align-items: center; gap: .45rem; }
.v-ticker__item::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--v-accent);
  flex: none;
}

#header .header-nav { min-height: 0; padding-block: 0; }
#header .header-top { padding-block: 1rem; }

.v-bar { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem); }
.v-bar__nav { flex: 1 1 auto; }
.v-bar__tools { margin-left: auto; display: flex; align-items: center; gap: .75rem; }

.v-logo {
  font-family: var(--v-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.03em;
  color: var(--v-ink);
  text-transform: none !important;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: .1em;
}
.v-logo span { color: var(--v-brand); }
.v-logo:hover { color: var(--v-ink); }
#header h1 { margin: 0; }

.v-nav { display: flex; gap: clamp(.75rem, 2vw, 1.75rem); list-style: none; margin: 0; padding: 0; }
.v-nav a {
  font-size: .94rem;
  font-weight: 500;
  color: var(--v-ink);
  padding: .5rem .1rem;
  position: relative;
}
.v-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: .15rem;
  width: 0; height: 2px;
  background: var(--v-brand);
  border-radius: 2px;
  transition: width .22s var(--v-ease);
}
.v-nav a:hover { color: var(--v-brand); }
.v-nav a:hover::after { width: 100%; }

#header .search-widget form input[type="text"] {
  background: var(--v-bg);
  border: 1px solid var(--v-line);
  border-radius: 999px;
  color: var(--v-ink);
  font-family: var(--v-body);
  font-size: .9rem;
  padding: .6rem 1rem;
}
#header .search-widget form input[type="text"]::placeholder { color: var(--v-muted); }
#header .search-widget form button[type="submit"] i { color: var(--v-brand); }
#header .blockcart { background: transparent !important; }
#header .blockcart a, #header .blockcart .cart-products-count { color: var(--v-ink) !important; }
#header .blockcart:hover a { color: var(--v-brand) !important; }
#header .blockcart .shopping-cart { color: var(--v-brand); }
#_desktop_user_info a, #_desktop_user_info span { color: var(--v-ink); font-size: .9rem; }

/* --------------------------------------------------------------- HERO ---- */

.v-hero { padding-block: clamp(1rem, 2.5vw, 2rem) 0; }
.v-hero__panel {
  max-width: var(--v-max);
  margin-inline: auto;
  background: var(--v-brand-deep);
  border-radius: var(--v-r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  position: relative;
}
.v-hero__copy {
  padding: clamp(2rem, 4.5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #EAF5EE;
}
.v-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  align-self: flex-start;
  background: rgba(255, 255, 255, .1);
  color: #C8E6D4;
  border-radius: 999px;
  padding: .35rem .85rem;
  font-size: .78rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.v-hero__title {
  font-family: var(--v-display);
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  margin: 0 0 1rem;
}
.v-hero__lead {
  color: #B8D8C5;
  font-size: 1.02rem;
  max-width: 46ch;
  margin: 0 0 1.75rem;
}

/* wybor telefonu - element sygnaturowy */
.v-picker {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--v-r);
  padding: 1.15rem;
}
.v-picker__label {
  font-size: .8rem;
  font-weight: 600;
  color: #C8E6D4;
  margin-bottom: .75rem;
  display: block;
}
.v-picker__chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.v-picker__chips a {
  font-size: .84rem;
  font-weight: 500;
  color: #EAF5EE;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: .4rem .8rem;
  transition: all .18s var(--v-ease);
}
.v-picker__chips a:hover { background: #fff; color: var(--v-brand-deep); border-color: #fff; }
.v-picker__more { font-size: .82rem; color: #9CCBAF; margin-top: .75rem; display: inline-block; }
.v-picker__more:hover { color: #fff; }

.v-hero__media {
  position: relative;
  min-height: clamp(300px, 34vw, 460px);
  background: linear-gradient(160deg, #0F7A4C 0%, #0A5233 100%);
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 3vw, 3rem);
}
.v-hero__plate {
  width: min(78%, 380px);
  aspect-ratio: 1;
  background: var(--v-surface);
  border-radius: var(--v-r-lg);
  display: grid;
  place-items: center;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .45);
  overflow: hidden;
}
.v-hero__plate img { width: 100%; height: 100%; object-fit: contain; padding: 8%; }
.v-hero__tag {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2.5rem);
  background: var(--v-surface);
  color: var(--v-ink);
  border-radius: 999px;
  padding: .5rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  box-shadow: var(--v-shadow);
}
.v-hero__tag b { color: var(--v-brand); }

/* ------------------------------------------------------------ SEKCJE ---- */

.v-section { max-width: var(--v-max); margin-inline: auto; padding-inline: var(--v-gutter); padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.v-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
  flex-wrap: wrap;
}
.v-section__title { font-size: clamp(1.5rem, 2.8vw, 2.25rem); margin: 0; }
.v-section__sub { color: var(--v-muted); font-size: .95rem; margin: .35rem 0 0; }
.v-section__link { font-weight: 600; font-size: .95rem; color: var(--v-brand); white-space: nowrap; }
.v-section__link::after { content: " →"; }

/* zaufanie */
.v-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.v-trust__item {
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  border-radius: var(--v-r);
  padding: 1.35rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.v-trust__mark {
  width: 38px; height: 38px;
  flex: none;
  border-radius: 10px;
  background: var(--v-brand-soft);
  color: var(--v-brand);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--v-display);
  font-size: .95rem;
}
.v-trust__k { font-weight: 700; font-family: var(--v-display); display: block; margin-bottom: .1rem; }
.v-trust__v { color: var(--v-muted); font-size: .9rem; }

/* wybor urzadzenia */
.v-devices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.v-devices__card {
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  border-radius: var(--v-r);
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
}
.v-devices__title {
  font-size: 1.05rem;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.v-devices__count {
  background: var(--v-brand-soft);
  color: var(--v-brand);
  border-radius: 999px;
  padding: .1rem .55rem;
  font-size: .78rem;
  font-weight: 600;
  font-family: var(--v-body);
}
.v-devices__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.v-devices__list a {
  display: block;
  font-size: .86rem;
  font-weight: 500;
  color: var(--v-ink);
  background: var(--v-bg);
  border: 1px solid var(--v-line);
  border-radius: 999px;
  padding: .38rem .8rem;
  transition: all .16s var(--v-ease);
}
.v-devices__list a:hover { background: var(--v-brand); border-color: var(--v-brand); color: #fff; }

/* pas redakcyjny */
.v-band {
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  border-radius: var(--v-r-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  align-items: center;
}
.v-band__copy { padding: clamp(1.75rem, 3.5vw, 3rem); }
.v-band__copy h2 { font-size: clamp(1.4rem, 2.6vw, 2.1rem); margin: 0 0 .85rem; }
.v-band__copy p { color: var(--v-muted); margin: 0 0 1.5rem; max-width: 48ch; }
.v-band__media { background: var(--v-plate); padding: clamp(1.5rem, 3vw, 2.5rem); height: 100%; display: grid; place-items: center; }
.v-band__media img { width: min(100%, 265px); aspect-ratio: 1; object-fit: contain; }

/* powody */
.v-reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.v-reasons__item {
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  border-radius: var(--v-r);
  padding: 1.6rem;
}
.v-reasons__item h3 { font-size: 1.05rem; margin: 0 0 .5rem; }
.v-reasons__item p { color: var(--v-muted); font-size: .93rem; margin: 0; }
.v-reasons__n {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--v-brand);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--v-display);
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: .9rem;
}

/* faq */
.v-faq { background: var(--v-surface); border: 1px solid var(--v-line); border-radius: var(--v-r); overflow: hidden; }
.v-faq__item + .v-faq__item { border-top: 1px solid var(--v-line); }
.v-faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.v-faq__item summary::-webkit-details-marker { display: none; }
.v-faq__item summary::after {
  content: "+";
  margin-left: auto;
  color: var(--v-brand);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform .2s var(--v-ease);
}
.v-faq__item[open] summary::after { transform: rotate(45deg); }
.v-faq__item summary:hover { color: var(--v-brand); }
.v-faq__item p { color: var(--v-muted); margin: 0; padding: 0 1.5rem 1.35rem; max-width: 78ch; }

/* -------------------------------------------------------- LISTA PRODUKTOW */

.products, #products .products, .featured-products .products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(.85rem, 1.5vw, 1.35rem);
  margin: 0 !important;
  width: 100%;
}
.products.row, #products .products.row { margin-inline: 0 !important; }
.products > .product, .products > .js-product, .products > [class*="col-"],
#products .products > .product, #products .products > .js-product, #products .products > [class*="col-"] {
  flex: none !important; max-width: none !important; width: auto !important;
  padding: 0 !important; margin: 0 !important;
}
.products > .product > .product-miniature, .products > .js-product > .product-miniature { width: 100%; }

.product-miniature .thumbnail-container {
  position: relative;
  width: auto; height: auto;
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  border-radius: var(--v-r);
  box-shadow: none;
  overflow: hidden;
  padding: 0 0 1.1rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s var(--v-ease), transform .25s var(--v-ease), border-color .25s var(--v-ease);
}
.product-miniature .thumbnail-container:hover,
.product-miniature .thumbnail-container:focus-within {
  box-shadow: var(--v-shadow-lift);
  transform: translateY(-3px);
  border-color: #D3DDD5;
}
.product-miniature .thumbnail-container .product-thumbnail {
  display: block;
  background: var(--v-plate);
  padding: 0;
  margin: 0;
}
/* Zdjecia maja biale tlo - bez multiply widac bialy prostokat na szarej plycie. */
.product-miniature .thumbnail-container .product-thumbnail img {
  width: 100%;
  height: auto !important;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 9%;
  mix-blend-mode: multiply;
  transition: transform .35s var(--v-ease);
}
.product-miniature .thumbnail-container:hover .product-thumbnail img { transform: scale(1.04); }

.product-miniature .product-description {
  position: static; width: auto; background: transparent;
  padding: .95rem 1.05rem 0; text-align: left; border: 0; box-shadow: none;
  display: flex; flex-direction: column; gap: .4rem; margin-top: auto;
}
.product-miniature .product-title { margin: 0; }
.product-miniature .product-title a {
  font-family: var(--v-body);
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--v-ink);
  text-transform: none;
  letter-spacing: 0;
  display: block;
}
.product-miniature .product-title a:hover { color: var(--v-brand); }
.product-miniature .product-price-and-shipping, .product-miniature .price {
  font-family: var(--v-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--v-ink);
  letter-spacing: -.02em;
}
.product-miniature .regular-price {
  font-family: var(--v-body);
  font-size: .85rem;
  font-weight: 400;
  color: var(--v-muted);
  text-decoration: line-through;
  margin-right: .45rem;
}
.product-miniature .product-flags { top: .75rem; left: .75rem; right: auto; margin: 0; z-index: 5; display: flex; gap: .35rem; }
.product-flags li.product-flag, #product .product-flags li.product-flag {
  background: var(--v-ink) !important;
  color: #fff !important;
  font-family: var(--v-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
  border-radius: 999px;
  padding: .25rem .65rem;
  box-shadow: none;
  min-height: 0;
  line-height: 1.5;
}
.product-flags li.product-flag.discount, .product-flags li.product-flag.on-sale,
.product-flags li.product-flag.discount-percentage { background: var(--v-accent) !important; color: #fff !important; }
.product-miniature .highlighted-informations, .product-miniature .quick-view, .product-miniature .variant-links { display: none !important; }
.product-miniature .wishlist-button-add {
  top: .7rem; right: .7rem; z-index: 6;
  background: rgba(255,255,255,.92) !important;
  border: 1px solid var(--v-line);
  box-shadow: none;
}
.product-miniature .wishlist-button-add i { color: var(--v-muted); }

/* ---------------------------------------------------------- PRZYCISKI ---- */

.btn-primary, .btn.btn-primary, .v-btn {
  background: var(--v-brand);
  border: 1px solid var(--v-brand);
  color: #fff;
  font-family: var(--v-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 999px;
  padding: .85rem 1.75rem;
  box-shadow: none;
  transition: background .18s var(--v-ease), transform .18s var(--v-ease);
}
.btn-primary:hover, .btn.btn-primary:hover, .v-btn:hover {
  background: var(--v-brand-deep);
  border-color: var(--v-brand-deep);
  color: #fff;
  transform: translateY(-1px);
}
.v-btn--light { background: #fff; border-color: #fff; color: var(--v-brand-deep); }
.v-btn--light:hover { background: #EAF5EE; border-color: #EAF5EE; color: var(--v-brand-deep); }
.v-btn--ghost { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.v-btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.btn-secondary, .btn.btn-secondary {
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  color: var(--v-ink);
  border-radius: 999px;
  text-transform: none;
  font-weight: 600;
  font-size: .92rem;
  font-family: var(--v-body);
}
.btn-secondary:hover { border-color: var(--v-brand); color: var(--v-brand); }

/* --------------------------------------------- KATEGORIA / KARTA PRODUKTU */

#category h1, .block-category h1, #category #js-product-list-header h1 {
  font-family: var(--v-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-transform: none !important;
}
#category .block-category { min-height: 0 !important; padding: 0 0 .5rem; background: transparent; border: 0; }
#category .block-category .category-description { color: var(--v-muted); max-width: 62ch; }
#js-product-list-top .total-products p, .products-selection .total-products p { color: var(--v-muted); font-size: .9rem; }
.products-selection select, select.form-control,
.form-control:not([type="checkbox"]):not([type="radio"]) {
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  border-radius: 999px;
  color: var(--v-ink);
  font-family: var(--v-body);
  font-size: .92rem;
  padding: .6rem 1.05rem;
  box-shadow: none;
}
.breadcrumb, #wrapper .breadcrumb { background: transparent; padding-left: 0; }
.breadcrumb li a, .breadcrumb li span { color: var(--v-muted); font-size: .88rem; }
.breadcrumb li a:hover { color: var(--v-brand); }

#product #content-wrapper { padding-top: clamp(1rem, 3vw, 2rem); }
#product .images-container .product-cover {
  background: var(--v-plate);
  border: 1px solid var(--v-line);
  border-radius: var(--v-r-lg);
  padding: 4%;
}
#product .images-container .product-cover img { border-radius: 0; background: transparent; }
#product .product-images { display: flex; gap: .5rem; padding: 0; margin-top: .85rem; list-style: none; overflow-x: auto; }
#product .product-images > li.thumb-container { flex: 0 0 auto; width: 78px; padding: 0; margin: 0; }
#product .product-images > li.thumb-container > .thumb {
  width: 78px; height: 78px;
  object-fit: contain;
  background: var(--v-plate);
  border: 1px solid var(--v-line);
  border-radius: 10px;
  padding: 6%;
  margin: 0;
}
#product .product-images > li.thumb-container > .thumb.selected,
#product .product-images > li.thumb-container > .thumb:hover { border-color: var(--v-brand); }
#product h1.h1, #product .product-title, #product h1 {
  font-family: var(--v-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  text-transform: none !important;
  line-height: 1.2;
  margin-bottom: .85rem;
}
#product .product-prices, #product .product-information, #product .product-actions, #product .tabs {
  background: transparent; box-shadow: none; border: 0; color: var(--v-ink);
}
#product .product-price, #product .current-price span, #product .product-prices .price {
  font-family: var(--v-display);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 700;
  color: var(--v-ink);
  letter-spacing: -.025em;
}
#product .product-prices .tax-shipping-delivery-label { color: var(--v-muted); font-size: .85rem; }
#product #product-description-short, #product .product-information > .product-description {
  color: var(--v-muted);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--v-line);
}
#product .product-description { color: var(--v-ink); }
#product .product-description p { color: var(--v-muted); }
#product .product-description h2 { font-size: clamp(1.15rem, 1.8vw, 1.5rem); margin-top: 2rem; margin-bottom: .7rem; }
#product .tabs .nav-tabs { border-bottom: 1px solid var(--v-line); }
#product .tabs .nav-tabs .nav-link {
  color: var(--v-muted); font-weight: 600; font-size: .95rem;
  text-transform: none; border: 0; border-bottom: 2px solid transparent;
}
#product .tabs .nav-tabs .nav-link.active { color: var(--v-ink); border-bottom-color: var(--v-brand); background: transparent; }
#product .product-actions .product-add-to-cart { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
#product .product-quantity { display: flex; align-items: center; gap: 1rem; margin: 0; }
#product-details .data-sheet { display: grid; grid-template-columns: 1fr 1fr; margin: 0; }
#product-details .data-sheet dt, #product-details .data-sheet dd {
  background: transparent; border-bottom: 1px solid var(--v-line);
  padding: .8rem 0; margin: 0; font-weight: 400; font-size: .92rem;
}
#product-details .data-sheet dt.name { color: var(--v-muted); }
#product-details .data-sheet dd.value { color: var(--v-ink); text-align: right; font-weight: 500; }
@media (min-width: 992px) {
  #product #content-wrapper .product-information { position: sticky; top: 8rem; align-self: start; }
}

/* --------------------------------------------------- KOSZYK / KASA ------- */

.card, .cart-grid-body .card, .cart-grid-right .card, #checkout .card,
.cart-summary, .cart-detailed-totals, #order-details,
.page-customer-account #content, .page-authentication #content {
  background: var(--v-surface) !important;
  border: 1px solid var(--v-line);
  border-radius: var(--v-r);
  box-shadow: none;
  color: var(--v-ink);
}
.card-block, .card-body, .card-header, .card-footer { background: transparent !important; border-color: var(--v-line) !important; }
.cart-grid-body .card .card, .cart-grid-body .card > .cart-overview { border: 0 !important; background: transparent !important; }
.cart-grid .card-block h1, #main .cart-grid h1, #checkout h1, #cart h1, .checkout-step .step-title {
  font-family: var(--v-display); font-size: clamp(1.3rem, 2.2vw, 1.9rem); text-transform: none !important;
}
.cart-item { border-bottom: 1px solid var(--v-line); padding-block: 1.1rem; }
.cart-item:last-child { border-bottom: 0; }
.cart-grid-body .product-line-grid-left img, .cart-item .product-image img,
#checkout #cart-summary-product-list .media img, #blockcart-modal .product-image {
  background: var(--v-plate); border: 1px solid var(--v-line); border-radius: 10px; padding: 5%;
}
.product-line-info a.label, .cart-item .product-line-info > a { color: var(--v-ink) !important; font-weight: 500; text-transform: none; }
.product-line-info .product-price, .product-line-grid-right .product-price, .cart-items .product-price {
  color: var(--v-ink) !important; font-family: var(--v-display); font-weight: 700;
}
.cart-summary-line { border: 0; background: transparent !important; color: var(--v-muted); }
.cart-summary-line .label, .cart-summary-line .value { color: var(--v-muted) !important; }
.cart-summary-line.cart-total { border-top: 1px solid var(--v-line); padding-top: .9rem; margin-top: .5rem; }
.cart-summary-line.cart-total .label, .cart-summary-line.cart-total .value {
  color: var(--v-ink) !important; font-family: var(--v-display); font-weight: 700; font-size: 1.15rem;
}
.cart-summary-line .value.free, .cart-summary-line .free { color: var(--v-accent) !important; font-weight: 600; }
.cart-line-product-actions .remove-from-cart i, .product-line-grid-right .remove-from-cart i { color: var(--v-muted) !important; }
.cart-line-product-actions .remove-from-cart:hover i { color: #C0392B !important; }

input[type="text"], input[type="email"], input[type="password"],
input[type="tel"], input[type="number"], textarea, .bootstrap-touchspin input.form-control {
  background: var(--v-surface) !important;
  border: 1px solid var(--v-line) !important;
  color: var(--v-ink) !important;
  border-radius: 10px !important;
  font-family: var(--v-body);
}
input::placeholder, textarea::placeholder { color: var(--v-muted); }
.bootstrap-touchspin .btn-touchspin { background: var(--v-surface) !important; border: 1px solid var(--v-line) !important; color: var(--v-muted) !important; }
.form-control-label, label, .form-control-comment { color: var(--v-muted); }

#blockcart-modal .modal-content, .modal-content {
  background: var(--v-surface); border: 1px solid var(--v-line);
  border-radius: var(--v-r-lg); color: var(--v-ink); box-shadow: var(--v-shadow-lift);
}
#blockcart-modal .modal-header, #blockcart-modal .modal-body, #blockcart-modal .modal-footer,
.modal-header, .modal-body, .modal-footer { background: transparent; border-color: var(--v-line); }
#blockcart-modal .modal-title { color: var(--v-ink) !important; font-family: var(--v-display); }
#blockcart-modal .modal-title i.material-icons { color: var(--v-accent); }
#blockcart-modal .product-name { color: var(--v-ink) !important; font-weight: 500; }
#blockcart-modal .product-price { color: var(--v-ink) !important; font-family: var(--v-display); font-weight: 700; }
#blockcart-modal .divide-right { border-right: 1px solid var(--v-line); }
#blockcart-modal .cart-content .label, #blockcart-modal .cart-content p > span:first-child { color: var(--v-muted) !important; }
#blockcart-modal .cart-content .value { color: var(--v-ink) !important; }
#blockcart-modal .cart-content .shipping.value { color: var(--v-accent) !important; }
#blockcart-modal .product-total {
  background: transparent !important; border-top: 1px solid var(--v-line);
  padding-top: .85rem; margin-top: .5rem; display: flex; justify-content: space-between; align-items: baseline;
}
#blockcart-modal .product-total .label, #blockcart-modal .product-total .value {
  color: var(--v-ink) !important; font-family: var(--v-display); font-weight: 700; font-size: 1.1rem;
}
#blockcart-modal .cart-content-btn { display: flex; gap: .75rem; margin-top: 1.25rem; flex-wrap: wrap; }

#checkout .checkout-step { border-bottom: 1px solid var(--v-line); }
#checkout .checkout-step .step-number,
#checkout .checkout-step.-current .step-number,
#checkout .checkout-step.-reachable.-complete .step-number {
  background: var(--v-brand) !important; color: #fff !important; border: 0;
}
#checkout .checkout-step:not(.-current):not(.-complete) .step-number {
  background: var(--v-bg) !important; color: var(--v-muted) !important; border: 1px solid var(--v-line);
}
#checkout .checkout-step:not(.-current) .step-title { color: var(--v-muted); }
#checkout .delivery-option, #checkout .payment-option {
  background: var(--v-surface); border: 1px solid var(--v-line); border-radius: var(--v-r);
  margin-bottom: .6rem; padding: .95rem;
}
#checkout .delivery-option:hover, #checkout .payment-option:hover { border-color: var(--v-brand); }
.custom-checkbox input[type="checkbox"] + span, .custom-radio { border-color: var(--v-line); }
.custom-checkbox input[type="checkbox"]:checked + span,
.custom-radio input[type="radio"]:checked + span { background: var(--v-brand); border-color: var(--v-brand); }
.alert-success { background: var(--v-brand-soft); border-color: #C6E2D0; color: var(--v-brand-deep); }
a.text-primary, .text-primary, .btn-link, #checkout .step-edit { color: var(--v-brand) !important; }
.v-checkout-nav { padding-block: 1rem; border-bottom: 1px solid var(--v-line); background: var(--v-surface); }
.v-checkout-nav__note { color: var(--v-muted); font-size: .85rem; }
.v-checkout-footer, #checkout #footer .container { color: var(--v-muted); font-size: .85rem; padding-block: 2rem; }

/* ------------------------------------------------------------ STOPKA ---- */

#footer { background: transparent; padding: 0; }
.v-footer { background: var(--v-surface); border-top: 1px solid var(--v-line); margin-top: clamp(2rem, 5vw, 4rem); }
.v-footer__inner {
  max-width: var(--v-max); margin-inline: auto;
  padding: clamp(2.25rem, 4vw, 3.5rem) var(--v-gutter) 1.75rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(1.5rem, 3vw, 3rem);
}
.v-footer h4 { font-family: var(--v-body); font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--v-muted); margin-bottom: .9rem; }
.v-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.v-footer a { color: var(--v-ink); font-size: .93rem; }
.v-footer a:hover { color: var(--v-brand); }
.v-footer__note { color: var(--v-muted); max-width: 40ch; margin-top: .85rem; font-size: .92rem; }
.v-footer__bottom {
  border-top: 1px solid var(--v-line); max-width: var(--v-max); margin-inline: auto;
  padding: 1.25rem var(--v-gutter); display: flex; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; font-size: .87rem; color: var(--v-muted);
}

/* ------------------------------------------------------------- RUCH ---- */

.v-reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--v-ease), transform .6s var(--v-ease); }
.v-reveal.is-in { opacity: 1; transform: none; }
.v-reveal[data-delay="1"] { transition-delay: .06s; }
.v-reveal[data-delay="2"] { transition-delay: .12s; }
.v-reveal[data-delay="3"] { transition-delay: .18s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .v-reveal { opacity: 1; transform: none; }
}

/* ----------------------------------------------------- RESPONSYWNOSC ---- */

@media (max-width: 1024px) {
  .v-hero__panel { grid-template-columns: 1fr; }
  .v-hero__media { order: -1; min-height: 280px; }
  .v-band { grid-template-columns: 1fr; }
  .v-band__media { order: -1; }
  .v-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .v-trust, .v-reasons, .v-devices { grid-template-columns: 1fr; }
}
@media (max-width: 991px) {
  .v-bar { flex-wrap: wrap; justify-content: space-between; }
  .v-bar__nav { order: 3; width: 100%; padding-top: .5rem; overflow-x: auto; }
  .v-nav { flex-wrap: nowrap; }
}
@media (max-width: 768px) {
  .v-footer__inner { grid-template-columns: 1fr; }
  .products, #products .products { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .7rem; }
  .v-ticker__inner { gap: 1rem; font-size: .74rem; }
}

/* elementy motywu bazowego spoza tego jezyka */
.header-banner { display: none; }
.featured-products > .products-section-title, .featured-products > h2.products-section-title { display: none !important; }
.product-miniature .thumbnail-container .thumbnail-top { position: static; }

/* to samo na karcie produktu i w galerii */
#product .images-container .product-cover img,
#product .product-images > li.thumb-container > .thumb,
.v-band__media img,
.v-hero__plate img { mix-blend-mode: multiply; }

/* ==========================================================================
   MENU ROZWIJANE (ps_mainmenu) + FILTRY (ps_facetedsearch)
   ========================================================================== */

#_desktop_top_menu, .menu {
  background: var(--v-surface);
  border-bottom: 1px solid var(--v-line);
}
.menu > ul, #_desktop_top_menu > ul {
  max-width: var(--v-max);
  margin-inline: auto;
  padding-inline: var(--v-gutter);
  display: flex;
  gap: clamp(.5rem, 2vw, 1.75rem);
  list-style: none;
}
.menu .top-menu a[data-depth="0"] {
  font-family: var(--v-body);
  font-size: .95rem;
  font-weight: 500;
  color: var(--v-ink);
  padding: .9rem 0;
  border: 0;
  text-transform: none;
}
.menu .top-menu a[data-depth="0"]:hover { color: var(--v-brand); background: transparent; }
.top-menu .sub-menu {
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  border-top: 2px solid var(--v-brand);
  border-radius: 0 0 var(--v-r) var(--v-r);
  box-shadow: var(--v-shadow-lift);
  padding: 1.25rem 1.5rem;
  margin-top: 0;
}
.top-menu .sub-menu a {
  color: var(--v-ink);
  font-size: .92rem;
  padding: .3rem 0;
  border: 0;
}
.top-menu .sub-menu a:hover { color: var(--v-brand); }
.top-menu .sub-menu li.category { padding: 0; }
.popover.sub-menu { z-index: 950; }

/* kolumna z filtrami */
#left-column { padding-right: clamp(1rem, 2vw, 2rem); }
#search_filters, #search_filters_wrapper #search_filters {
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  border-radius: var(--v-r);
  padding: 1.25rem;
  box-shadow: none;
}
#search_filters .facet { border-bottom: 1px solid var(--v-line); padding-bottom: .9rem; margin-bottom: .9rem; }
#search_filters .facet:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
#search_filters .facet-title, #search_filters .h6 {
  font-family: var(--v-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--v-muted);
  margin-bottom: .6rem;
}
#search_filters .facet-label a, #search_filters li a { color: var(--v-ink); font-size: .92rem; }
#search_filters .facet-label a:hover { color: var(--v-brand); }
#search_filters .magnitude { color: var(--v-muted); font-size: .85rem; }
#search_filters .custom-checkbox input[type="checkbox"] + span { border-color: var(--v-line); border-radius: 4px; }
#search_filters .ui-slider-horizontal { background: var(--v-line); border: 0; height: 4px; border-radius: 4px; }
#search_filters .ui-slider .ui-slider-range { background: var(--v-brand); }
#search_filters .ui-slider .ui-slider-handle { background: var(--v-brand); border: 2px solid #fff; border-radius: 50%; box-shadow: var(--v-shadow); }
#js-active-search-filters {
  background: var(--v-brand-soft);
  border: 1px solid #CDE5D6;
  border-radius: var(--v-r);
  padding: .85rem 1rem;
  margin-bottom: 1rem;
}
#js-active-search-filters .filter-block {
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  border-radius: 999px;
  color: var(--v-ink);
  font-size: .85rem;
  padding: .3rem .75rem;
}

/* ==========================================================================
   SEKCJE SKLEPU WIELOKATEGORIOWEGO
   ========================================================================== */

/* hero: dwa produkty zamiast jednego */
.v-hero__duo { position: relative; width: min(90%, 420px); aspect-ratio: 1.15; }
.v-hero__plate--a, .v-hero__plate--b { position: absolute; width: 68%; aspect-ratio: 1; }
.v-hero__plate--a { left: 0; top: 0; z-index: 2; }
.v-hero__plate--b { right: 0; bottom: 0; z-index: 3; }

/* kafle kategorii */
.v-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.85rem, 1.5vw, 1.35rem); }
.v-cats__tile {
  display: flex;
  flex-direction: column;
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  border-radius: var(--v-r);
  overflow: hidden;
  transition: box-shadow .25s var(--v-ease), transform .25s var(--v-ease);
}
.v-cats__tile:hover { box-shadow: var(--v-shadow-lift); transform: translateY(-3px); }
.v-cats__media { display: block; background: var(--v-plate); }
.v-cats__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; padding: 6%; mix-blend-mode: multiply; }
.v-cats__body { padding: 1.05rem 1.15rem 1.25rem; display: flex; flex-direction: column; gap: .2rem; }
.v-cats__name { font-family: var(--v-display); font-weight: 700; font-size: 1.1rem; color: var(--v-ink); letter-spacing: -.02em; }
.v-cats__meta { color: var(--v-muted); font-size: .88rem; }

/* marki */
.v-brands { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(.85rem, 1.5vw, 1.35rem); }
.v-brands__item {
  display: flex; flex-direction: column; gap: .5rem;
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  border-radius: var(--v-r);
  padding: clamp(1.35rem, 2.5vw, 2rem);
  transition: border-color .2s var(--v-ease), box-shadow .2s var(--v-ease);
}
.v-brands__item:hover { border-color: var(--v-brand); box-shadow: var(--v-shadow); }
.v-brands__name { font-family: var(--v-display); font-weight: 800; font-size: 1.5rem; color: var(--v-ink); letter-spacing: -.03em; }
.v-brands__desc { color: var(--v-muted); font-size: .93rem; max-width: 46ch; }
.v-brands__meta { color: var(--v-brand); font-weight: 600; font-size: .88rem; margin-top: .25rem; }

@media (max-width: 900px) {
  .v-cats, .v-brands { grid-template-columns: 1fr; }
  .v-hero__duo { width: min(80%, 320px); }
}

/* pusty blok aktywnych filtrow nie ma sie renderowac jako kolorowy pasek */
#js-active-search-filters:empty,
#js-active-search-filters:not(:has(.filter-block)) { display: none; }
/* uklad kategorii z kolumna filtrow */
#category #wrapper > .container > .row { display: flex; flex-wrap: wrap; }
#category #left-column { flex: 0 0 clamp(220px, 22%, 300px); max-width: 300px; }
#category #content-wrapper { flex: 1 1 0; min-width: 0; }
@media (max-width: 991px) {
  #category #left-column { flex: 0 0 100%; max-width: none; padding-right: 0; margin-bottom: 1rem; }
}

/* naglowki filtrow nie moga byc ucinane */
#search_filters .facet-title, #search_filters .h6,
#search_filters .facet-label a, #search_filters li a {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-break: normal;
}
#search_filters .facet-label { display: flex; align-items: flex-start; gap: .5rem; }
/* bloki marek/dostawcow w tym samym jezyku co filtry */
#left-column .block-categories, #left-column .brands, #left-column .suppliers,
#left-column section.block {
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  border-radius: var(--v-r);
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: none;
}
#left-column section.block .h6, #left-column .block .title {
  font-family: var(--v-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--v-muted);
}
#left-column a { color: var(--v-ink); font-size: .92rem; }
#left-column a:hover { color: var(--v-brand); }

/* przyciski nie moga lamac tekstu w srodku - caly przycisk przechodzi nizej */
.v-btn, .btn-primary, .btn.btn-primary, .btn-secondary { white-space: nowrap; }
.v-hero__actions { gap: .75rem; row-gap: .75rem; }

/* kafle kategorii bez zdjecia - sam tekst, wyrownane do siatki */
.v-cats__body--solo { padding: clamp(1.35rem, 2.5vw, 1.85rem); justify-content: center; min-height: 108px; }
.v-brands--six { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) { .v-brands--six { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .v-brands--six { grid-template-columns: 1fr; } }
