/*
 * WooCommerce — Eclat Hand Made
 * Dopasowane do systemu zmiennych z style.css
 * Białe tło, Montserrat, złote akcenty, kobiece i schludne
 */

/* =====================================================================
   ZMIENNE
   ===================================================================== */
:root {
  --eclat-gold:       #c9a96e;
  --eclat-gold-hover: #b8925a;
  --eclat-dark:       #1a1a1a;
  --eclat-gray:       #777777;
  --eclat-white:      #ffffff;
  --eclat-cream-50:   #faf8f5;
  --eclat-cream-100:  #f3efe9;
  --eclat-cream-200:  #ebe6dc;
  --eclat-beige:      #CCC1B7;
  --eclat-border:     #f0ebe3;
  --eclat-font:       'Montserrat', 'Helvetica Neue', sans-serif;
  --eclat-radius:     4px;
  --eclat-shadow:     0 2px 16px rgba(0,0,0,0.08);
}

/* =====================================================================
   FONT GLOBALNY
   ===================================================================== */
.woocommerce,
.woocommerce-page,
.woocommerce *,
.woocommerce-page * {
  font-family: var(--eclat-font) !important;
}

/* =====================================================================
   TŁO STRONY — BIAŁE
   ===================================================================== */
.woocommerce.archive .site-content,
.woocommerce-page .site-content,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: #ffffff !important;
}

/* =====================================================================
   NAGŁÓWEK ARCHIWUM
   ===================================================================== */
.woocommerce-products-header {
  padding: 80px 0 40px;
  text-align: center;
  background: var(--eclat-cream-50);
  border-bottom: 1px solid var(--eclat-border);
}

.woocommerce-products-header .woocommerce-products-header__title.page-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  color: var(--eclat-dark);
  letter-spacing: -1px;
  margin: 0 0 12px;
  font-family: var(--eclat-font) !important;
}

.woocommerce-products-header::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--eclat-gold);
  margin: 16px auto 0;
}

/* =====================================================================
   PASEK NARZĘDZI
   ===================================================================== */
.woocommerce-ordering,
.woocommerce-result-count {
  font-family: var(--eclat-font) !important;
  font-size: 13px;
  color: var(--eclat-gray);
}
.woocommerce-ordering { float: right; margin: 0 40px 24px 0; }

/* Wrapper z marginesami dla paska narzędzi i paginacji */
.woocommerce .woocommerce-notices-wrapper,
.woocommerce-ordering,
.woocommerce nav.woocommerce-pagination {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.woocommerce-ordering { padding-right: 40px; box-sizing: border-box; }
.woocommerce nav.woocommerce-pagination { padding-left: 40px; padding-right: 40px; box-sizing: border-box; }
/* Ukryj licznik wyników i breadcrumby na stronach sklepu */
.woocommerce-result-count,
.woocommerce-breadcrumb,
nav.woocommerce-breadcrumb,
.ast-breadcrumbs,
.ast-breadcrumbs-wrapper,
#breadcrumbs,
.breadcrumbs,
.yoast-breadcrumb,
[class*="breadcrumb"]:not(.eclat-mini-cart *) {
  display: none !important;
}

.woocommerce-ordering select {
  font-family: var(--eclat-font) !important;
  font-size: 13px;
  color: var(--eclat-dark);
  background: #fff;
  border: 1px solid var(--eclat-border);
  border-radius: var(--eclat-radius);
  padding: 10px 36px 10px 14px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  transition: border-color .2s;
  min-width: 220px;
  height: 40px;
}
.woocommerce-ordering select:focus {
  outline: none;
  border-color: var(--eclat-beige);
}

/* =====================================================================
   SIATKA PRODUKTÓW
   ===================================================================== */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin: 0 auto !important;
  max-width: 1400px;
  padding: 40px 40px 60px !important;
  list-style: none !important;
  float: none !important;
  width: 100% !important;
  box-sizing: border-box;
  clear: both;
}

/* =====================================================================
   KARTA PRODUKTU — BIAŁE TŁO, SUBTELNY BORDER
   ===================================================================== */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: #ffffff !important;
  border: 1px solid var(--eclat-border) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  width: auto !important;
  display: flex !important;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease !important;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08) !important;
  border-color: var(--eclat-beige) !important;
}

/* Obrazek */
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 8px 8px 0 0 !important;
  background: var(--eclat-cream-50);
  transition: transform .5s ease;
  margin: 0 !important;
}

.woocommerce ul.products li.product:hover a img {
  transform: none !important;
}

.woocommerce ul.products li.product a:first-child {
  overflow: hidden;
  display: block;
  border-radius: 8px 8px 0 0;
}

/* =====================================================================
   TREŚĆ KARTY — BIAŁE TŁO
   ===================================================================== */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--eclat-font) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--eclat-dark) !important;
  text-align: center !important;
  padding: 20px 16px 4px !important;
  margin: 0 !important;
  line-height: 1.4 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  background: #ffffff !important;
}

/* Cena */
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  font-family: var(--eclat-font) !important;
  font-size: 14px !important;
  color: var(--eclat-gold) !important;
  font-weight: 500 !important;
  text-align: center !important;
  display: block !important;
  padding: 4px 16px 16px !important;
  margin: 0 !important;
  background: #ffffff !important;
}

.woocommerce ul.products li.product .price .woocommerce-Price-amount {
  font-size: 14px !important;
  color: var(--eclat-gold) !important;
}

.woocommerce ul.products li.product .price del {
  color: #bbb !important;
  font-size: 12px !important;
  margin-right: 6px;
}

/* =====================================================================
   PRZYCISK KARTY — ZŁOTY, PILL
   ===================================================================== */
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
  display: block !important;
  width: calc(100% - 32px) !important;
  margin: 0 16px 20px !important;
  padding: 12px 20px !important;
  border-radius: 999px !important;
  font-family: var(--eclat-font) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  text-align: center !important;
  text-decoration: none !important;
  background: var(--eclat-beige) !important;
  color: #ffffff !important;
  border: none !important;
  cursor: pointer !important;
  transition: background .3s, box-shadow .3s, transform .2s !important;
  box-shadow: none !important;
  line-height: 1.4 !important;
  min-height: auto !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .button:hover {
  background: linear-gradient(135deg, var(--eclat-beige) 0%, var(--eclat-gold) 100%) !important;
  box-shadow: 0 4px 14px rgba(201,169,110,0.35) !important;
  transform: translateY(-1px) !important;
  color: #ffffff !important;
}

/* =====================================================================
   BADGE "SALE" / "WYPRZEDAŻ"
   ===================================================================== */
.woocommerce ul.products li.product .onsale,
.woocommerce-page ul.products li.product .onsale {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  right: auto !important;
  background: var(--eclat-gold) !important;
  color: #fff !important;
  font-family: var(--eclat-font) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 5px 10px !important;
  border-radius: 3px !important;
  min-height: auto !important;
  min-width: auto !important;
  line-height: 1.4 !important;
  z-index: 2 !important;
}

/* =====================================================================
   PAGINACJA
   ===================================================================== */
.woocommerce nav.woocommerce-pagination {
  text-align: center !important;
  clear: both;
  padding: 20px 0 60px;
}
.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  font-family: var(--eclat-font) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--eclat-dark) !important;
  background: transparent !important;
  border: 1px solid var(--eclat-border) !important;
  text-decoration: none !important;
  transition: background .2s, border-color .2s, color .2s !important;
  line-height: 1 !important;
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--eclat-cream-200) !important;
  border-color: var(--eclat-beige) !important;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--eclat-gold) !important;
  border-color: var(--eclat-gold) !important;
  color: #fff !important;
  font-weight: 600 !important;
}

/* =====================================================================
   KONTENER GŁÓWNY
   ===================================================================== */
.woocommerce ul.products,
.woocommerce-page ul.products {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* =====================================================================
   STRONA POJEDYNCZEGO PRODUKTU — layout wzorowany na W.KRUK
   ===================================================================== */

/* Ukryj zoom */
.woocommerce div.product div.images .woocommerce-product-gallery__trigger,
.woocommerce div.product div.images .zoomImg {
  display: none !important;
}
.woocommerce div.product div.images .woocommerce-product-gallery__image a {
  cursor: default !important;
}

/* Kolumny: zdjęcia 48%, opis 48% */
.woocommerce div.product div.images {
  width: 48% !important;
  float: left !important;
  max-width: none !important;
}
.woocommerce div.product div.summary.entry-summary {
  width: 48% !important;
  float: right !important;
  padding-left: 0 !important;
}

/* Galeria: miniatury pionowo po lewej, główne zdjęcie obok */
.woocommerce-product-gallery {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px !important;
  align-items: flex-start !important;
}

/* Miniatury po lewej */
.woocommerce-product-gallery .flex-control-thumbs {
  order: -1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  width: 72px !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.woocommerce-product-gallery .flex-control-thumbs li {
  margin: 0 !important;
  padding: 0 !important;
  width: 72px !important;
}
.woocommerce-product-gallery .flex-control-thumbs img {
  width: 72px !important;
  height: 72px !important;
  object-fit: cover !important;
  aspect-ratio: 1 / 1 !important;
  border: 2px solid var(--eclat-border) !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  opacity: 0.75;
  transition: opacity .2s, border-color .2s !important;
}
.woocommerce-product-gallery .flex-control-thumbs img.flex-active,
.woocommerce-product-gallery .flex-control-thumbs img:hover {
  border-color: var(--eclat-gold) !important;
  opacity: 1 !important;
}

/* Główne zdjęcie — reszta szerokości */
.woocommerce-product-gallery .flex-viewport {
  flex: 1 !important;
  min-width: 0 !important;
}
.woocommerce-product-gallery .flex-viewport img,
.woocommerce div.product div.images .woocommerce-product-gallery__image img {
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  width: 100% !important;
  transform: none !important;
  transition: none !important;
  border-radius: 6px !important;
}

/* Przycisk "Dodaj do koszyka" — prostokątny, pełna szerokość */
.woocommerce div.product .single_add_to_cart_button {
  display: inline-block !important;
  width: auto !important;
  min-width: 220px !important;
  border-radius: 4px !important;
  padding: 18px 40px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  background: #000000 !important;
  color: #fff !important;
  margin-top: 8px !important;
  transition: background .25s !important;
}
.woocommerce div.product .single_add_to_cart_button:hover {
  background: #2d2a26 !important;
  color: #fff !important;
}

/* Ukryj sekcję płatności Astry */
.ast-single-product-payments {
  display: none !important;
}

/* Wyzwalacze zaufania */
.eclat-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--eclat-border);
}
.eclat-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--eclat-font);
  font-size: 13px;
  color: var(--eclat-dark);
}
.eclat-trust-badge svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
  color: var(--eclat-gold);
  stroke: var(--eclat-gold);
}



/* Przycisk "Wyczyść" przy wariantach */
.reset_variations {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #999 !important;
  text-decoration: none !important;
  margin-top: 6px !important;
  transition: color .2s !important;
}
.reset_variations:hover {
  color: #c9a96e !important;
}
.reset_variations::before {
  content: '×';
  font-size: 14px;
  line-height: 1;
  color: inherit;
}

/* Tekst "robione na zamówienie" pod badges */
.woocommerce div.product p.eclat-mto-text,
p.eclat-mto-text {
  font-family: 'Montserrat', 'Helvetica Neue', sans-serif !important;
  font-size: 12.5px !important;
  line-height: 1.8 !important;
  color: #666 !important;
  margin-top: 20px !important;
  padding: 16px 20px !important;
  background: #faf8f5 !important;
  border: 1px solid #ede5d8 !important;
  border-left: 3px solid #c9a96e !important;
  border-radius: 2px !important;
}

/* Podobne produkty — 4 kolumny na desktop */
.related.products ul.products,
.upsells.products ul.products {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  padding-bottom: 20px !important;
}

.related.products,
.upsells.products {
  margin-bottom: 20px !important;
}

/* Ukryj SKU i kategorie pod przyciskiem */
.woocommerce div.product .product_meta {
  display: none !important;
}

.woocommerce div.product .product_title {
  font-family: var(--eclat-font) !important;
  font-weight: 400 !important;
  color: var(--eclat-dark) !important;
  letter-spacing: -0.3px !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--eclat-font) !important;
  color: var(--eclat-gold) !important;
  font-size: 22px !important;
  font-weight: 500 !important;
}

/* Przycisk "Dodaj do koszyka" */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  font-family: var(--eclat-font) !important;
  background: var(--eclat-beige) !important;
  color: #ffffff !important;
  border-radius: 4px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.8px !important;
  text-transform: none !important;
  padding: 14px 36px !important;
  border: none !important;
  transition: background .3s, box-shadow .3s, transform .2s !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: linear-gradient(135deg, var(--eclat-beige) 0%, var(--eclat-gold) 100%) !important;
  box-shadow: 0 4px 14px rgba(201,169,110,0.35) !important;
  transform: translateY(-1px) !important;
  color: #ffffff !important;
}

/* Opisy produktów — bez pogrubień, jednolity akapit */
.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .woocommerce-product-details__short-description *,
.woocommerce div.product .woocommerce-tabs .panel p,
.woocommerce div.product .woocommerce-tabs .panel li,
.woocommerce div.product .woocommerce-tabs .panel span,
.woocommerce div.product .woocommerce-tabs .panel strong,
.woocommerce div.product .woocommerce-tabs .panel b,
.woocommerce div.product .woocommerce-tabs .panel em {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.8 !important;
  color: #555555 !important;
}


/* Tabs produktu */
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: var(--eclat-font) !important;
  font-size: 13px !important;
  letter-spacing: 0.5px !important;
  color: var(--eclat-gray) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--eclat-dark) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-top-color: var(--eclat-gold) !important;
}

/* =====================================================================
   SPECYFIKACJA — tabela atrybutów produktu
   ===================================================================== */
.woocommerce div.product .woocommerce-tabs {
  margin-top: 48px !important;
  border-top: 1px solid var(--eclat-border) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0 !important;
  margin: 0 0 0 !important;
  border-bottom: 1px solid var(--eclat-border) !important;
  display: flex !important;
  gap: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: none !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: var(--eclat-font) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--eclat-gray) !important;
  padding: 14px 20px !important;
  display: block !important;
  letter-spacing: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-bottom: 2px solid var(--eclat-dark) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--eclat-dark) !important;
  font-weight: 600 !important;
}
.woocommerce div.product .woocommerce-tabs .panel {
  padding: 32px 0 !important;
}

/* Nagłówki w zakładce Opis — redukuj rozmiar do czytelnego */
.woocommerce div.product .woocommerce-tabs .panel h1,
.woocommerce div.product .woocommerce-tabs .panel h2 {
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin: 0 0 20px !important;
  color: var(--eclat-dark) !important;
}
.woocommerce div.product .woocommerce-tabs .panel h3 {
  font-size: 15px !important;
  font-weight: 600 !important;
  margin: 24px 0 12px !important;
}

/* Tabela atrybutów — styl W.KRUK */
.woocommerce div.product .woocommerce-product-attributes {
  width: 100% !important;
  border-collapse: collapse !important;
  max-width: 700px !important;
}
.woocommerce div.product .woocommerce-product-attributes tr {
  border-bottom: 1px solid var(--eclat-border) !important;
}
.woocommerce div.product .woocommerce-product-attributes tr:first-child {
  border-top: 1px solid var(--eclat-border) !important;
}
.woocommerce div.product .woocommerce-product-attributes th {
  font-family: var(--eclat-font) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--eclat-gray) !important;
  padding: 12px 16px 12px 0 !important;
  width: 160px !important;
  vertical-align: top !important;
  white-space: nowrap !important;
  background: none !important;
  border: none !important;
}
.woocommerce div.product .woocommerce-product-attributes td {
  font-family: var(--eclat-font) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--eclat-dark) !important;
  padding: 12px 0 !important;
  border: none !important;
  background: none !important;
}
.woocommerce div.product .woocommerce-product-attributes td p {
  margin: 0 !important;
}

/* Krótki opis w zakładce Specyfikacja */
.eclat-spec-short {
  font-family: var(--eclat-font);
  font-size: 13px;
  color: var(--eclat-dark);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--eclat-border);
}
.eclat-spec-short p { margin: 0 0 8px; }
.eclat-spec-short p:last-child { margin: 0; }

/* Treść zakładek Wysyłka / Reklamacje */
.eclat-tab-content {
  max-width: 640px;
  font-family: var(--eclat-font);
  font-size: 14px;
  color: var(--eclat-dark);
  line-height: 1.8;
}
.eclat-tab-content h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--eclat-dark);
}
.eclat-tab-content h3:first-child { margin-top: 0; }
.eclat-tab-content ul {
  padding-left: 0;
  list-style: none;
  margin: 0 0 16px;
}
.eclat-tab-content ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--eclat-border);
  font-size: 13px;
}
.eclat-tab-content ul li:first-child { border-top: 1px solid var(--eclat-border); }
.eclat-tab-content a { color: var(--eclat-gold); }

/* =====================================================================
   KOSZYK I CHECKOUT — spójne z motywem
   ===================================================================== */
.woocommerce-cart table.cart td,
.woocommerce-cart table.cart th,
.woocommerce-checkout .woocommerce-billing-fields label,
.woocommerce-checkout .woocommerce-shipping-fields label,
.woocommerce-checkout form .form-row label {
  font-family: var(--eclat-font) !important;
  font-size: 14px !important;
  color: var(--eclat-dark) !important;
}

.woocommerce-cart table.cart,
.woocommerce-checkout form.checkout {
  background: #fff;
}

.woocommerce input[type=text],
.woocommerce input[type=email],
.woocommerce input[type=tel],
.woocommerce input[type=number],
.woocommerce textarea,
.woocommerce select {
  font-family: var(--eclat-font) !important;
  font-size: 14px !important;
  border: 1px solid var(--eclat-border) !important;
  border-radius: var(--eclat-radius) !important;
  padding: 10px 14px !important;
  background: #fff !important;
  color: var(--eclat-dark) !important;
  transition: border-color .2s !important;
}
.woocommerce input[type=text]:focus,
.woocommerce input[type=email]:focus,
.woocommerce input[type=tel]:focus,
.woocommerce textarea:focus {
  outline: none !important;
  border-color: var(--eclat-beige) !important;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1) !important;
}

/* =====================================================================
   POWIADOMIENIA
   ===================================================================== */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  font-family: var(--eclat-font) !important;
  font-size: 14px !important;
  border-top-color: var(--eclat-gold) !important;
  background: var(--eclat-cream-50) !important;
  color: var(--eclat-dark) !important;
}
.woocommerce-message a.button,
.woocommerce-message .button {
  background: var(--eclat-beige) !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  font-size: 12px !important;
}

/* =====================================================================
   KOSZYK — OPTYMALIZACJA UX
   ===================================================================== */

/* Zadanie 1: Pasek kroków */
.eclat-cart-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 0 32px;
  font-family: var(--eclat-font);
}
.eclat-cart-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.eclat-cart-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #bbb;
  background: #fff;
}
.eclat-cart-step__label {
  font-size: 11px;
  color: #bbb;
  font-weight: 400;
  white-space: nowrap;
}
.eclat-cart-step--active .eclat-cart-step__num {
  border-color: #b89c72;
  color: #b89c72;
}
.eclat-cart-step--active .eclat-cart-step__label {
  color: #1a1a1a;
  font-weight: 600;
}
/* Krok ukończony (✓) — link-krok */
a.eclat-cart-step.eclat-cart-step--done {
  text-decoration: none !important;
}
.eclat-cart-step--done .eclat-cart-step__num {
  border-color: #b89c72;
  background: #b89c72;
  color: #ffffff;
  font-size: 11px;
}
.eclat-cart-step--done .eclat-cart-step__label {
  color: #b89c72;
  font-weight: 500;
}
.eclat-cart-step--done:hover .eclat-cart-step__label {
  color: #1a1a1a;
}
.eclat-cart-step__line {
  flex: 1;
  height: 1px;
  background: #e5e5e5;
  min-width: 40px;
  margin: 0 8px;
  margin-bottom: 20px;
}

/* Zadanie 2: Pasek darmowej dostawy */
.eclat-shipping-bar {
  background: var(--eclat-cream-50);
  border: 1px solid var(--eclat-border);
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-family: var(--eclat-font);
}
.eclat-shipping-bar__msg {
  font-size: 13px;
  color: var(--eclat-dark);
  margin: 0 0 10px;
}
.eclat-shipping-bar__msg--done {
  color: #4a7c59;
  font-weight: 600;
  margin-bottom: 0;
}
.eclat-shipping-bar__track {
  height: 6px;
  background: #e5e0d8;
  border-radius: 99px;
  overflow: hidden;
}
.eclat-shipping-bar__fill {
  height: 100%;
  background: #b89c72;
  border-radius: 99px;
  transition: width .4s ease;
}

/* Zadanie 3: Czarny przycisk "Przejdź do płatności" */
body .woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
body .woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  background: #111111 !important;
  background-image: none !important;
  color: #ffffff !important;
  border-radius: 2px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  padding: 16px 24px !important;
  width: 100% !important;
  display: block !important;
  text-align: center !important;
  border: none !important;
  transition: background .2s, transform .18s, box-shadow .18s !important;
}
body .woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
body .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
body .woocommerce-cart .wc-proceed-to-checkout .checkout-button:focus,
body .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus {
  background: #2d2a26 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18) !important;
}

/* Toggle kuponu */
.eclat-coupon-toggle { margin: 0 0 8px; }
.eclat-coupon-link { font-size: 12px; color: var(--eclat-gray); text-decoration: underline; cursor: pointer; }
.eclat-coupon-link:hover { color: var(--eclat-dark); }

/* Ukryj H1 "Koszyk" */
.woocommerce-cart h1,
.woocommerce-cart .entry-title,
.woocommerce-cart h1.page-title,
.woocommerce-checkout h1,
.woocommerce-checkout .entry-title,
.woocommerce-checkout h1.page-title { display: none !important; }

/* Tabela koszyka — odstęp */
.woocommerce-cart table.cart { margin-bottom: 24px !important; }

/* Podsumowanie — padding dolny */
.woocommerce-cart .cart_totals { padding-bottom: 24px !important; }

/* Przycisk "Wybierz paczkomat" — marginesy */
.woocommerce-cart .cart_totals .woocommerce-shipping-totals td button,
.woocommerce-cart .cart_totals .woocommerce-shipping-totals td a.button {
  margin: 12px 0 !important;
  display: inline-block !important;
  padding: 10px 20px !important;
}

/* Separator "lub zapłać szybko przez:" */
.eclat-pay-sep {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}
.eclat-pay-sep::before,
.eclat-pay-sep::after { content: ''; flex: 1; height: 1px; background: var(--eclat-border); }
.eclat-pay-sep span { font-size: 11px; color: #999; white-space: nowrap; font-family: var(--eclat-font); }

/* GPay / Link — wrapper desktop: obok siebie */
.eclat-quick-pay {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin-top: 4px !important;
}
.eclat-quick-pay > * {
  flex: 1 1 0 !important;
  width: 0 !important;
  min-width: 0 !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

/* Logo płatności — obrazek */
.eclat-pay-logos-img {
  max-height: 44px !important;
  width: auto !important;
  display: block !important;
  margin: 0 auto !important;
  opacity: 0.85;
}
.eclat-pay-logos-img:hover { opacity: 1; }

/* ─────────────────────────────────────────────────────────────────────────────
   UKŁAD KOSZYKA — desktop: opinie po lewej (float), cart_totals po prawej
   ───────────────────────────────────────────────────────────────────────────── */
.woocommerce-cart .cart-collaterals {
  width: 100% !important;
  float: none !important;
  margin-top: 24px;
  overflow: hidden; /* clearfix dla floatów */
}

.woocommerce-cart .cart-collaterals .cart_totals {
  width: 420px !important;
  max-width: 100% !important;
  float: right !important;
  margin: 0 !important;
}

.woocommerce-cart .cart-collaterals .eclat-cart-reviews {
  float: left;
  width: calc(100% - 460px);
  box-sizing: border-box;
  padding-right: 32px;
  padding-top: 8px;
}
.eclat-cart-reviews__title {
  font-family: var(--eclat-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--eclat-dark);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.eclat-cart-review {
  padding: 14px 0;
  border-bottom: 1px solid var(--eclat-border);
}
.eclat-cart-review:last-child { border-bottom: none; }
.eclat-cart-review__stars {
  color: #c9a96e;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.eclat-cart-review__text {
  font-family: var(--eclat-font);
  font-size: 13px;
  color: #444;
  line-height: 1.65;
  margin: 0 0 6px;
  font-style: italic;
}
.eclat-cart-review__author {
  font-family: var(--eclat-font);
  font-size: 11px;
  color: #999;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  /* GPay/Link — jeden pod drugim na mobile */
  .eclat-quick-pay {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .eclat-quick-pay > * {
    width: 100% !important;
    flex: none !important;
  }
  /* Koszyk na mobile — cart_totals na górze, opinie na dole */
  .woocommerce-cart .cart-collaterals .cart_totals {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
  }
  .woocommerce-cart .cart-collaterals .eclat-cart-reviews {
    width: 100% !important;
    float: none !important;
    padding: 24px 18px 0 18px !important;
    margin-top: 24px;
    border-top: 1px solid var(--eclat-border);
    text-align: center;
    clear: both;
    box-sizing: border-box !important;
  }
  .eclat-cart-reviews .eclat-cart-review {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Sekcja trust badges */
.eclat-cart-trust {
  margin-top: 16px;
  padding: 0;
  text-align: center;
  font-family: var(--eclat-font);
}
.eclat-cart-trust__stripe-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #666666;
  margin-bottom: 10px;
}
.eclat-cart-trust__icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 14px;
  flex-wrap: nowrap;
}
.eclat-pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border: none !important;
  opacity: 0.7;
  transition: opacity .2s;
  flex-shrink: 0;
}
.eclat-pay-badge:hover { opacity: 1; }
.eclat-pay-badge svg {
  display: block !important;
  max-height: 24px !important;
  height: 24px !important;
  width: auto !important;
}
.eclat-cart-trust__contact {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
  margin: 0;
}
.eclat-cart-trust__contact a { color: var(--eclat-dark); text-decoration: underline; }

/* Mobile — kroki zamówienia */
@media (max-width: 480px) {
  .eclat-cart-steps {
    padding: 16px 8px 24px !important;
    gap: 0 !important;
  }
  .eclat-cart-step__num {
    width: 22px !important;
    height: 22px !important;
    font-size: 10px !important;
  }
  .eclat-cart-step__label {
    font-size: 9px !important;
  }
  .eclat-cart-step__line {
    min-width: 16px !important;
    margin: 0 4px !important;
    margin-bottom: 18px !important;
  }
}

/* Mobile — sekcja wysyłki */
@media (max-width: 768px) {
  .woocommerce-cart .cart_totals .woocommerce-shipping-totals td {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    padding: 8px 0 16px !important;
    height: auto !important;
    position: static !important;
  }
  .woocommerce-cart .cart_totals .woocommerce-shipping-totals td * {
    position: static !important;
    height: auto !important;
  }
  .woocommerce-cart .cart_totals .woocommerce-shipping-totals td ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }
  /* Przycisk paczkomatu — koszyk (cart) */
  .woocommerce-cart .cart_totals .woocommerce-shipping-totals td button,
  .woocommerce-cart .cart_totals .woocommerce-shipping-totals td a.button,
  .woocommerce-cart .cart_totals .easypack-widget-button,
  .woocommerce-cart .cart_totals button[id*="inpost"],
  .woocommerce-cart .cart_totals button[id*="paczkomat"],
  .woocommerce-cart .cart_totals #widget_inpost_paczkomaty_parcel_locker_button {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background: var(--eclat-beige) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 10px 20px !important;
    text-align: center !important;
    font-size: 12px !important;
    font-family: var(--eclat-font) !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    margin: 0 !important;
  }
}

/* =====================================================================
   RESPONSYWNOŚĆ
   ===================================================================== */
/* ── Mobile — zakładki produktu ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .woocommerce div.product .woocommerce-tabs ul.tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs::-webkit-scrollbar {
    display: none !important;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    flex-shrink: 0 !important;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-size: 11px !important;
    padding: 10px 10px !important;
    white-space: nowrap !important;
  }
}

/* ── Mobile — strona produktu ─────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Układ: jedna kolumna */
  .woocommerce div.product div.images,
  .woocommerce div.product div.summary.entry-summary {
    width: 100% !important;
    float: none !important;
  }

  /* Duże zdjęcie — pełna szerokość ekranu bez marginesów */
  .woocommerce div.product div.images {
    margin-left: -16px !important;
    margin-right: -16px !important;
    width: calc(100% + 32px) !important;
  }

  /* Galeria: miniaturki pod głównym zdjęciem, poziomo */
  .woocommerce-product-gallery {
    flex-direction: column !important;
  }
  .woocommerce-product-gallery .flex-control-thumbs {
    order: 1 !important;
    flex-direction: row !important;
    width: 100% !important;
    overflow-x: auto !important;
    gap: 8px !important;
    padding: 8px 16px 0 !important;
  }
  .woocommerce-product-gallery .flex-control-thumbs img {
    width: 56px !important;
    height: 56px !important;
    flex-shrink: 0 !important;
  }
  .woocommerce-product-gallery .flex-viewport {
    order: 0 !important;
    width: 100% !important;
  }

  /* Przycisk — pełna szerokość, naturalny flow */
  .woocommerce div.product form.cart {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 0 16px !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
  .woocommerce div.product form.cart .quantity {
    width: 64px !important;
    flex-shrink: 0 !important;
  }
  .woocommerce div.product form.cart .qty {
    width: 64px !important;
    height: 50px !important;
    text-align: center !important;
    font-size: 16px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
  }
  .woocommerce div.product .single_add_to_cart_button {
    flex: 1 !important;
    width: auto !important;
    min-width: unset !important;
    margin: 0 !important;
    height: 50px !important;
    padding: 0 16px !important;
    border-radius: 4px !important;
  }
  .woocommerce div.product {
    padding-bottom: 0 !important;
  }

  /* Powiązane produkty: 2 kolumny na mobile */
  .related.products ul.products,
  .upsells.products ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Trust badges — mniejsze */
  .eclat-trust-badges { gap: 8px !important; }
  .eclat-trust-badge { font-size: 12px !important; }
}

@media (max-width: 1200px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 18px !important;
    padding: 32px 24px 50px !important;
  }
  .woocommerce-ordering,
  .woocommerce nav.woocommerce-pagination { padding-left: 24px !important; padding-right: 24px !important; }
}
@media (max-width: 900px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    padding: 24px 16px 40px !important;
  }
  .woocommerce-ordering,
  .woocommerce nav.woocommerce-pagination { padding-left: 16px !important; padding-right: 16px !important; }
}

@media (max-width: 640px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 13px !important;
    padding: 14px 10px 4px !important;
  }
  .woocommerce ul.products li.product .price {
    font-size: 13px !important;
    padding: 4px 10px 12px !important;
  }
  .woocommerce ul.products li.product .button {
    font-size: 11px !important;
    padding: 10px 10px !important;
    width: calc(100% - 20px) !important;
    margin: 0 10px 16px !important;
    letter-spacing: 0.8px !important;
  }
  .woocommerce-ordering {
    float: none !important;
    display: block !important;
    text-align: center !important;
    margin-bottom: 16px !important;
  }
  .woocommerce-ordering select { min-width: 100% !important; }
  .woocommerce nav.woocommerce-pagination ul li a,
  .woocommerce nav.woocommerce-pagination ul li span {
    width: 36px !important;
    height: 36px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 400px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   MINI KOSZYK (drawer)
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Ukryj Astra dropdown — ZAWSZE, niezależnie od stanu/klasy — używamy naszego drawera */
.ast-site-header-cart .widget_shopping_cart,
.ast-cart-menu-wrap .widget_shopping_cart,
.ast-header-cart .widget_shopping_cart,
.ast-site-header-cart-li .widget_shopping_cart,
.ast-site-header-cart-li:hover .widget_shopping_cart,
.ast-site-header-cart-li.active .widget_shopping_cart,
.ast-site-header-cart.active .widget_shopping_cart,
.ast-cart-menu-wrap.active .widget_shopping_cart,
[class*="ast"][class*="header"][class*="cart"] .widget_shopping_cart {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.eclat-mini-cart {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.3s;
}
.eclat-mini-cart.is-open {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.eclat-mini-cart__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.eclat-mini-cart.is-open .eclat-mini-cart__overlay { opacity: 1; }

.eclat-mini-cart__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
  font-family: var(--eclat-font, 'Montserrat', sans-serif);
}
.eclat-mini-cart.is-open .eclat-mini-cart__panel { transform: translateX(0); }

@media (max-width: 480px) {
  .eclat-mini-cart__panel { width: 92%; }
}

body.eclat-mini-cart-open { overflow: hidden; }

/* Header */
.eclat-mini-cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--eclat-border, #e8e2d8);
  flex-shrink: 0;
}
.eclat-mini-cart__header h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eclat-dark, #1a1a1a);
}
.eclat-mini-cart__close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  color: var(--eclat-dark, #1a1a1a);
  padding: 8px 4px;
  touch-action: manipulation;
}
.eclat-mini-cart__close svg { display: block; }

/* Items (woocommerce_mini_cart) */
.eclat-mini-cart__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  -webkit-overflow-scrolling: touch;
}
.eclat-mini-cart__items .woocommerce-mini-cart {
  margin: 0;
  padding: 0;
  list-style: none;
}
.eclat-mini-cart__items .woocommerce-mini-cart__empty-message {
  text-align: center;
  padding: 40px 0;
  color: #999;
}
.eclat-mini-cart__items .woocommerce-mini-cart-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 12px;
  padding: 16px 0 14px;
  border-bottom: 1px solid var(--eclat-border, #e8e2d8);
  align-items: start;
}
.eclat-mini-cart__items .woocommerce-mini-cart-item:last-child { border-bottom: none; }
.eclat-mini-cart__items .woocommerce-mini-cart-item img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 4px;
  margin-top: 4px;
  grid-row: span 2;
}
.eclat-mini-cart__items .woocommerce-mini-cart-item a:not(.remove) {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--eclat-dark, #1a1a1a);
  text-decoration: none;
  line-height: 1.4;
  grid-column: 2;
}
.eclat-mini-cart__items .woocommerce-mini-cart-item .quantity {
  font-size: 12px;
  color: #666;
  grid-column: 2;
}
.eclat-mini-cart__items .woocommerce-mini-cart-item .quantity .amount {
  font-weight: 600;
  color: var(--eclat-dark, #1a1a1a);
}
.eclat-mini-cart__items .woocommerce-mini-cart-item .variation {
  font-size: 11px;
  color: #777;
  margin: 2px 0;
  grid-column: 2;
}
.eclat-mini-cart__items .woocommerce-mini-cart-item .variation dt,
.eclat-mini-cart__items .woocommerce-mini-cart-item .variation dd {
  display: inline;
  margin: 0;
  padding: 0;
}
.eclat-mini-cart__items .woocommerce-mini-cart-item .remove {
  grid-column: 3;
  grid-row: 1;
  color: #999 !important;
  font-size: 18px;
  text-decoration: none;
  line-height: 1;
  background: none !important;
  border: none;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eclat-mini-cart__items .woocommerce-mini-cart-item .remove:hover { color: var(--eclat-dark, #1a1a1a) !important; }

/* Ukryj WC domyślny total i buttons (mamy własne w footerze) */
.eclat-mini-cart .woocommerce-mini-cart__total,
.eclat-mini-cart .woocommerce-mini-cart__buttons,
.eclat-mini-cart p.total,
.eclat-mini-cart p.buttons,
.eclat-mini-cart .total.woocommerce-mini-cart__total,
.eclat-mini-cart .buttons.woocommerce-mini-cart__buttons,
#eclatMiniCart .woocommerce-mini-cart__total,
#eclatMiniCart .woocommerce-mini-cart__buttons,
#eclatMiniCart p.total,
#eclatMiniCart p.buttons {
  display: none !important;
}

/* Footer */
.eclat-mini-cart__footer {
  flex-shrink: 0;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--eclat-border, #e8e2d8);
  background: #fff;
}
.eclat-mini-cart__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 18px;
  font-weight: 700;
  color: var(--eclat-dark, #1a1a1a);
  margin-bottom: 16px;
}
.eclat-mini-cart__amount { font-size: 20px; }

.eclat-mini-cart__shipping,
#eclatMiniCart .eclat-mini-cart__shipping {
  margin-bottom: 16px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
#eclatMiniCart .eclat-mini-cart__shipping p {
  margin: 0 0 10px !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: #444444 !important;
  display: block !important;
  visibility: visible !important;
}
#eclatMiniCart .eclat-mini-cart__shipping strong { color: #1a1a1a !important; }
#eclatMiniCart .eclat-mini-cart__bar {
  display: block !important;
  width: 100% !important;
  height: 6px !important;
  background: #eeeeee !important;
  border-radius: 3px !important;
  overflow: hidden !important;
}
.eclat-mini-cart__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--eclat-gold, #c9a96e), #b8946a);
  background-image: repeating-linear-gradient(
    45deg,
    var(--eclat-gold, #c9a96e),
    var(--eclat-gold, #c9a96e) 8px,
    #d6b87f 8px,
    #d6b87f 16px
  );
  transition: width 0.4s ease;
}

.eclat-mini-cart__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.eclat-mini-cart__btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, transform .18s, box-shadow .18s;
  touch-action: manipulation;
}
/* Przyciski mini-koszyka — ID selektor bije wszystko */
#eclatMiniCart .eclat-mini-cart__btn--secondary {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #1a1a1a !important;
  border: 1px solid #1a1a1a !important;
  box-shadow: none !important;
}
#eclatMiniCart .eclat-mini-cart__btn--secondary:hover,
#eclatMiniCart .eclat-mini-cart__btn--secondary:focus {
  background: #1a1a1a !important;
  background-color: #1a1a1a !important;
  color: #ffffff !important;
  border-color: #1a1a1a !important;
  text-decoration: none !important;
}
#eclatMiniCart .eclat-mini-cart__btn--primary {
  background: #111111 !important;
  background-color: #111111 !important;
  color: #ffffff !important;
  border: 1px solid #111111 !important;
  box-shadow: none !important;
}
#eclatMiniCart .eclat-mini-cart__btn--primary:hover,
#eclatMiniCart .eclat-mini-cart__btn--primary:focus {
  background: #2d2a26 !important;
  background-color: #2d2a26 !important;
  border-color: #2d2a26 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   STRONA PŁATNOŚCI (checkout) — styl Eclat
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Główny przycisk "Kupuję i płacę" — czarny jak na koszyku */
.woocommerce-checkout #place_order,
.woocommerce-checkout button[name="woocommerce_checkout_place_order"] {
  background: #111111 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 16px 24px !important;
  width: 100% !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-family: var(--eclat-font) !important;
  cursor: pointer !important;
  transition: background .2s, transform .18s, box-shadow .18s !important;
  touch-action: manipulation;
}
.woocommerce-checkout #place_order:hover,
.woocommerce-checkout #place_order:focus {
  background: #2d2a26 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18) !important;
}

/* GPay / Stripe Link — całkowicie ukryte na checkout */
.woocommerce-checkout .wc-block-components-express-payment,
.woocommerce-checkout .wc-stripe-express-checkout-element,
.woocommerce-checkout #wc-stripe-express-checkout-element,
.woocommerce-checkout .wc-stripe-express-checkout-section,
.woocommerce-checkout .wc-stripe-payment-request-button-element,
.woocommerce-checkout #wc-stripe-payment-request-button-separator-text,
.woocommerce-checkout .gpay-card-info-iframe,
.woocommerce-checkout button.gpay-button,
.woocommerce-checkout .StripeElement--link-payment-method-messaging-element {
  display: none !important;
}

/* ── Ogólny układ checkout — nie ruszamy float WooCommerce ──────────────── */

/* ── Sekcje formularza jako karty ────────────────────────────────────────── */
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-additional-fields {
  background: #ffffff;
  border: 1px solid var(--eclat-border);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
}
.woocommerce-checkout #ship-to-different-address {
  background: #ffffff;
  border: 1px solid var(--eclat-border);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: 16px 24px;
  margin-bottom: 0;
}
.woocommerce-checkout .woocommerce-shipping-fields {
  background: #ffffff;
  border: 1px solid var(--eclat-border);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 0 24px 20px;
  margin-bottom: 20px;
}

/* ── Nagłówki sekcji ─────────────────────────────────────────────────────── */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 {
  font-family: var(--eclat-font) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: var(--eclat-dark) !important;
  margin: 0 0 20px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid var(--eclat-border) !important;
}
.woocommerce-checkout #ship-to-different-address label {
  font-family: var(--eclat-font) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--eclat-dark) !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
}

/* ── Etykiety pól ────────────────────────────────────────────────────────── */
.woocommerce-checkout form .form-row label {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: #888 !important;
  margin-bottom: 6px !important;
  display: block !important;
}
.woocommerce-checkout form .form-row label .required { color: var(--eclat-gold) !important; }

/* ── Pola formularza ─────────────────────────────────────────────────────── */
.woocommerce-checkout form .form-row input.input-text,
.woocommerce-checkout form .form-row textarea,
.woocommerce-checkout form .form-row select,
.woocommerce-checkout .select2-container--default .select2-selection--single {
  border: 1px solid #e0e0e0 !important;
  border-radius: 6px !important;
  padding: 13px 14px !important;
  font-size: 14px !important;
  font-family: var(--eclat-font) !important;
  background: #fafafa !important;
  color: var(--eclat-dark) !important;
  transition: border-color .2s, background .2s !important;
  width: 100% !important;
}
.woocommerce-checkout form .form-row input.input-text:focus,
.woocommerce-checkout form .form-row textarea:focus,
.woocommerce-checkout form .form-row select:focus,
.woocommerce-checkout .select2-container--default.select2-container--focus .select2-selection--single {
  border-color: var(--eclat-dark) !important;
  background: #ffffff !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(26,26,26,0.06) !important;
}
.woocommerce-checkout .select2-container--default .select2-selection--single {
  height: auto !important;
  line-height: 1.4 !important;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0 !important;
  line-height: 1.4 !important;
  color: var(--eclat-dark) !important;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50% !important;
  transform: translateY(-50%) !important;
}

/* ── Karta podsumowania zamówienia ───────────────────────────────────────── */
.woocommerce-checkout #order_review_heading {
  background: #ffffff !important;
  border: 1px solid var(--eclat-border) !important;
  border-bottom: none !important;
  border-radius: 10px 10px 0 0 !important;
  padding: 18px 20px !important;
  font-family: var(--eclat-font) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: var(--eclat-dark) !important;
  margin-bottom: 0 !important;
}
.woocommerce-checkout #order_review {
  background: #ffffff !important;
  border: 1px solid var(--eclat-border) !important;
  border-top: none !important;
  border-radius: 0 0 10px 10px !important;
  padding: 4px 20px 20px !important;
  margin-top: 0 !important;
}

/* Tabela produktów w podsumowaniu */
.woocommerce-checkout #order_review table.shop_table {
  border: none !important;
  margin-bottom: 0 !important;
}
.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td {
  border: none !important;
  padding: 10px 0 !important;
  font-family: var(--eclat-font) !important;
  font-size: 13px !important;
  border-bottom: 1px solid var(--eclat-border) !important;
}
.woocommerce-checkout #order_review table.shop_table tfoot tr:last-child td,
.woocommerce-checkout #order_review table.shop_table tfoot tr:last-child th {
  font-size: 15px !important;
  font-weight: 700 !important;
  border-bottom: none !important;
  padding-top: 14px !important;
}
.woocommerce-checkout #order_review table.shop_table tfoot tr:last-child td {
  color: var(--eclat-dark) !important;
}

/* ── Sekcja płatności ────────────────────────────────────────────────────── */
.woocommerce-checkout #payment {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.woocommerce-checkout #payment .payment_methods_header {
  display: none !important;
}
.woocommerce-checkout ul.wc_payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 16px !important;
  background: transparent !important;
  border: none !important;
}
.woocommerce-checkout ul.wc_payment_methods li.wc_payment_method {
  border: 1.5px solid #e8e8e8 !important;
  border-radius: 8px !important;
  padding: 14px 16px !important;
  margin-bottom: 8px !important;
  background: #ffffff !important;
  transition: border-color .2s, background .2s !important;
  cursor: pointer !important;
}
.woocommerce-checkout ul.wc_payment_methods li.wc_payment_method:has(input[type="radio"]:checked),
.woocommerce-checkout ul.wc_payment_methods li.wc_payment_method.eclat-active {
  border-color: var(--eclat-dark) !important;
  background: #f8f8f8 !important;
}
.woocommerce-checkout ul.wc_payment_methods li.wc_payment_method label {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  margin: 0 !important;
  width: 100% !important;
}
.woocommerce-checkout ul.wc_payment_methods li.wc_payment_method label img {
  max-height: 24px !important;
  width: auto !important;
  margin: 0 !important;
}
.woocommerce-checkout ul.wc_payment_methods li.wc_payment_method input[type="radio"] {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  accent-color: var(--eclat-dark) !important;
  margin: 0 !important;
}
.woocommerce-checkout .payment_box {
  background: transparent !important;
  border: none !important;
  padding: 10px 0 0 28px !important;
  font-size: 13px !important;
  color: #666 !important;
  line-height: 1.6 !important;
}
.woocommerce-checkout .payment_box::before { display: none !important; }

/* ── Checkbox regulaminu ─────────────────────────────────────────────────── */
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
  margin: 16px 0 !important;
}
.woocommerce-checkout .form-row.terms label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: #555 !important;
}

/* paczkomat button — patrz sekcja "Metody dostawy" poniżej */

/* ── Metody dostawy ──────────────────────────────────────────────────────── */
.woocommerce-checkout .woocommerce-shipping-methods li {
  padding: 10px 0 !important;
  border-bottom: 1px solid var(--eclat-border) !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
}
.woocommerce-checkout .woocommerce-shipping-methods li:last-child { border-bottom: none !important; }
.woocommerce-checkout .woocommerce-shipping-methods li input[type="radio"] {
  flex-shrink: 0 !important;
  margin-top: 3px !important;
}
.woocommerce-checkout .woocommerce-shipping-methods li label {
  font-size: 14px !important;
  color: var(--eclat-dark) !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  flex: 1 !important;
  min-width: 0 !important;
}

/* Przycisk "Wybierz paczkomat" — pod nazwą, nie obok */
.woocommerce-checkout .woocommerce-shipping-methods .easypack-widget-button,
.woocommerce-checkout .woocommerce-shipping-methods .select-paczkomat-button,
.woocommerce-checkout button[id*="paczkomat"],
.woocommerce-checkout #widget_inpost_paczkomaty_parcel_locker_button {
  display: inline-block !important;
  align-self: flex-start !important;
  background: var(--eclat-beige) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 8px 14px !important;
  font-family: var(--eclat-font) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: background .2s !important;
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .woocommerce-checkout .woocommerce-billing-fields,
  .woocommerce-checkout .woocommerce-additional-fields { padding: 18px !important; }
  .woocommerce-checkout #ship-to-different-address { padding: 14px 18px !important; }
  .woocommerce-checkout .woocommerce-shipping-fields { padding: 0 18px 18px !important; }
  .woocommerce-checkout #order_review_heading { padding: 16px 18px !important; }
  .woocommerce-checkout #order_review { padding: 4px 18px 18px !important; }
  .woocommerce-checkout #place_order {
    padding: 15px 20px !important;
    font-size: 13px !important;
  }

  /* ── Metody dostawy — mobile fix ── */
  /* Li jako blok — radio i label jeden pod drugim, bez flex-squeeze */
  .woocommerce-checkout .woocommerce-shipping-methods li {
    display: block !important;
    padding: 12px 0 !important;
  }
  .woocommerce-checkout .woocommerce-shipping-methods li input[type="radio"] {
    display: inline-block !important;
    vertical-align: middle !important;
    margin-right: 8px !important;
    margin-top: 0 !important;
    flex-shrink: unset !important;
  }
  /* Label jako blok — tekst nie jest ściskany */
  .woocommerce-checkout .woocommerce-shipping-methods li label {
    display: inline !important;
    flex-direction: unset !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    width: auto !important;
    min-width: unset !important;
    flex: unset !important;
    font-size: 14px !important;
  }
  /* Przycisk "Wybierz paczkomat" — nowa linia, pełna szerokość, beżowy styl */
  .woocommerce-checkout .woocommerce-shipping-methods .easypack-widget-button,
  .woocommerce-checkout .woocommerce-shipping-methods .select-paczkomat-button,
  .woocommerce-checkout button[id*="paczkomat"],
  .woocommerce-checkout #widget_inpost_paczkomaty_parcel_locker_button {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-top: 10px !important;
    text-align: center !important;
    background: var(--eclat-beige) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 10px 14px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   STRONA PODZIĘKOWANIA (order received)
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Ukryj tytuł strony */
body.woocommerce-order-received h1.entry-title,
body.woocommerce-order-received h1.page-title,
body.woocommerce-order-received .entry-title { display: none !important; }

/* ── Kontener — szerszy i zwartszy ─────────────────────────────────────── */
.woocommerce-order-received .woocommerce-order {
  max-width: 860px;
  margin: 0 auto 48px;
  padding: 0 24px;
  font-family: var(--eclat-font);
}

/* ── Baner "Dziękujemy" ─────────────────────────────────────────────────── */
.woocommerce-order-received .woocommerce-notice--success,
.woocommerce-order-received .woocommerce-thankyou-order-received {
  display: block !important;
  background: #ffffff !important;
  border: 1.5px solid var(--eclat-gold) !important;
  border-radius: 8px !important;
  padding: 18px 24px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--eclat-dark) !important;
  text-align: center !important;
  margin: 0 0 20px !important;
  letter-spacing: 0.3px !important;
}
.woocommerce-order-received .woocommerce-notice--success::before { display: none !important; }

/* ── Karta z danymi zamówienia — 2 kolumny na desktop ──────────────────── */
.woocommerce-order-received .woocommerce-order-overview {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
  background: #ffffff !important;
  border: 1px solid var(--eclat-border) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  width: 100% !important;
}
.woocommerce-order-received .woocommerce-order-overview li {
  display: flex !important;
  flex-direction: column !important;
  padding: 16px 22px !important;
  border-bottom: 1px solid var(--eclat-border) !important;
  border-right: 1px solid var(--eclat-border) !important;
  font-size: 11px !important;
  letter-spacing: 0.7px !important;
  text-transform: uppercase !important;
  color: #aaa !important;
  font-family: var(--eclat-font) !important;
  margin: 0 !important;
  float: none !important;
  width: auto !important;
  gap: 5px !important;
  box-sizing: border-box !important;
}
.woocommerce-order-received .woocommerce-order-overview li:nth-child(even) {
  border-right: none !important;
}
.woocommerce-order-received .woocommerce-order-overview li:nth-last-child(-n+2) {
  border-bottom: none !important;
}
.woocommerce-order-received .woocommerce-order-overview li strong {
  font-weight: 600 !important;
  color: var(--eclat-dark) !important;
  font-size: 15px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin-top: 2px !important;
}

/* ── Sekcja szczegółów zamówienia ────────────────────────────────────────── */
.woocommerce-order-received .woocommerce-order-details {
  background: #ffffff;
  border: 1px solid var(--eclat-border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.woocommerce-order-received .woocommerce-order-details h2 {
  font-family: var(--eclat-font) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  margin: 0 !important;
  padding: 14px 22px !important;
  border-bottom: none !important;
  background: #1a1a1a !important;
}
.woocommerce-order-received .woocommerce-table--order-details {
  width: 100% !important;
  border: none !important;
  margin: 0 !important;
  border-collapse: collapse !important;
}
.woocommerce-order-received .woocommerce-table--order-details th,
.woocommerce-order-received .woocommerce-table--order-details td {
  border: none !important;
  border-bottom: 1px solid var(--eclat-border) !important;
  padding: 12px 22px !important;
  font-family: var(--eclat-font) !important;
  font-size: 14px !important;
  vertical-align: middle !important;
  color: var(--eclat-dark) !important;
}
.woocommerce-order-received .woocommerce-table--order-details thead th {
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  color: #aaa !important;
  background: #ffffff !important;
  border-bottom: 2px solid var(--eclat-border) !important;
}
.woocommerce-order-received .woocommerce-table--order-details tfoot tr th,
.woocommerce-order-received .woocommerce-table--order-details tfoot tr td {
  font-size: 13px !important;
  color: #666 !important;
  font-weight: 400 !important;
}
.woocommerce-order-received .woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-order-received .woocommerce-table--order-details tfoot tr:last-child td {
  font-weight: 700 !important;
  font-size: 15px !important;
  color: var(--eclat-dark) !important;
  border-bottom: none !important;
}

/* ── Adresy — pełna szerokość, side by side ─────────────────────────────── */
.woocommerce-order-received .woocommerce-customer-details {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
  margin-bottom: 20px !important;
  width: 100% !important;
}
.woocommerce-order-received .woocommerce-column {
  background: #ffffff !important;
  border: 1px solid var(--eclat-border) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: auto !important;
  box-sizing: border-box !important;
}
.woocommerce-order-received .woocommerce-column h2 {
  font-family: var(--eclat-font) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  margin: 0 !important;
  padding: 14px 22px !important;
  border-bottom: none !important;
  background: #1a1a1a !important;
}
.woocommerce-order-received .woocommerce-column address {
  padding: 16px 22px !important;
  font-family: var(--eclat-font) !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
  color: #444 !important;
  font-style: normal !important;
}

/* ── Dane bankowe ─────────────────────────────────────────────────────────── */
.woocommerce-order-received .woocommerce-bacs-bank-details,
.woocommerce-order-received .wc-bacs-bank-details-wrapper {
  background: #ffffff;
  border: 1px solid var(--eclat-border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.woocommerce-order-received .woocommerce-bacs-bank-details h2,
.woocommerce-order-received .wc-bacs-bank-details-wrapper h2 {
  font-family: var(--eclat-font) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  margin: 0 !important;
  padding: 14px 22px !important;
  border-bottom: none !important;
  background: #1a1a1a !important;
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .woocommerce-order-received .woocommerce-order { padding: 0 14px; }
  .woocommerce-order-received .woocommerce-order-overview {
    grid-template-columns: 1fr !important;
  }
  .woocommerce-order-received .woocommerce-order-overview li {
    border-right: none !important;
    padding: 13px 16px !important;
  }
  .woocommerce-order-received .woocommerce-order-overview li:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--eclat-border) !important;
  }
  .woocommerce-order-received .woocommerce-order-overview li:last-child {
    border-bottom: none !important;
  }
  .woocommerce-order-received .woocommerce-customer-details {
    grid-template-columns: 1fr !important;
  }
  .woocommerce-order-received .woocommerce-table--order-details th,
  .woocommerce-order-received .woocommerce-table--order-details td {
    padding: 10px 14px !important;
    font-size: 13px !important;
  }
  .woocommerce-order-received .woocommerce-order-details h2,
  .woocommerce-order-received .woocommerce-column h2 {
    padding: 12px 16px !important;
  }
  .woocommerce-order-received .woocommerce-column address {
    padding: 14px 16px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   STRONA MOJE KONTO
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Ukryj zwykły tytuł strony */
.woocommerce-account h1.entry-title,
.woocommerce-account h1.page-title { display: none !important; }

/* Wrapper konta */
.woocommerce-account .woocommerce {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

/* Layout: sidebar + content */
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  font-family: var(--eclat-font) !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 220px !important;
  float: left !important;
}
.woocommerce-account .woocommerce-MyAccount-content {
  float: right !important;
  width: calc(100% - 252px) !important;
}

/* Nagłówek powitalny nad menu */
.woocommerce-account .woocommerce-MyAccount-navigation::before {
  content: 'Moje konto';
  display: block;
  font-family: var(--eclat-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa;
  padding: 0 0 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--eclat-border);
}

/* Menu nawigacji */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #ffffff !important;
  border: 1px solid var(--eclat-border) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid var(--eclat-border) !important;
  margin: 0 !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: none !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block !important;
  padding: 13px 18px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #555 !important;
  text-decoration: none !important;
  transition: background .15s, color .15s !important;
  font-family: var(--eclat-font) !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  background: #faf8f5 !important;
  color: var(--eclat-dark) !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard.is-active a {
  background: var(--eclat-dark) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
}

/* Aktywna pozycja przez klasę woocommerce */
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a {
  /* base — nadpisane przez is-active */
}

/* Area treści */
.woocommerce-account .woocommerce-MyAccount-content {
  background: #ffffff !important;
  border: 1px solid var(--eclat-border) !important;
  border-radius: 10px !important;
  padding: 28px 28px !important;
  min-height: 260px !important;
}

/* Tekst powitalny */
.woocommerce-account .woocommerce-MyAccount-content p {
  font-size: 14px !important;
  color: #555 !important;
  line-height: 1.7 !important;
  margin-bottom: 12px !important;
}
.woocommerce-account .woocommerce-MyAccount-content p strong {
  color: var(--eclat-dark) !important;
}
.woocommerce-account .woocommerce-MyAccount-content p a {
  color: var(--eclat-dark) !important;
  text-decoration: underline !important;
}

/* Tabele zamówień, adresów */
.woocommerce-account .woocommerce-orders-table,
.woocommerce-account table.woocommerce-table {
  width: 100% !important;
  border: none !important;
  border-collapse: collapse !important;
  font-size: 13px !important;
  font-family: var(--eclat-font) !important;
}
.woocommerce-account table.woocommerce-table th,
.woocommerce-account table.woocommerce-table td {
  padding: 12px 14px !important;
  border: none !important;
  border-bottom: 1px solid var(--eclat-border) !important;
  text-align: left !important;
  vertical-align: middle !important;
}
.woocommerce-account table.woocommerce-table thead th {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  color: #999 !important;
  background: #fafafa !important;
}
.woocommerce-account table.woocommerce-table tbody tr:last-child td {
  border-bottom: none !important;
}
.woocommerce-account .woocommerce-orders-table .woocommerce-button.button,
.woocommerce-account table.woocommerce-table a.button {
  background: var(--eclat-dark) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 7px 14px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  font-family: var(--eclat-font) !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: background .2s !important;
}
.woocommerce-account .woocommerce-orders-table .woocommerce-button.button:hover,
.woocommerce-account table.woocommerce-table a.button:hover {
  background: #2d2a26 !important;
  color: #ffffff !important;
}

/* Nagłówki sekcji w treści */
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
  font-family: var(--eclat-font) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: var(--eclat-dark) !important;
  margin: 0 0 18px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid var(--eclat-border) !important;
}

/* Pola formularza edycji konta */
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form-row input {
  border: 1px solid #e0e0e0 !important;
  border-radius: 6px !important;
  padding: 11px 14px !important;
  font-size: 14px !important;
  font-family: var(--eclat-font) !important;
  background: #fafafa !important;
  width: 100% !important;
  transition: border-color .2s !important;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form-row input:focus {
  border-color: var(--eclat-dark) !important;
  background: #fff !important;
  outline: none !important;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form-row label {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: #999 !important;
  display: block !important;
  margin-bottom: 5px !important;
}
.woocommerce-account .woocommerce-MyAccount-content .button[type="submit"],
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"] {
  background: var(--eclat-dark) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 12px 28px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-family: var(--eclat-font) !important;
  cursor: pointer !important;
  transition: background .2s, transform .18s, box-shadow .18s !important;
}
.woocommerce-account .woocommerce-MyAccount-content .button[type="submit"]:hover,
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"]:hover {
  background: #2d2a26 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15) !important;
}

/* Mobile */
@media (max-width: 700px) {
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    float: none !important;
    width: 100% !important;
  }
  .woocommerce-account .woocommerce-MyAccount-content {
    margin-top: 20px !important;
    padding: 20px !important;
  }
  .woocommerce-account .woocommerce {
    padding: 24px 16px 48px !important;
  }
}

/* ── Fix: ukryj h1 na thank you (silny selektor) ────────────────────────── */
body.woocommerce-order-received h1.entry-title,
body.woocommerce-order-received h1.page-title,
body.woocommerce-order-received .entry-title { display: none !important; }

/* Fix: WC domyślnie dodaje flex/float do li — resetujemy do grid ────────── */
.woocommerce-order-received .woocommerce-order-overview li::before { display: none !important; }
.woocommerce-order-received .woocommerce-order-overview li::after  { display: none !important; }

/* ── Metody dostawy w order review checkout — bez radio, czyste rzędy ─── */
/* Komórka "Przesyłka" w tabeli order_review — tekst + przycisk pionowo */
.woocommerce-checkout #order_review table.shop_table tr.shipping td ul,
.woocommerce-checkout #order_review table.shop_table tr.shipping td .woocommerce-shipping-methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: right !important;
}
.woocommerce-checkout #order_review table.shop_table tr.shipping td li {
  display: block !important;
}
.woocommerce-checkout #order_review table.shop_table tr.shipping td label {
  display: block !important;
  margin-bottom: 6px !important;
  white-space: normal !important;
}
.woocommerce-checkout #order_review table.shop_table tr.shipping td .easypack-widget-button,
.woocommerce-checkout #order_review table.shop_table tr.shipping td .select-paczkomat-button,
.woocommerce-checkout #order_review table.shop_table tr.shipping td button[id*="paczkomat"],
.woocommerce-checkout #order_review table.shop_table tr.shipping td #widget_inpost_paczkomaty_parcel_locker_button {
  display: inline-block !important;
  width: auto !important;
  background: var(--eclat-beige) !important;
  background-color: var(--eclat-beige) !important;
  background-image: none !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 6px 12px !important;
  font-family: var(--eclat-font) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

/* ── Mobile fix dla "Przesyłka" w order_review ── */
@media (max-width: 768px) {
  /* Wiersz Przesyłka: th i td wąsko obok siebie psują układ — zmień na pionowo */
  .woocommerce-checkout #order_review table.shop_table tr.shipping {
    display: block !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid var(--eclat-border) !important;
  }
  .woocommerce-checkout #order_review table.shop_table tr.shipping th,
  .woocommerce-checkout #order_review table.shop_table tr.shipping td {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    padding: 0 !important;
    border: none !important;
  }
  .woocommerce-checkout #order_review table.shop_table tr.shipping th {
    margin-bottom: 6px !important;
    font-weight: 600 !important;
  }
  .woocommerce-checkout #order_review table.shop_table tr.shipping td,
  .woocommerce-checkout #order_review table.shop_table tr.shipping td ul,
  .woocommerce-checkout #order_review table.shop_table tr.shipping td .woocommerce-shipping-methods {
    text-align: left !important;
  }
  /* Label: cała szerokość, normalny tekst, nie łamie się po literze */
  .woocommerce-checkout #order_review table.shop_table tr.shipping td label {
    display: block !important;
    width: 100% !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    margin-bottom: 8px !important;
  }
  /* Cena nie łamie się */
  .woocommerce-checkout #order_review table.shop_table tr.shipping td label .woocommerce-Price-amount {
    white-space: nowrap !important;
  }
  /* Przycisk: pełna szerokość pod tekstem, beżowa obwódka jak na desktop */
  .woocommerce-checkout #order_review table.shop_table tr.shipping td .easypack-widget-button,
  .woocommerce-checkout #order_review table.shop_table tr.shipping td .select-paczkomat-button,
  .woocommerce-checkout #order_review table.shop_table tr.shipping td button[id*="paczkomat"],
  .woocommerce-checkout #order_review table.shop_table tr.shipping td #widget_inpost_paczkomaty_parcel_locker_button {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    background: var(--eclat-beige) !important;
    background-color: var(--eclat-beige) !important;
    background-image: none !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 10px 14px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    white-space: normal !important;
    margin-top: 4px !important;
  }
  /* order_review li — nadpisanie globalnego display:flex który ściska label */
  .woocommerce-checkout #order_review .woocommerce-shipping-methods li {
    display: block !important;
    padding: 8px 0 !important;
  }
  .woocommerce-checkout #order_review .woocommerce-shipping-methods li label {
    display: block !important;
    width: 100% !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    font-size: 13px !important;
    margin-bottom: 8px !important;
  }
  .woocommerce-checkout #order_review .woocommerce-shipping-methods .easypack-widget-button,
  .woocommerce-checkout #order_review .woocommerce-shipping-methods .select-paczkomat-button,
  .woocommerce-checkout #order_review button[id*="paczkomat"],
  .woocommerce-checkout #order_review #widget_inpost_paczkomaty_parcel_locker_button {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-top: 4px !important;
    text-align: center !important;
    background: var(--eclat-beige) !important;
    background-image: none !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 10px 14px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
  }
}

.woocommerce-checkout #order_review .woocommerce-shipping-methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 6px 0 0 !important;
}
.woocommerce-checkout #order_review .woocommerce-shipping-methods li {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px 0 !important;
  border: none !important;
  font-size: 13px !important;
  font-family: var(--eclat-font) !important;
  color: var(--eclat-dark) !important;
}
.woocommerce-checkout #order_review .woocommerce-shipping-methods li input[type="radio"] {
  accent-color: var(--eclat-dark) !important;
  width: 15px !important;
  height: 15px !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}
.woocommerce-checkout #order_review .woocommerce-shipping-methods li label {
  display: block !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--eclat-dark) !important;
  cursor: pointer !important;
  margin: 0 0 6px !important;
  white-space: normal !important;
  word-break: normal !important;
}

/* ── Kupon na checkout ───────────────────────────────────────────────────── */
.eclat-checkout-coupon {
  margin-bottom: 16px;
  font-family: var(--eclat-font);
}
.eclat-checkout-coupon__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #888;
  text-decoration: none !important;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 1px;
  transition: color .2s;
}
.eclat-checkout-coupon__toggle:hover { color: var(--eclat-dark) !important; }
.eclat-checkout-coupon__toggle svg { opacity: .6; }

.eclat-checkout-coupon__form {
  display: none;
  margin-top: 12px;
  background: #ffffff;
  border: 1px solid var(--eclat-border);
  border-radius: 8px;
  padding: 16px;
}
.eclat-checkout-coupon__form--open { display: block !important; }

.eclat-checkout-coupon__inner {
  display: flex;
  gap: 10px;
}
.eclat-checkout-coupon__inner .input-text {
  flex: 1;
  border: 1px solid #e0e0e0 !important;
  border-radius: 6px !important;
  padding: 11px 14px !important;
  font-size: 13px !important;
  font-family: var(--eclat-font) !important;
  background: #fafafa !important;
}
.eclat-checkout-coupon__inner .input-text:focus {
  border-color: var(--eclat-dark) !important;
  background: #fff !important;
  outline: none !important;
}
.eclat-checkout-coupon__btn {
  background: var(--eclat-dark) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 11px 18px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  font-family: var(--eclat-font) !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: background .2s !important;
}
.eclat-checkout-coupon__btn:hover { background: #2d2a26 !important; }
.eclat-checkout-coupon__msg {
  display: none;
  font-size: 12px;
  margin: 10px 0 0;
  color: #666;
}

@media (max-width: 480px) {
  .eclat-checkout-coupon__inner { flex-direction: column; }
  .eclat-checkout-coupon__btn { width: 100% !important; }
}

/* ── Przycisk "Przejdź do płatności" — nadpisuje Astrę ────────────────────── */
html body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
html body.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
html body.woocommerce-cart .wc-proceed-to-checkout a.button.checkout-button {
  background: #111111 !important;
  background-color: #111111 !important;
  background-image: none !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
html body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
html body.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
html body.woocommerce-cart .wc-proceed-to-checkout a.button.checkout-button:hover {
  background: #2d2a26 !important;
  background-color: #2d2a26 !important;
  background-image: none !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18) !important;
}

/* =====================================================================
   GPSR — Bezpieczeństwo produktów (zakładka Specyfikacja)
   ===================================================================== */
/* ── Accordion wiersze GPSR — identyczny styl jak tabela specyfikacji ── */

.eclat-acc-row {
  cursor: pointer;
}
.eclat-acc-row:hover th,
.eclat-acc-row:hover td {
  opacity: 0.7;
}

.eclat-acc-row__preview {
  display: flex !important;
  align-items: center;
  gap: 6px;
}

.eclat-acc-row__hint {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--eclat-gray) !important;
  font-style: italic;
}

.eclat-acc-row__arrow {
  color: var(--eclat-gray);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.eclat-acc-row[aria-expanded="true"] .eclat-acc-row__arrow {
  transform: rotate(180deg);
}
.eclat-acc-row[aria-expanded="true"] .eclat-acc-row__hint {
  display: none;
}

.eclat-acc-row__body td.eclat-acc-row__content {
  font-family: var(--eclat-font) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--eclat-dark) !important;
  padding: 0 0 14px 0 !important;
  border: none !important;
  background: none !important;
  line-height: 1.65;
}
.eclat-acc-row__content p { margin: 0 0 6px; }
.eclat-acc-row__content p:last-child { margin-bottom: 0; }
.eclat-acc-row__content ul {
  margin: 0;
  padding-left: 16px;
}
.eclat-acc-row__content ul li { margin-bottom: 4px; }
.eclat-acc-row__content a {
  color: var(--eclat-dark);
  text-decoration: underline;
}
.eclat-acc-row__content a:hover { color: var(--eclat-gold); }

/* ═══════════════════════════════════════════════════════════════════════════════
   MOBILNA DOLNA NAWIGACJA (bottom nav)
   ═══════════════════════════════════════════════════════════════════════════════ */
.eclat-bnav {
  display: none; /* tylko mobile */
}
@media (max-width: 768px) {
  /* Pasek */
  .eclat-bnav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    background: #ffffff;
    border-top: 1px solid var(--eclat-border, #e8e2d8);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  /* Elementy */
  .eclat-bnav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 4px 8px;
    text-decoration: none !important;
    color: #999 !important;
    font-family: var(--eclat-font);
    font-size: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color .15s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .eclat-bnav__item:hover,
  .eclat-bnav__item:active { color: var(--eclat-dark, #1a1a1a) !important; }
  /* Stan aktywny */
  .eclat-bnav__item.is-active { color: var(--eclat-dark, #1a1a1a) !important; }
  .eclat-bnav__item.is-active .eclat-bnav__icon { stroke: var(--eclat-gold, #c9a96e); }
  .eclat-bnav__item.is-active .eclat-bnav__label { color: var(--eclat-gold, #c9a96e) !important; }
  /* Ikona */
  .eclat-bnav__icon {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    flex-shrink: 0;
    transition: stroke .15s;
  }
  .eclat-bnav__label {
    font-size: 10px;
    line-height: 1;
    font-family: var(--eclat-font);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-weight: 500;
  }
  /* Wrapper ikony koszyka + badge */
  .eclat-bnav__cart-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* Badge licznika */
  .eclat-bnav__badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--eclat-gold, #c9a96e);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    font-family: var(--eclat-font);
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
    pointer-events: none;
  }
  /* Margines dolny body żeby treść nie chowała się pod paskiem */
  .eclat-has-bnav {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)) !important;
  }
  /* CookieYes — taki sam rozmiar jak strzałka scroll-to-top (34px) */
  .cky-btn-revisit-wrapper,
  .cky-revisit-bottom-left,
  .cky-revisit-bottom-right {
    bottom: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
    left: 12px !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
  }
  .cky-btn-revisit-wrapper button.cky-btn-revisit,
  button.cky-btn-revisit {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    padding: 0 !important;
  }
  .cky-btn-revisit-wrapper img,
  .cky-btn-revisit img,
  button.cky-btn-revisit svg,
  button.cky-btn-revisit img {
    width: 18px !important;
    height: 18px !important;
  }
  /* Strzałka scroll-to-top */
  .eclat-scroll-top {
    position: fixed;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    right: 12px;
    z-index: 10002;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--eclat-beige, #ccc1b7);
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: background .2s;
  }
  .eclat-scroll-top:active {
    background: var(--eclat-gold, #c9a96e);
  }
  .eclat-scroll-top svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    stroke-width: 2.2;
    display: block;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   STICKY ADD TO CART — mobile pasek na dole ekranu
   ═══════════════════════════════════════════════════════════════════════════════ */
.eclat-sticky-atc {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: var(--eclat-dark, #1a1a1a);
  box-shadow: 0 -2px 20px rgba(0,0,0,0.18);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 200ms cubic-bezier(.2,.8,.2,1), opacity 200ms ease;
  will-change: transform, opacity;
}
@media (max-width: 768px) {
  .eclat-sticky-atc { display: block; }
}
.eclat-sticky-atc.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.eclat-sticky-atc__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 16px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  min-height: 52px;
  box-sizing: border-box;
}
.eclat-sticky-atc__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
  overflow: hidden;
}
.eclat-sticky-atc__name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--eclat-font);
}
.eclat-sticky-atc__price {
  font-size: 14px;
  font-weight: 400;
  color: var(--eclat-gold, #c9a96e);
  font-family: var(--eclat-font);
}
.eclat-sticky-atc__price .woocommerce-Price-amount { color: inherit !important; }
.eclat-sticky-atc__price del { color: rgba(255,255,255,0.4) !important; font-size: 11px; margin-right: 4px; }
.eclat-sticky-atc__price ins { text-decoration: none; }
.eclat-sticky-atc__btn {
  flex-shrink: 0;
  background: var(--eclat-beige, #ccc1b7) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 12px 18px !important;
  font-family: var(--eclat-font) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  touch-action: manipulation;
  white-space: nowrap;
  box-shadow: none !important;
  line-height: 1.4 !important;
}
.eclat-sticky-atc__btn:focus-visible {
  outline: 2px solid var(--eclat-gold) !important;
  outline-offset: 2px !important;
}
.eclat-sticky-atc__btn.is-disabled {
  background: #555 !important;
  opacity: 0.85;
}
.eclat-sticky-atc__ship {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
  margin-top: 1px;
  font-family: var(--eclat-font);
}
/* Podświetlenie selektorów wariantów przy próbie kliknięcia bez wyboru */
.eclat-highlight-variant {
  outline: 2px solid var(--eclat-gold) !important;
  outline-offset: 3px !important;
  border-radius: 4px;
}

/* ── Zapobieganie zoomowi na iOS przy focusie — wszystkie inputy min. 16px ── */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="date"],
input[type="time"],
textarea,
select,
.woocommerce input,
.woocommerce textarea,
.woocommerce select,
.woocommerce-checkout input,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
#payment input,
#payment select {
  font-size: 16px !important;
}
