:root {
  --hs-navy: #102a43;
  --hs-navy-light: #173f67;
  --hs-orange: #f28c28;
  --hs-orange-dark: #d87413;
  --hs-bg: #f4f7fb;
  --hs-text: #1f2937;
  --hs-muted: #6b7280;
  --hs-line: #dfe6ee;
  --hs-white: #fff;
  --hs-shadow: 0 12px 34px rgba(16, 42, 67, .10);
}

.hs-b2b-app,
.hs-b2b-app * {
  box-sizing: border-box;
}

.hs-b2b-app {
  min-height: 100vh;
  margin: 0;
  padding: 0 0 86px;
  background: var(--hs-bg);
  color: var(--hs-text);
  font-family: Inter, Arial, sans-serif;
}

.hs-b2b-app button,
.hs-b2b-app input {
  font: inherit;
}

.hs-b2b-app button {
  cursor: pointer;
}

.hs-b2b-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 11px max(16px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, var(--hs-navy), var(--hs-navy-light));
  color: white;
  box-shadow: 0 7px 22px rgba(16, 42, 67, .2);
}

.hs-b2b-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  border: 0;
  background: transparent;
  color: white;
  text-align: left;
}

.hs-b2b-brand strong,
.hs-b2b-brand small {
  display: block;
}

.hs-b2b-brand small {
  margin-top: 2px;
  opacity: .76;
}

.hs-b2b-brand-mark {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 17px;
  background: var(--hs-orange);
  color: white;
  font-weight: 900;
}

.hs-b2b-brand-mark-small {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.hs-b2b-logout {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  color: white !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
}

.hs-b2b-main {
  width: min(1180px, 100%);
  min-height: 70vh;
  margin: 0 auto;
  padding: 22px 16px 34px;
}

.hs-b2b-loader {
  position: fixed;
  z-index: 300;
  top: 82px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 15px;
  border-radius: 12px;
  background: var(--hs-navy);
  color: white;
  box-shadow: var(--hs-shadow);
}

.hs-b2b-hero,
.hs-b2b-draft-card,
.hs-b2b-cart-summary,
.hs-b2b-empty,
.hs-b2b-account-strip {
  border: 1px solid var(--hs-line);
  border-radius: 19px;
  background: white;
  box-shadow: var(--hs-shadow);
}

.hs-b2b-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px;
}

.hs-b2b-hero h1,
.hs-b2b-page-heading h1 {
  margin: 4px 0 6px;
  color: var(--hs-navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.hs-b2b-hero p {
  margin: 0;
  color: var(--hs-muted);
}

.hs-b2b-eyebrow {
  color: var(--hs-orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hs-b2b-primary-button,
.hs-b2b-secondary-button,
.hs-b2b-light-button {
  border: 0;
  border-radius: 12px;
  padding: 13px 17px;
  font-weight: 850;
}

.hs-b2b-primary-button {
  background: var(--hs-orange);
  color: white;
}

.hs-b2b-primary-button:hover {
  background: var(--hs-orange-dark);
}

.hs-b2b-secondary-button {
  background: var(--hs-navy);
  color: white;
}

.hs-b2b-light-button {
  background: #eaf1f7;
  color: var(--hs-navy);
}

.hs-b2b-primary-button.full {
  width: 100%;
}

.hs-b2b-draft-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 17px;
  padding: 20px;
  border: 2px solid rgba(242, 140, 40, .34);
  background: #fffaf4;
}

.hs-b2b-draft-card h2 {
  margin: 4px 0 6px;
  color: var(--hs-navy);
  font-size: 21px;
}

.hs-b2b-draft-card p,
.hs-b2b-draft-card small {
  margin: 0;
  color: var(--hs-muted);
}

.hs-b2b-draft-card small {
  display: block;
  margin-top: 5px;
}

.hs-b2b-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.hs-b2b-dashboard-tile {
  display: grid;
  gap: 7px;
  min-height: 145px;
  padding: 20px;
  border: 1px solid var(--hs-line);
  border-radius: 17px;
  background: white;
  color: var(--hs-navy);
  text-align: left;
  box-shadow: 0 6px 20px rgba(16, 42, 67, .06);
}

.hs-b2b-dashboard-tile > span {
  font-size: 27px;
}

.hs-b2b-dashboard-tile strong {
  font-size: 16px;
}

.hs-b2b-dashboard-tile small {
  color: var(--hs-muted);
  line-height: 1.4;
}

.hs-b2b-account-strip {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 18px;
  padding: 17px 20px;
}

.hs-b2b-account-strip span {
  color: var(--hs-muted);
}

.hs-b2b-page-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}

.hs-b2b-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  padding: 8px 10px 8px 15px;
  border: 1px solid var(--hs-line);
  border-radius: 15px;
  background: white;
}

.hs-b2b-search input {
  width: 100%;
  border: 0;
  padding: 10px;
  outline: 0;
  background: transparent;
}

.hs-b2b-search button {
  width: 43px;
  height: 43px;
  border: 0;
  border-radius: 11px;
  background: var(--hs-navy);
  color: white;
}

.hs-b2b-product-list {
  display: grid;
  gap: 11px;
  margin-top: 15px;
}

.hs-b2b-product-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 14px;
  border: 1px solid var(--hs-line);
  border-radius: 16px;
  background: white;
}

.hs-b2b-product-card img {
  width: 72px;
  height: 72px;
  border-radius: 13px;
  object-fit: contain;
  background: #edf2f7;
}

.hs-b2b-product-info h3 {
  margin: 0 0 6px;
  color: var(--hs-navy);
  font-size: 16px;
}

.hs-b2b-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 13px;
  margin-bottom: 7px;
  color: var(--hs-muted);
  font-size: 12px;
}

.hs-b2b-product-actions {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.hs-b2b-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hs-b2b-quantity button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 9px;
  background: #eaf1f7;
  color: var(--hs-navy);
  font-weight: 900;
}

.hs-b2b-quantity span {
  min-width: 34px;
  text-align: center;
  font-weight: 900;
}

.hs-b2b-save-notice {
  margin-bottom: 14px;
  padding: 13px 15px;
  border: 1px solid #cce6d8;
  border-radius: 13px;
  background: #eef8f3;
  color: #17633f;
}

.hs-b2b-cart-list {
  overflow: hidden;
  border: 1px solid var(--hs-line);
  border-radius: 17px;
  background: white;
}

.hs-b2b-cart-row {
  display: grid;
  grid-template-columns: 1fr auto minmax(90px, auto);
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--hs-line);
}

.hs-b2b-cart-row:last-child {
  border-bottom: 0;
}

.hs-b2b-cart-row h3 {
  margin: 0 0 5px;
  color: var(--hs-navy);
  font-size: 15px;
}

.hs-b2b-cart-row small,
.hs-b2b-cart-row > div > strong {
  display: block;
}

.hs-b2b-cart-row small {
  margin-bottom: 5px;
  color: var(--hs-muted);
}

.hs-b2b-cart-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 17px;
  padding: 17px 20px;
  border: 1px solid var(--hs-line);
  border-radius: 17px;
  background: white;
}

.hs-b2b-cart-search h2 {
  margin: 0;
  color: var(--hs-navy);
  font-size: 18px;
}

.hs-b2b-cart-summary {
  width: min(460px, 100%);
  margin: 17px 0 0 auto;
  padding: 20px;
}

.hs-b2b-cart-summary > div {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
}

.hs-b2b-cart-summary .total {
  margin: 8px 0 14px;
  padding-top: 15px;
  border-top: 1px solid var(--hs-line);
  color: var(--hs-navy);
  font-size: 19px;
}

.hs-b2b-empty {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 45px 20px;
  text-align: center;
}

.hs-b2b-empty > span {
  font-size: 42px;
}

.hs-b2b-empty h2 {
  margin: 0;
  color: var(--hs-navy);
}

.hs-b2b-bottom-nav {
  position: fixed;
  z-index: 120;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 73px;
  border-top: 1px solid var(--hs-line);
  background: white;
  box-shadow: 0 -8px 25px rgba(16, 42, 67, .08);
}

.hs-b2b-bottom-nav button {
  position: relative;
  border: 0;
  background: white;
  color: var(--hs-muted);
  font-size: 11px;
  font-weight: 800;
}

.hs-b2b-bottom-nav button.active {
  color: var(--hs-orange-dark);
}

.hs-b2b-bottom-nav button > span:not(.hs-b2b-cart-badge) {
  display: block;
  margin-bottom: 4px;
  font-size: 21px;
}

.hs-b2b-bottom-nav .scanner {
  transform: translateY(-10px);
}

.hs-b2b-bottom-nav .scanner > span {
  display: grid !important;
  place-items: center;
  width: 51px;
  height: 51px;
  margin: 0 auto 3px !important;
  border-radius: 50%;
  background: var(--hs-orange);
  color: white;
  box-shadow: 0 8px 17px rgba(242, 140, 40, .35);
}

.hs-b2b-cart-badge {
  position: absolute;
  z-index: 2;
  top: 5px;
  left: calc(50% + 8px);
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 12px;
  background: #b42318;
  color: white;
  font-size: 10px;
}

.hs-b2b-toast {
  position: fixed;
  z-index: 400;
  right: 18px;
  bottom: 92px;
  max-width: min(360px, calc(100vw - 36px));
  padding: 13px 16px;
  border-radius: 12px;
  background: #17633f;
  color: white;
  box-shadow: var(--hs-shadow);
}

.hs-b2b-toast.error {
  background: #b42318;
}

.hs-b2b-toast.info {
  background: var(--hs-navy);
}

.hs-b2b-login {
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 85% 10%, rgba(242, 140, 40, .25), transparent 28%),
    linear-gradient(145deg, #0c2237, #17436d);
}

.hs-b2b-login-card {
  width: min(430px, 100%);
  padding: 32px;
  border-radius: 24px;
  background: white;
  text-align: center;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.hs-b2b-login-card h1 {
  margin: 15px 0 5px;
  color: var(--hs-navy);
}

.hs-b2b-login-card p {
  margin: 0 0 22px;
  color: var(--hs-muted);
}

.hs-b2b-login-card a {
  display: inline-block;
  text-decoration: none !important;
}

.hs-b2b-system-message {
  margin: 20px;
  padding: 18px;
  border: 1px solid #f0c7c3;
  border-radius: 13px;
  background: #fff5f4;
  color: #8b2118;
}

@media (max-width: 720px) {
  .hs-b2b-hero,
  .hs-b2b-draft-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .hs-b2b-hero .hs-b2b-primary-button,
  .hs-b2b-draft-card .hs-b2b-secondary-button {
    width: 100%;
  }

  .hs-b2b-dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hs-b2b-product-card {
    grid-template-columns: 58px 1fr;
  }

  .hs-b2b-product-card img {
    width: 58px;
    height: 58px;
  }

  .hs-b2b-product-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    width: 100%;
    align-items: center;
  }

  .hs-b2b-cart-row {
    grid-template-columns: 1fr auto;
  }

  .hs-b2b-cart-row > strong {
    grid-column: 1 / -1;
    text-align: right;
  }
}

@media (max-width: 430px) {
  .hs-b2b-main {
    padding: 17px 11px 30px;
  }

  .hs-b2b-topbar {
    padding: 10px 12px;
  }

  .hs-b2b-dashboard-tile {
    min-height: 132px;
    padding: 15px;
  }

  .hs-b2b-hero {
    padding: 20px;
  }

  .hs-b2b-account-strip,
  .hs-b2b-cart-search {
    align-items: flex-start;
    flex-direction: column;
  }
}


.hs-b2b-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hs-b2b-quick-links-catalog {
  margin: 0 0 12px;
}

.hs-b2b-cart-links {
  margin: 14px 0 2px;
  justify-content: flex-end;
}

.hs-b2b-quick-links button,
.hs-b2b-quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid #d7e0e9;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--hs-navy) !important;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 3px 10px rgba(16, 42, 67, .04);
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.hs-b2b-quick-links button:hover,
.hs-b2b-quick-links a:hover,
.hs-b2b-quick-links button.active {
  border-color: rgba(242, 140, 40, .55);
  background: #fff8ef;
  color: var(--hs-orange-dark) !important;
}


/* HS B2B 2.0 v0.1.2 */
.hs-b2b-quick-links,
.hs-b2b-cart-links {
  justify-content: center;
}

.hs-b2b-quick-links .pill-promotions {
  border-color: #cfe6d7;
  background: #eef8f1;
  color: #237a45 !important;
}

.hs-b2b-quick-links .pill-hits {
  border-color: #f1dfb8;
  background: #fff7e7;
  color: #c87708 !important;
}

.hs-b2b-quick-links .pill-flyer {
  border-color: #cfe0f2;
  background: #eef5fc;
  color: #2468a8 !important;
}

.hs-b2b-order-note {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--hs-line);
  border-radius: 17px;
  background: white;
  box-shadow: 0 6px 20px rgba(16, 42, 67, .05);
}

.hs-b2b-order-note label {
  display: block;
  margin-bottom: 10px;
}

.hs-b2b-order-note label strong,
.hs-b2b-order-note label span {
  display: block;
}

.hs-b2b-order-note label strong {
  color: var(--hs-navy);
  font-size: 17px;
}

.hs-b2b-order-note label span,
.hs-b2b-order-note small {
  margin-top: 4px;
  color: var(--hs-muted);
  font-size: 12px;
  line-height: 1.45;
}

.hs-b2b-order-note textarea {
  width: 100%;
  min-height: 96px;
  resize: vertical;
  padding: 13px 14px;
  border: 1px solid var(--hs-line);
  border-radius: 13px;
  background: #fbfdff;
  color: var(--hs-text);
  outline: none;
}

.hs-b2b-order-note textarea:focus {
  border-color: var(--hs-orange);
  box-shadow: 0 0 0 4px rgba(242, 140, 40, .12);
}


/* HS B2B 2.0 v0.1.5 — katalog z gazetkami */
.hs-b2b-catalog-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.hs-b2b-catalog-main {
  min-width: 0;
}

.hs-b2b-flyer-sidebar {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 13px;
}

.hs-b2b-flyer-sidebar > h2 {
  margin: 0 0 2px;
  color: var(--hs-navy);
  font-size: 19px;
}

.hs-b2b-flyer-card {
  display: grid;
  gap: 7px;
  width: 100%;
  padding: 13px;
  overflow: hidden;
  border: 1px solid var(--hs-line);
  border-radius: 17px;
  background: white;
  color: var(--hs-navy);
  text-align: left;
  box-shadow: 0 6px 20px rgba(16, 42, 67, .06);
}

.hs-b2b-flyer-card:hover {
  border-color: rgba(242, 140, 40, .5);
  box-shadow: 0 10px 25px rgba(16, 42, 67, .11);
}

.hs-b2b-flyer-type {
  color: var(--hs-orange-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.hs-b2b-flyer-card > strong {
  font-size: 15px;
}

.hs-b2b-flyer-card > small {
  color: var(--hs-muted);
  text-align: center;
}

.hs-b2b-flyer-preview {
  position: relative;
  display: block;
  height: 300px;
  overflow: hidden;
  border: 1px solid var(--hs-line);
  border-radius: 11px;
  background: #f1f5f9;
}

.hs-b2b-flyer-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: #fff;
}

.hs-b2b-flyer-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #64748b;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: .08em;
  background: linear-gradient(145deg, #fff, #eef2f7);
}

.hs-b2b-flyer-modal[hidden] {
  display: none !important;
}

.hs-b2b-flyer-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
}

.hs-b2b-flyer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 39, .72);
  backdrop-filter: blur(3px);
}

.hs-b2b-flyer-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(1100px, 96vw);
  height: min(900px, 94vh);
  overflow: hidden;
  border-radius: 18px;
  background: white;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.hs-b2b-flyer-modal-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  background: var(--hs-navy);
  color: white;
}

.hs-b2b-flyer-modal-panel h2 {
  margin: 0;
  font-size: 18px;
}

.hs-b2b-flyer-modal-panel header button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  color: white;
  font-size: 26px;
  line-height: 1;
}

.hs-b2b-flyer-modal-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

body.hs-b2b-modal-open {
  overflow: hidden;
}

/* Osobna strona Gazetki */
.hs-b2b-flyers-page {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 24px 16px 50px;
}

.hs-b2b-flyers-page-header {
  margin-bottom: 20px;
  padding: 24px;
  border: 1px solid var(--hs-line);
  border-radius: 19px;
  background: white;
  box-shadow: var(--hs-shadow);
}

.hs-b2b-flyers-page-header h1 {
  margin: 4px 0 5px;
  color: var(--hs-navy);
  font-size: clamp(28px, 4vw, 42px);
}

.hs-b2b-flyers-page-header p {
  margin: 0;
  color: var(--hs-muted);
}

.hs-b2b-flyer-full {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--hs-line);
  border-radius: 19px;
  background: white;
  box-shadow: var(--hs-shadow);
}

.hs-b2b-flyer-full-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 14px;
}

.hs-b2b-flyer-full-heading h2 {
  margin: 3px 0 0;
  color: var(--hs-navy);
}

.hs-b2b-flyer-full-heading a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef5fc;
  color: #2468a8 !important;
  font-weight: 800;
  text-decoration: none !important;
}

.hs-b2b-flyer-full iframe {
  width: 100%;
  height: 1100px;
  border: 1px solid var(--hs-line);
  border-radius: 14px;
  background: #f3f6f9;
}

@media (max-width: 1023px) {
  .hs-b2b-catalog-layout {
    display: block;
  }

  .hs-b2b-flyer-sidebar {
    display: none;
  }
}

@media (max-width: 700px) {
  .hs-b2b-flyer-full {
    padding: 11px;
  }

  .hs-b2b-flyer-full-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .hs-b2b-flyer-full iframe {
    height: 76vh;
  }
}


/* HS B2B 2.0 v0.1.6 — strona wyboru gazetek */
.hs-b2b-flyers-page-header {
  text-align: center;
}

.hs-b2b-flyers-page-header p {
  max-width: 760px;
  margin: 8px auto 0;
  line-height: 1.6;
}

.hs-b2b-flyers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.hs-b2b-flyer-choice {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 15px;
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--hs-line);
  border-radius: 20px;
  background: white;
  color: var(--hs-text) !important;
  text-decoration: none !important;
  box-shadow: var(--hs-shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hs-b2b-flyer-choice:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 140, 40, .55);
  box-shadow: 0 18px 38px rgba(16, 42, 67, .14);
}

.hs-b2b-flyer-choice-heading {
  text-align: center;
}

.hs-b2b-flyer-choice-heading h2 {
  margin: 5px 0 7px;
  color: var(--hs-navy);
  font-size: 24px;
}

.hs-b2b-flyer-choice-heading p {
  margin: 0;
  color: var(--hs-muted);
  line-height: 1.5;
}

.hs-b2b-flyer-choice-preview {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--hs-line);
  border-radius: 14px;
  background: #f4f7fb;
}

.hs-b2b-flyer-choice-preview img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: contain;
  object-position: center top;
  background: #ffffff;
}

.hs-b2b-flyer-choice-placeholder {
  display: flex;
  min-height: 520px;
  padding: 32px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--hs-navy);
  text-align: center;
}

.hs-b2b-flyer-choice-placeholder-icon {
  display: inline-flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(255, 138, 31, 0.12);
  color: var(--hs-orange-dark);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.hs-b2b-flyer-choice-placeholder strong {
  font-size: 20px;
}

.hs-b2b-flyer-choice-placeholder small {
  color: var(--hs-muted);
  font-size: 14px;
}

.hs-b2b-flyer-choice-button {
  display: block;
  width: 100%;
  padding: 13px 16px;
  border-radius: 13px;
  background: var(--hs-orange);
  color: white;
  font-weight: 850;
  text-align: center;
}

.hs-b2b-flyer-choice:hover .hs-b2b-flyer-choice-button {
  background: var(--hs-orange-dark);
}

@media (max-width: 760px) {
  .hs-b2b-flyers-grid {
    grid-template-columns: 1fr;
  }

  .hs-b2b-flyer-choice-preview,
  .hs-b2b-flyer-choice-preview img,
  .hs-b2b-flyer-choice-placeholder {
    min-height: 68vh;
  }

  .hs-b2b-flyer-choice-preview img {
    height: 68vh;
  }

  .hs-b2b-flyer-choice-heading h2 {
    font-size: 21px;
  }
}


/* HS B2B 2.0 v0.1.9 — historia zamówień */
.hs-b2b-orders-list {
  display: grid;
  gap: 15px;
}

.hs-b2b-order-card {
  padding: 18px;
  border: 1px solid var(--hs-line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 7px 22px rgba(16, 42, 67, .06);
}

.hs-b2b-order-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.hs-b2b-order-card-top strong,
.hs-b2b-order-number {
  display: block;
}

.hs-b2b-order-number {
  margin-bottom: 4px;
  color: var(--hs-navy);
  font-size: 18px;
  font-weight: 900;
}

.hs-b2b-order-card-top strong {
  color: var(--hs-muted);
  font-size: 13px;
}

.hs-b2b-order-status {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.hs-b2b-order-status.completed { background: #eef8f1; color: #237a45; }
.hs-b2b-order-status.processing { background: #eef5fc; color: #2468a8; }
.hs-b2b-order-status.pending { background: #fff7e7; color: #b66d08; }
.hs-b2b-order-status.cancelled { background: #fff1f0; color: #a92f27; }

.hs-b2b-order-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.hs-b2b-order-summary-grid > div {
  padding: 12px;
  border-radius: 13px;
  background: #f5f8fb;
}

.hs-b2b-order-summary-grid span,
.hs-b2b-order-summary-grid strong {
  display: block;
}

.hs-b2b-order-summary-grid span {
  margin-bottom: 4px;
  color: var(--hs-muted);
  font-size: 11px;
}

.hs-b2b-order-summary-grid strong {
  color: var(--hs-navy);
}

.hs-b2b-order-details {
  margin-bottom: 14px;
  border-top: 1px solid var(--hs-line);
  border-bottom: 1px solid var(--hs-line);
}

.hs-b2b-order-details summary {
  padding: 13px 0;
  color: var(--hs-navy);
  font-weight: 800;
  cursor: pointer;
}

.hs-b2b-order-items {
  padding: 0 0 12px;
}

.hs-b2b-order-items > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 7px 0;
  color: var(--hs-muted);
  font-size: 13px;
}

.hs-b2b-order-items > div strong {
  color: var(--hs-navy);
  white-space: nowrap;
}

.hs-b2b-order-note-history {
  margin: 10px 0 0;
  padding: 11px 13px;
  border-radius: 11px;
  background: #fff8ef;
  color: var(--hs-text);
  font-size: 13px;
}

.hs-b2b-secondary-button.full {
  width: 100%;
}

@media (max-width: 520px) {
  .hs-b2b-order-card-top {
    flex-direction: column;
  }

  .hs-b2b-order-summary-grid > div {
    padding: 10px 8px;
  }
}


/* HS B2B 2.0 v0.2.2 — wybór adresu dostawy */
.hs-b2b-delivery-address {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--hs-line);
  border-radius: 17px;
  background: white;
  box-shadow: 0 6px 20px rgba(16, 42, 67, .05);
}

.hs-b2b-delivery-address label {
  display: block;
  margin-bottom: 10px;
}

.hs-b2b-delivery-address label strong {
  color: var(--hs-navy);
  font-size: 17px;
}

.hs-b2b-delivery-address select {
  width: 100%;
  min-height: 48px;
  padding: 11px 40px 11px 13px;
  border: 1px solid var(--hs-line);
  border-radius: 13px;
  background: #fbfdff;
  color: var(--hs-text);
  outline: none;
}

.hs-b2b-delivery-address select:focus {
  border-color: var(--hs-orange);
  box-shadow: 0 0 0 4px rgba(242, 140, 40, .12);
}

.hs-b2b-delivery-address small {
  display: block;
  margin-top: 7px;
  color: var(--hs-muted);
  font-size: 12px;
  line-height: 1.45;
}

.hs-b2b-address-empty {
  padding: 12px 13px;
  border-radius: 12px;
  background: #fff8ef;
  color: var(--hs-text);
  font-size: 13px;
}

/* HS B2B 2.0 v0.2.3 — marka, krótki opis i kategoria końcowa */
.hs-b2b-product-info {
  min-width: 0;
}

.hs-b2b-product-meta b {
  color: var(--hs-navy);
  font-weight: 800;
}

.hs-b2b-product-description {
  max-width: 720px;
  margin: 6px 0 8px;
  padding: 8px 10px;
  border-left: 3px solid var(--hs-orange);
  border-radius: 0 8px 8px 0;
  background: #fff8ef;
  color: #4b5563;
  font-size: 12px;
  line-height: 1.45;
}

.hs-b2b-product-price {
  display: inline-block;
  color: var(--hs-navy);
}

.hs-b2b-quick-links .pill-brands {
  border-color: #ddd5f4;
  background: #f5f1ff;
  color: #6445a5 !important;
}

.hs-b2b-quick-links .pill-brands:hover,
.hs-b2b-quick-links .pill-brands.active {
  border-color: #a990df;
  background: #ece4ff;
  color: #51358e !important;
}

.hs-b2b-brands-panel {
  margin: 0 0 14px;
  padding: 16px;
  border: 1px solid var(--hs-line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 6px 20px rgba(16, 42, 67, .05);
}

.hs-b2b-brands-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.hs-b2b-brands-heading strong {
  color: var(--hs-navy);
  font-size: 16px;
}

.hs-b2b-brands-heading button {
  border: 0;
  background: transparent;
  color: var(--hs-orange-dark);
  font-size: 12px;
  font-weight: 800;
}

.hs-b2b-brands-groups {
  display: grid;
  gap: 12px;
  max-height: 390px;
  overflow: auto;
  padding-right: 3px;
}

.hs-b2b-brand-group {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
}

.hs-b2b-brand-group > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--hs-navy);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.hs-b2b-brand-group > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hs-b2b-brand-group button {
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid #dbe3ec;
  border-radius: 999px;
  background: #f8fafc;
  color: var(--hs-navy);
  font-size: 12px;
  font-weight: 750;
}

.hs-b2b-brand-group button:hover,
.hs-b2b-brand-group button.active {
  border-color: rgba(242, 140, 40, .65);
  background: #fff3e6;
  color: var(--hs-orange-dark);
}

.hs-b2b-brands-panel-selected .hs-b2b-brands-groups {
  max-height: none;
  overflow: visible;
}

.hs-b2b-brands-panel-selected .hs-b2b-brand-group button.active {
  cursor: default;
}

@media (max-width: 720px) {
  .hs-b2b-product-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .hs-b2b-product-description {
    margin-top: 7px;
  }

  .hs-b2b-brands-panel {
    padding: 13px;
  }

  .hs-b2b-brand-group {
    grid-template-columns: 26px 1fr;
    gap: 8px;
  }

  .hs-b2b-brand-group > span {
    width: 26px;
    height: 26px;
    border-radius: 8px;
  }
}

/* Konto klienta 0.2.4 */
.hs-b2b-account-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--hs-line);
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--hs-shadow);
}

.hs-b2b-account-header h1 {
  margin: 4px 0 4px;
  color: var(--hs-navy);
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.15;
}

.hs-b2b-account-header p {
  margin: 0;
  color: var(--hs-muted);
  overflow-wrap: anywhere;
}

.hs-b2b-account-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 17px;
  background: var(--hs-orange);
  color: #fff;
  font-size: 25px;
  font-weight: 900;
}

.hs-b2b-account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.hs-b2b-account-card,
.hs-b2b-account-action-card {
  border: 1px solid var(--hs-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(16, 42, 67, .06);
}

.hs-b2b-account-card {
  padding: 20px;
}

.hs-b2b-account-card-wide {
  min-width: 0;
}

.hs-b2b-account-card-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.hs-b2b-account-card-heading h2 {
  margin: 0 0 3px;
  color: var(--hs-navy);
  font-size: 18px;
}

.hs-b2b-account-card-heading p,
.hs-b2b-account-card-note,
.hs-b2b-account-empty-note {
  margin: 0;
  color: var(--hs-muted);
  font-size: 13px;
  line-height: 1.45;
}

.hs-b2b-account-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #fff4e8;
  color: var(--hs-orange-dark);
  font-size: 20px;
}

.hs-b2b-account-details {
  display: grid;
  gap: 0;
  margin: 0;
}

.hs-b2b-account-details > div {
  display: grid;
  grid-template-columns: minmax(120px, .8fr) minmax(0, 1.7fr);
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid #edf1f5;
}

.hs-b2b-account-details dt {
  color: var(--hs-muted);
  font-size: 13px;
  font-weight: 700;
}

.hs-b2b-account-details dd {
  min-width: 0;
  margin: 0;
  color: var(--hs-navy);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.hs-b2b-account-addresses {
  display: grid;
  gap: 9px;
}

.hs-b2b-account-address {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 13px;
  border: 1px solid #e5ebf1;
  border-radius: 13px;
  background: #f9fbfd;
}

.hs-b2b-account-address.selected {
  border-color: rgba(242, 140, 40, .55);
  background: #fff8ef;
}

.hs-b2b-account-address strong,
.hs-b2b-account-address span {
  display: block;
}

.hs-b2b-account-address strong {
  margin-bottom: 3px;
  color: var(--hs-navy);
  font-size: 14px;
}

.hs-b2b-account-address span {
  color: var(--hs-muted);
  font-size: 12px;
  line-height: 1.4;
}

.hs-b2b-account-address em,
.hs-b2b-account-action-card em {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff0df;
  color: var(--hs-orange-dark);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.hs-b2b-account-card-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #edf1f5;
}

.hs-b2b-account-action-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 94px;
  padding: 15px;
  color: var(--hs-navy);
  text-align: left;
  text-decoration: none !important;
}

button.hs-b2b-account-action-card {
  font: inherit;
}

.hs-b2b-account-action-card:not(.is-static):hover {
  border-color: rgba(242, 140, 40, .52);
  transform: translateY(-1px);
}

.hs-b2b-account-action-card strong,
.hs-b2b-account-action-card small {
  display: block;
}

.hs-b2b-account-action-card strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.hs-b2b-account-action-card small {
  color: var(--hs-muted);
  font-size: 12px;
  line-height: 1.35;
}

.hs-b2b-account-action-card > b {
  color: var(--hs-orange);
  font-size: 27px;
  line-height: 1;
}

.hs-b2b-account-action-card.is-static {
  opacity: .78;
}

.hs-b2b-account-logout-card {
  color: #8b1d1d !important;
}

.hs-b2b-account-logout-card .hs-b2b-account-icon {
  background: #fff1f1;
  color: #b42318;
}

@media (max-width: 720px) {
  .hs-b2b-account-header {
    padding: 18px;
  }

  .hs-b2b-account-grid {
    grid-template-columns: 1fr;
  }

  .hs-b2b-account-card {
    padding: 16px;
  }

  .hs-b2b-account-details > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hs-b2b-account-action-card {
    min-height: 86px;
  }
}

/* HS B2B 0.2.5 — skaner EAN */
.hs-b2b-scanner-heading p {
  margin: 6px 0 0;
  color: #617186;
}

.hs-b2b-scanner-panel,
.hs-b2b-scanner-result,
.hs-b2b-manual-ean {
  background: #fff;
  border: 1px solid #d9e3ee;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(16, 42, 67, .07);
  margin-bottom: 18px;
}

.hs-b2b-scanner-camera {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border-radius: 16px;
  background: #071626;
}

.hs-b2b-scanner-camera video {
  width: 100%;
  min-height: 310px;
  height: 52vh;
  max-height: 540px;
  object-fit: cover;
  display: block;
}

.hs-b2b-scanner-frame {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 50%;
  height: 132px;
  transform: translateY(-50%);
  border: 3px solid rgba(255, 255, 255, .95);
  border-radius: 16px;
  box-shadow: 0 0 0 999px rgba(2, 14, 26, .42);
  pointer-events: none;
}

.hs-b2b-scanner-line {
  position: absolute;
  left: 13%;
  right: 13%;
  top: 50%;
  height: 3px;
  border-radius: 99px;
  background: #ff8a1f;
  box-shadow: 0 0 14px rgba(255, 138, 31, .9);
  animation: hs-b2b-scan-line 1.8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes hs-b2b-scan-line {
  from { transform: translateY(-48px); }
  to { transform: translateY(48px); }
}

.hs-b2b-scanner-status {
  margin: 14px 0;
  text-align: center;
  font-weight: 700;
  color: var(--hs-navy);
}

.hs-b2b-scanner-error {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff3e8;
  color: #8f3f00;
  font-weight: 700;
  line-height: 1.45;
}

.hs-b2b-scanner-success {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: #e9f8ef;
  color: #16763c;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.hs-b2b-scanner-product {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: start;
}

.hs-b2b-scanner-product img {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  object-fit: contain;
  background: #f6f9fc;
}

.hs-b2b-scanner-product h2 {
  margin: 0 0 8px;
  color: var(--hs-navy);
  font-size: 21px;
  line-height: 1.25;
}

.hs-b2b-scanner-in-cart {
  margin: 10px 0 0;
  color: #56677a;
}

.hs-b2b-scanner-quantity-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 18px 0 14px;
  padding-top: 16px;
  border-top: 1px solid #e4ebf2;
  font-weight: 800;
  color: var(--hs-navy);
}

.hs-b2b-scanner-quantity strong {
  min-width: 42px;
  text-align: center;
}

.hs-b2b-scanner-add { margin-bottom: 9px; }

.hs-b2b-manual-ean label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 10px;
  color: var(--hs-navy);
}

.hs-b2b-manual-ean label small {
  color: #718096;
  font-weight: 500;
}

.hs-b2b-manual-ean > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

.hs-b2b-manual-ean input {
  min-width: 0;
  border: 1px solid #cdd9e6;
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 16px;
  color: var(--hs-navy);
  background: #fff;
}

@media (max-width: 640px) {
  .hs-b2b-scanner-panel,
  .hs-b2b-scanner-result,
  .hs-b2b-manual-ean {
    border-radius: 16px;
    padding: 13px;
  }

  .hs-b2b-scanner-camera,
  .hs-b2b-scanner-camera video {
    min-height: 300px;
    height: 48vh;
  }

  .hs-b2b-scanner-product {
    grid-template-columns: 76px 1fr;
    gap: 12px;
  }

  .hs-b2b-scanner-product img {
    width: 76px;
    height: 76px;
  }

  .hs-b2b-scanner-product h2 { font-size: 17px; }
  .hs-b2b-scanner-quantity-row { align-items: center; }
  .hs-b2b-manual-ean > div { grid-template-columns: 1fr; }
  .hs-b2b-manual-ean .hs-b2b-secondary-button { width: 100%; }
}

/* Widok wejściowy przed zalogowaniem */
body:has(.hs-b2b-login) .entry-title,
body:has(.hs-b2b-login) .page-title,
body:has(.hs-b2b-login) .wp-block-post-title {
  display: none !important;
}

body:has(.hs-b2b-login) .site-main,
body:has(.hs-b2b-login) .content-area,
body:has(.hs-b2b-login) .entry-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hs-b2b-login,
.hs-b2b-login * {
  box-sizing: border-box;
}

.hs-b2b-login {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: clamp(520px, 68vh, 720px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 56px 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 140, 40, .28), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(91, 155, 230, .22), transparent 30%),
    linear-gradient(145deg, #0b2238 0%, #123b61 58%, #0f2f4f 100%);
  font-family: Inter, Arial, sans-serif;
}

.hs-b2b-login::before,
.hs-b2b-login::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
}

.hs-b2b-login::before {
  width: 460px;
  height: 460px;
  top: -250px;
  right: -140px;
}

.hs-b2b-login::after {
  width: 360px;
  height: 360px;
  bottom: -220px;
  left: -100px;
}

.hs-b2b-login-card {
  width: min(520px, 100%);
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 28px;
  background: rgba(255, 255, 255, .97);
  text-align: left;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .30);
  backdrop-filter: blur(10px);
}

.hs-b2b-login-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5ebf1;
}

.hs-b2b-login-brand strong,
.hs-b2b-login-brand span {
  display: block;
}

.hs-b2b-login-brand strong {
  color: var(--hs-navy);
  font-size: 20px;
  line-height: 1.15;
}

.hs-b2b-login-brand span {
  margin-top: 4px;
  color: var(--hs-muted);
  font-size: 14px;
}

.hs-b2b-login-copy {
  padding: 30px 0 25px;
}

.hs-b2b-login-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--hs-orange-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hs-b2b-login-card h1 {
  margin: 0;
  color: var(--hs-navy);
  font-size: clamp(29px, 4vw, 40px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.hs-b2b-login-card p {
  margin: 16px 0 0;
  color: #596779;
  font-size: 16px;
  line-height: 1.65;
}

.hs-b2b-login-button {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(242, 140, 40, .24);
}

.hs-b2b-login-button span {
  font-size: 22px;
  line-height: 1;
  transition: transform .2s ease;
}

.hs-b2b-login-button:hover span {
  transform: translateX(4px);
}

.hs-b2b-login-note {
  display: block;
  margin-top: 17px;
  color: #7b8794;
  text-align: center;
  font-size: 12px;
}

@media (max-width: 640px) {
  .hs-b2b-login {
    min-height: calc(100vh - 150px);
    padding: 28px 16px;
  }

  .hs-b2b-login-card {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .hs-b2b-login-brand {
    padding-bottom: 20px;
  }

  .hs-b2b-login-copy {
    padding: 25px 0 22px;
  }

  .hs-b2b-login-card h1 {
    font-size: 30px;
  }

  .hs-b2b-login-card p {
    font-size: 15px;
  }
}

/* HS B2B 2.0 v0.2.9 — uproszczony ekran wejściowy */
.hs-b2b-login-card {
  width: min(100%, 500px);
  padding: 38px 36px 32px;
}

.hs-b2b-login-copy {
  padding: 0 0 27px;
}

.hs-b2b-login-card h1 {
  font-size: clamp(30px, 4vw, 38px);
}

.hs-b2b-login-card p {
  margin-top: 15px;
  line-height: 1.6;
}

.hs-b2b-login-note {
  max-width: 360px;
  margin: 18px auto 0;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .hs-b2b-login {
    padding: 42px 20px;
  }

  .hs-b2b-login-card {
    padding: 32px 24px 27px;
  }

  .hs-b2b-login-copy {
    padding-bottom: 24px;
  }

  .hs-b2b-login-card h1 {
    font-size: 29px;
  }
}


/* HS B2B 2.0 v0.2.11 — uporządkowany branding panelu */
.hs-b2b-brand > span:last-child {
  display: flex;
  align-items: center;
}

.hs-b2b-brand strong {
  font-size: 17px;
  line-height: 1.2;
}

.hs-b2b-new-order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.hs-b2b-new-order-button > span {
  font-size: 19px;
  line-height: 1;
}

.hs-b2b-bottom-nav button {
  transition: color .18s ease, transform .18s ease, background-color .18s ease;
}

.hs-b2b-bottom-nav button:active {
  transform: scale(.97);
}

.hs-b2b-bottom-nav button.active:not(.scanner)::after {
  content: "";
  position: absolute;
  right: 28%;
  bottom: 4px;
  left: 28%;
  height: 3px;
  border-radius: 999px;
  background: var(--hs-orange);
}

.hs-b2b-primary-button,
.hs-b2b-secondary-button,
.hs-b2b-dashboard-tile,
.hs-b2b-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

@media (hover: hover) {
  .hs-b2b-primary-button:hover,
  .hs-b2b-secondary-button:hover {
    transform: translateY(-1px);
  }

  .hs-b2b-dashboard-tile:hover {
    transform: translateY(-2px);
  }
}

/* HS B2B 2.0 v0.2.15 — dopracowany newsletter */
.hs-b2b-flyers-note {
  margin: 16px 0 0;
  color: var(--hs-muted);
  font-size: 13px;
  text-align: center;
}

.hs-b2b-newsletter-box {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 44px;
  margin-top: 32px;
  padding: 38px 40px;
  border: 1px solid rgba(242, 140, 40, .42);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(242, 140, 40, .12), transparent 34%),
    linear-gradient(135deg, #fffaf5 0%, #ffffff 100%);
  box-shadow: var(--hs-shadow);
}

.hs-b2b-newsletter-copy h2 {
  margin: 10px 0 12px;
  color: var(--hs-navy);
  font-size: clamp(27px, 2.55vw, 38px);
  line-height: 1.13;
}

.hs-b2b-newsletter-copy p {
  max-width: 590px;
  margin: 0;
  color: var(--hs-muted);
  line-height: 1.65;
}

.hs-b2b-newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 16px 14px;
  align-items: start;
}

.hs-b2b-newsletter-email {
  min-width: 0;
}

.hs-b2b-newsletter-email input {
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid var(--hs-line);
  border-radius: 13px;
  background: #fff;
  color: var(--hs-text);
  font: inherit;
}

.hs-b2b-newsletter-email input:focus {
  outline: 3px solid rgba(242, 140, 40, .18);
  border-color: var(--hs-orange);
}

.hs-b2b-newsletter-form button {
  min-height: 54px;
  padding: 13px 22px;
  border: 0;
  border-radius: 13px;
  background: var(--hs-orange);
  color: #fff;
  font: inherit;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(242, 140, 40, .24);
}

.hs-b2b-newsletter-form button:hover {
  background: var(--hs-orange-dark);
}

.hs-b2b-newsletter-consent {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 2px;
  color: var(--hs-muted);
  font-size: 12px;
  line-height: 1.55;
}

.hs-b2b-newsletter-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--hs-orange);
}

.hs-b2b-newsletter-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.hs-b2b-newsletter-message {
  padding: 16px 18px;
  border-radius: 13px;
  font-weight: 750;
}

.hs-b2b-newsletter-message.success {
  background: #edf8f1;
  color: #247246;
}

.hs-b2b-newsletter-message.error {
  grid-column: 1 / -1;
  background: #fff1f0;
  color: #a53a32;
}

@media (max-width: 900px) {
  .hs-b2b-newsletter-box {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px 26px;
  }
}

@media (max-width: 560px) {
  .hs-b2b-newsletter-box {
    padding: 25px 20px;
  }

  .hs-b2b-newsletter-form {
    grid-template-columns: 1fr;
  }

  .hs-b2b-newsletter-form button,
  .hs-b2b-newsletter-email input {
    width: 100%;
  }
}


/* HS B2B 2.0 v0.2.17 — wybór sposobu płatności */
.hs-b2b-payment-method {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--hs-line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(16, 42, 67, .05);
}

.hs-b2b-payment-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}

.hs-b2b-payment-heading strong {
  color: var(--hs-navy);
  font-size: 17px;
}

.hs-b2b-payment-heading small {
  color: var(--hs-muted);
  font-size: 12px;
  line-height: 1.45;
}

.hs-b2b-payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hs-b2b-payment-option {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--hs-line);
  border-radius: 15px;
  background: #fbfdff;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.hs-b2b-payment-option:hover {
  transform: translateY(-1px);
  border-color: rgba(242, 140, 40, .55);
  background: #fffaf4;
}

.hs-b2b-payment-option.selected {
  border-color: var(--hs-orange);
  background: #fff8ef;
  box-shadow: 0 0 0 3px rgba(242, 140, 40, .10);
}

.hs-b2b-payment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hs-b2b-payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #edf4fa;
  font-size: 21px;
}

.hs-b2b-payment-option.selected .hs-b2b-payment-icon {
  background: #ffe8cf;
}

.hs-b2b-payment-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.hs-b2b-payment-copy strong {
  color: var(--hs-navy);
  font-size: 15px;
  line-height: 1.3;
}

.hs-b2b-payment-copy small {
  color: var(--hs-muted);
  font-size: 12px;
  line-height: 1.45;
}

.hs-b2b-payment-check {
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #b9c7d5;
  border-radius: 50%;
  background: #fff;
}

.hs-b2b-payment-option.selected .hs-b2b-payment-check {
  border: 6px solid var(--hs-orange);
}

@media (max-width: 680px) {
  .hs-b2b-payment-options {
    grid-template-columns: 1fr;
  }
}

/* Kaucja zwrotna — HS B2B 0.2.18 */
.hs-b2b-deposit-label {
  display: inline-flex !important;
  width: fit-content;
  margin-top: 7px;
  padding: 5px 9px;
  border: 1px solid #ffd2a3;
  border-radius: 999px;
  background: #fff4e8;
  color: #b85d00 !important;
  font-size: 11px !important;
  font-weight: 800;
  line-height: 1.25;
}

.hs-b2b-cart-summary > div span small {
  color: var(--hs-muted);
  font-size: 11px;
  font-weight: 600;
}


/* Koszyk hurtowy — kompaktowe sterowanie i szybkie usuwanie, HS B2B 0.2.20 */
.hs-b2b-cart-row .hs-b2b-quantity {
  flex-wrap: nowrap;
}

.hs-b2b-remove-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-left: 4px;
  padding: 0;
  border: 1px solid #f2c8c8 !important;
  border-radius: 9px;
  background: #fff4f4 !important;
  color: #ba3131 !important;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.hs-b2b-remove-item svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  pointer-events: none;
}

.hs-b2b-remove-item:hover {
  border-color: #df8f8f !important;
  background: #ffe8e8 !important;
  color: #981f1f !important;
  transform: translateY(-1px);
}

@media (min-width: 681px) {
  .hs-b2b-cart-row {
    grid-template-columns: minmax(0, 1fr) auto minmax(90px, auto);
  }

  .hs-b2b-cart-row .hs-b2b-quantity {
    gap: 5px;
    padding: 4px;
    border: 1px solid var(--hs-line);
    border-radius: 12px;
    background: #f8fafc;
  }

  .hs-b2b-cart-row .hs-b2b-qty-button {
    width: 30px;
    height: 30px;
    border: 1px solid #dbe6ef;
    border-radius: 8px;
    background: #edf3f8;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
  }

  .hs-b2b-cart-row .hs-b2b-qty-button:hover {
    border-color: #c5d6e5;
    background: #e3edf5;
  }

  .hs-b2b-cart-row .hs-b2b-quantity span {
    min-width: 38px;
    padding: 0 3px;
    font-size: 15px;
  }

  .hs-b2b-cart-row .hs-b2b-remove-item {
    width: 30px;
    height: 30px;
    margin-left: 3px;
    border-radius: 8px;
  }
}

@media (max-width: 680px) {
  .hs-b2b-cart-row .hs-b2b-remove-item {
    margin-left: 2px;
  }
}


/* Bezpośrednie wpisywanie ilości hurtowych — HS B2B 0.2.23 */
.hs-b2b-cart-row .hs-b2b-qty-input {
  width: 74px;
  height: 34px;
  padding: 4px 8px;
  border: 1px solid #cfddea !important;
  border-radius: 9px;
  background: #ffffff !important;
  color: var(--hs-navy) !important;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.hs-b2b-cart-row .hs-b2b-qty-input::-webkit-outer-spin-button,
.hs-b2b-cart-row .hs-b2b-qty-input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.hs-b2b-cart-row .hs-b2b-qty-input:hover {
  border-color: #aebfd0 !important;
}

.hs-b2b-cart-row .hs-b2b-qty-input:focus {
  border-color: var(--hs-orange) !important;
  background: #fffdfa !important;
  box-shadow: 0 0 0 3px rgba(247, 147, 30, .14);
}

@media (min-width: 681px) {
  .hs-b2b-cart-row .hs-b2b-qty-input {
    width: 72px;
    height: 30px;
    padding: 3px 7px;
    border-radius: 8px;
    font-size: 14px;
  }
}

@media (max-width: 680px) {
  .hs-b2b-cart-row .hs-b2b-qty-input {
    width: 70px;
    min-width: 70px;
    height: 38px;
    font-size: 16px;
  }
}


/* Wpisywanie ilości bezpośrednio podczas kompletowania zamówienia — HS B2B 0.2.24 */
.hs-b2b-product-actions .hs-b2b-catalog-quantity {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.hs-b2b-product-actions .hs-b2b-catalog-qty-input {
  width: 78px;
  height: 34px;
  padding: 4px 8px;
  border: 1px solid #cfddea !important;
  border-radius: 9px;
  background: #ffffff !important;
  color: var(--hs-navy) !important;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.hs-b2b-product-actions .hs-b2b-catalog-qty-input::-webkit-outer-spin-button,
.hs-b2b-product-actions .hs-b2b-catalog-qty-input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.hs-b2b-product-actions .hs-b2b-catalog-qty-input:focus {
  border-color: var(--hs-orange) !important;
  background: #fffdfa !important;
  box-shadow: 0 0 0 3px rgba(247, 147, 30, .14);
}

.hs-b2b-catalog-add-row {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 9px;
}

.hs-b2b-catalog-add-label {
  display: grid;
  gap: 4px;
  color: var(--hs-muted);
  font-size: 11px;
  font-weight: 700;
}

.hs-b2b-catalog-add-row .hs-b2b-primary-button {
  min-height: 34px;
  padding: 7px 15px;
}

@media (min-width: 681px) {
  .hs-b2b-product-actions .hs-b2b-catalog-qty-input {
    width: 76px;
    height: 32px;
    font-size: 14px;
  }
}

@media (max-width: 680px) {
  .hs-b2b-product-actions .hs-b2b-catalog-quantity,
  .hs-b2b-catalog-add-row {
    width: 100%;
    justify-content: space-between;
  }

  .hs-b2b-product-actions .hs-b2b-catalog-qty-input {
    width: 86px;
    min-width: 86px;
    height: 40px;
    font-size: 16px;
  }

  .hs-b2b-catalog-add-label {
    flex: 1 1 auto;
  }

  .hs-b2b-catalog-add-row .hs-b2b-primary-button {
    min-height: 40px;
    padding: 9px 18px;
  }
}


/* HS B2B 0.2.28 — poprawione naliczanie VAT i typografia podsumowania */
.hs-b2b-product-pricing { display:flex; flex-wrap:wrap; align-items:center; gap:7px; margin-top:8px; }
.hs-b2b-product-pricing .hs-b2b-product-price { margin:0; }
.hs-b2b-vat-badge, .hs-b2b-deposit-badge { display:inline-flex; align-items:center; min-height:25px; padding:5px 9px; border-radius:999px; font-size:11px; font-weight:800; line-height:1; white-space:nowrap; }
.hs-b2b-vat-badge { border:1px solid #d7e0ea; background:#f4f7fb; color:#40566f; }
.hs-b2b-deposit-badge { border:1px solid #ffd19a; background:#fff5e9; color:#b85a00; }
.hs-b2b-price-on-request { color:#0d2f50 !important; }
.hs-b2b-inquiry-button { display:inline-flex; align-items:center; justify-content:center; width:100%; min-height:44px; padding:11px 15px; border:1px solid #f7931e; border-radius:12px; background:#fff8f0; color:#c86500 !important; font-size:13px; font-weight:800; text-align:center; text-decoration:none !important; }
.hs-b2b-inquiry-button:hover { background:#f7931e; color:#fff !important; }
.hs-b2b-cart-summary .hs-b2b-summary-gross, .hs-b2b-cart-summary .hs-b2b-summary-total { margin-top:4px; padding-top:14px; border-top:1px solid #dce4ed; }
.hs-b2b-cart-summary .hs-b2b-summary-gross strong { color:#0d2f50; font-size:18px; }
.hs-b2b-cart-summary .hs-b2b-summary-total { margin-top:8px; border-top:2px solid #f7931e; }
.hs-b2b-cart-summary .hs-b2b-summary-total span, .hs-b2b-cart-summary .hs-b2b-summary-total strong { color:#0d2f50; font-size:19px; font-weight:900; }
@media (max-width:600px) { .hs-b2b-product-pricing{gap:6px}.hs-b2b-vat-badge,.hs-b2b-deposit-badge{min-height:23px;padding:5px 8px;font-size:10px}.hs-b2b-cart-summary .hs-b2b-summary-total span,.hs-b2b-cart-summary .hs-b2b-summary-total strong{font-size:17px} }


/* HS B2B 0.2.28 — czytelne polskie znaki w podsumowaniu */
.hs-b2b-cart-summary,
.hs-b2b-cart-summary span,
.hs-b2b-cart-summary strong,
.hs-b2b-cart-summary small {
  font-family: Arial, Helvetica, sans-serif !important;
  font-synthesis: none;
  letter-spacing: normal !important;
}
.hs-b2b-cart-summary .hs-b2b-summary-total span,
.hs-b2b-cart-summary .hs-b2b-summary-total strong {
  font-weight: 700 !important;
}

/* HS B2B 2.0 v0.2.29 — menu u góry na komputerze, na dole na telefonie */
@media (min-width: 769px) {
  .hs-b2b-app {
    padding-bottom: 0;
  }

  .hs-b2b-bottom-nav {
    position: sticky;
    top: 66px;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 95;
    width: 100%;
    min-height: 70px;
    border-top: 0;
    border-bottom: 1px solid var(--hs-line);
    background: #fff;
    box-shadow: 0 7px 22px rgba(16, 42, 67, .08);
  }

  .hs-b2b-bottom-nav button {
    min-height: 70px;
  }

  .hs-b2b-bottom-nav .scanner {
    transform: none;
  }

  .hs-b2b-bottom-nav .scanner > span {
    width: 43px;
    height: 43px;
    margin-bottom: 2px !important;
  }

  .hs-b2b-bottom-nav button.active:not(.scanner)::after {
    bottom: 0;
  }
}

@media (max-width: 768px) {
  .hs-b2b-bottom-nav {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
  }
}


@media (min-width: 1025px){.hs-mobile-only{display:none !important;}}


/* HS B2B 2.0 v0.2.32 — wyśrodkowane, większe menu desktopowe bez skanera */
@media (min-width: 1025px) {
  .hs-b2b-bottom-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 78px;
  }

  .hs-b2b-bottom-nav button {
    min-height: 78px;
    font-size: 12px;
    text-align: center;
  }

  .hs-b2b-bottom-nav button > span:not(.hs-b2b-cart-badge) {
    margin-bottom: 5px;
    font-size: 24px;
  }

  .hs-b2b-bottom-nav .cart-button > span:not(.hs-b2b-cart-badge) {
    font-size: 23px;
  }

  .hs-b2b-bottom-nav button.active:not(.scanner)::after {
    right: 24%;
    left: 24%;
    height: 3px;
  }
}


/* HS B2B 2.0 v0.2.34 — filtr Nowości w katalogu */
.hs-b2b-quick-links {
  gap: 8px;
}

.hs-b2b-quick-links .pill-new-products {
  border-color: #d9d0f6;
  background: #f5f1ff;
  color: #6841c7 !important;
}

.hs-b2b-quick-links .pill-new-products:hover,
.hs-b2b-quick-links .pill-new-products.active {
  border-color: #aa91eb;
  background: #ede6ff;
  color: #5630b3 !important;
}

@media (max-width: 1100px) {
  .hs-b2b-quick-links button,
  .hs-b2b-quick-links a {
    padding-right: 13px;
    padding-left: 13px;
  }
}


/* HS B2B 2.0 v0.2.35 — wybór kategorii w katalogu */
.hs-b2b-quick-links .pill-categories {
  border-color: #cfd9e5;
  background: #f7f9fc;
  color: #17375e !important;
}

.hs-b2b-quick-links .pill-categories:hover,
.hs-b2b-quick-links .pill-categories.active {
  border-color: #9fb3c8;
  background: #eaf0f6;
  color: #0b2948 !important;
}

.hs-b2b-categories-panel {
  margin: 14px 0 18px;
  padding: 18px;
  border: 1px solid #dce5ee;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(8, 40, 73, 0.06);
}

.hs-b2b-categories-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.hs-b2b-categories-heading strong {
  color: #0b2948;
  font-size: 15px;
}

.hs-b2b-categories-heading button {
  padding: 7px 12px;
  border: 1px solid #dce5ee;
  border-radius: 999px;
  background: #fff;
  color: #5e6f82;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.hs-b2b-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hs-b2b-category-list button,
.hs-b2b-category-selected button {
  padding: 9px 13px;
  border: 1px solid #dce5ee;
  border-radius: 999px;
  background: #f7f9fc;
  color: #17375e;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.hs-b2b-category-list button:hover,
.hs-b2b-category-list button.active,
.hs-b2b-category-selected button.active {
  border-color: #ffb66d;
  background: #fff0df;
  color: #e87409;
}

.hs-b2b-category-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 700px) {
  .hs-b2b-categories-panel {
    padding: 15px;
  }

  .hs-b2b-category-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hs-b2b-category-list button {
    width: 100%;
    text-align: center;
  }
}


/* HS B2B 2.0 v0.2.36 — Kategorie również w koszyku */
.hs-b2b-cart-links {
  gap: 8px;
}

.hs-b2b-cart-links .pill-categories {
  border-color: #cfd9e5;
  background: #f7f9fc;
  color: #17375e !important;
}

.hs-b2b-cart-links .pill-categories:hover {
  border-color: #9fb3c8;
  background: #eaf0f6;
  color: #0b2948 !important;
}

@media (max-width: 900px) {
  .hs-b2b-cart-links {
    flex-wrap: wrap;
  }
}


/* HS B2B 2.0 v0.2.38 — oznaczenie gazetki/nowości na liście */
.hs-b2b-offer-marker {
  margin: 9px 0 0 !important;
  padding: 8px 11px !important;
  border-left: 3px solid #ff8a1f;
  border-radius: 0 9px 9px 0;
  background: #fff7ee !important;
  color: #6a4b2e !important;
  font-size: 12px !important;
  font-weight: 600;
  line-height: 1.4 !important;
}

@media (max-width: 700px) {
  .hs-b2b-offer-marker {
    padding: 7px 9px !important;
    font-size: 11px !important;
  }
}


/* HS B2B 2.0 v0.2.39 — blokada produktów bez stanu */
.hs-b2b-out-of-stock {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid #efb3b3;
  border-radius: 12px;
  background: #fff1f1;
  color: #b42318;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

/* HS B2B 0.2.41 — poprawiony link regulaminu */
.hs-b2b-account-header {
  flex-wrap: wrap;
}

.hs-b2b-account-identity {
  min-width: 220px;
  flex: 1 1 280px;
}

.hs-b2b-account-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 8px;
  margin-left: auto;
}

.hs-b2b-account-stats > div {
  min-width: 92px;
  padding: 10px 12px;
  border: 1px solid #e8edf3;
  border-radius: 13px;
  background: rgba(255, 255, 255, .82);
  text-align: center;
}

.hs-b2b-account-stats strong,
.hs-b2b-account-stats span {
  display: block;
}

.hs-b2b-account-stats strong {
  color: var(--hs-navy);
  font-size: 19px;
  line-height: 1.1;
}

.hs-b2b-account-stats span {
  margin-top: 4px;
  color: var(--hs-muted);
  font-size: 11px;
  font-weight: 700;
}

.hs-b2b-product-card {
  position: relative;
}

.hs-b2b-favorite-button {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid #e3e9ef;
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  color: #a4afbc;
  box-shadow: 0 4px 14px rgba(16, 42, 67, .09);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
}

.hs-b2b-favorite-button:hover,
.hs-b2b-favorite-button.active {
  border-color: rgba(242, 140, 40, .55);
  color: var(--hs-orange-dark);
  background: #fff7ed;
}

.hs-b2b-settings-heading p {
  margin: 6px 0 0;
  color: var(--hs-muted);
}

.hs-b2b-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.hs-b2b-settings-card {
  padding: 20px;
  border: 1px solid var(--hs-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(16, 42, 67, .06);
}

.hs-b2b-setting-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid #edf1f5;
  cursor: pointer;
}

.hs-b2b-setting-row strong,
.hs-b2b-setting-row small {
  display: block;
}

.hs-b2b-setting-row strong {
  color: var(--hs-navy);
  font-size: 14px;
}

.hs-b2b-setting-row small {
  margin-top: 3px;
  color: var(--hs-muted);
  font-size: 12px;
  line-height: 1.4;
}

.hs-b2b-setting-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hs-b2b-setting-row i {
  position: relative;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: #dce3ea;
  transition: .2s ease;
}

.hs-b2b-setting-row i::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(16, 42, 67, .22);
  transition: .2s ease;
}

.hs-b2b-setting-row input:checked + i {
  background: var(--hs-orange);
}

.hs-b2b-setting-row input:checked + i::after {
  transform: translateX(20px);
}

.hs-b2b-settings-documents {
  grid-column: 1 / -1;
}

.hs-b2b-settings-documents > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid #edf1f5;
  color: var(--hs-navy);
  font-weight: 800;
  text-decoration: none !important;
}

.hs-b2b-settings-documents > a b {
  color: var(--hs-orange);
}

@media (max-width: 820px) {
  .hs-b2b-account-stats {
    width: 100%;
    margin-left: 0;
  }

  .hs-b2b-settings-grid {
    grid-template-columns: 1fr;
  }

  .hs-b2b-settings-documents {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .hs-b2b-account-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .hs-b2b-account-stats > div {
    min-width: 0;
    padding: 9px 6px;
  }

  .hs-b2b-settings-card {
    padding: 16px;
  }
}

/* Cena gazetkowa: cena końcowa, bez dodatkowego rabatu klienta */
.hs-b2b-flyer-price-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff3d6;
  color: #7a4a00;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

/* Hierarchiczne kategorie e-Hurt 0.2.51 */
.hs-b2b-category-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 4px 0 14px;
  color: #64748b;
  font-size: 13px;
}

.hs-b2b-category-breadcrumbs button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 3px 0;
  color: #245f96;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.hs-b2b-category-breadcrumbs strong {
  color: #102e4d;
}

.hs-b2b-category-level {
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
}

.hs-b2b-category-level > span {
  display: block;
  margin-bottom: 10px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.hs-b2b-category-list-children,
.hs-b2b-category-list-siblings {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hs-b2b-category-list-siblings button.active {
  border-color: #f58a1f;
  background: #fff3e8;
  color: #d96500;
  box-shadow: inset 0 0 0 1px rgba(245, 138, 31, .12);
}

@media (max-width: 680px) {
  .hs-b2b-category-list-children,
  .hs-b2b-category-list-siblings {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hs-b2b-category-list-children button,
  .hs-b2b-category-list-siblings button {
    width: 100%;
    text-align: left;
  }
}


/* e-Hurt 0.2.60 — przy braku produktu wyświetlany jest tylko komunikat „Brak w magazynie” */
.hs-b2b-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border: 1px solid #b9dfc4;
  border-radius: 999px;
  background: #eefaf1;
  color: #23703a;
  font-weight: 700;
  white-space: nowrap;
}
.hs-b2b-stock-badge b { color: inherit; }
.hs-b2b-stock-badge.is-empty {
  border-color: #efc3c3;
  background: #fff2f2;
  color: #a52d2d;
}


/* e-Hurt 0.2.61 — klikalne karty i publiczna karta produktu */
.hs-b2b-product-image-link { position: relative; display: block; text-decoration: none; color: inherit; }
.hs-b2b-product-image-link img { display: block; width: 100%; }
.hs-b2b-product-title-link { color: inherit; text-decoration: none; }
.hs-b2b-product-title-link:hover, .hs-b2b-product-title-link:focus { color: #d96500; text-decoration: underline; text-underline-offset: 3px; }
.hs-ehurt-price-inquiry { display: inline-block; color: #d96500; font-size: 1.15em; font-weight: 800; }
.hs-ehurt-single-ean { display: block; margin-top: 5px; }
.hs-ehurt-meta-label { font-weight: 700; }
.hs-ehurt-product-inquiry { margin: 20px 0; padding: 18px; border: 1px solid #fed7aa; border-radius: 14px; background: #fff7ed; }
.hs-ehurt-product-inquiry strong { display: block; margin-bottom: 5px; font-size: 18px; }
.hs-ehurt-product-inquiry p { margin: 0 0 14px; }

/* e-Hurt 0.2.62 — publiczna Oferta i karta produktu */
.hs-ehurt-public-offer ul.products li.product a.woocommerce-LoopProduct-link,
.hs-ehurt-public-offer ul.products li.product a.woocommerce-loop-product__link,
ul.products li.product a.woocommerce-LoopProduct-link,
ul.products li.product a.woocommerce-loop-product__link {
  position: relative;
  z-index: 2;
  display: block;
  pointer-events: auto !important;
  cursor: pointer;
  text-decoration: none;
}

.hs-ehurt-public-offer ul.products li.product img,
ul.products li.product a.woocommerce-loop-product__link img {
  cursor: zoom-in;
}

.hs-ehurt-single-product div.product {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.hs-ehurt-single-product div.product .woocommerce-product-gallery,
.hs-ehurt-single-product div.product .summary {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.hs-ehurt-single-product div.product .woocommerce-product-gallery {
  padding: 18px;
  border: 1px solid #e4eaf0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(15, 35, 55, .07);
}

.hs-ehurt-single-product div.product .woocommerce-product-gallery__image img {
  border-radius: 14px;
}

.hs-ehurt-single-product div.product .summary {
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid #e4eaf0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(15, 35, 55, .07);
}

.hs-ehurt-single-product div.product .product_title {
  margin: 0 0 14px;
  color: #102a43;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.18;
}

.hs-ehurt-single-product div.product .price {
  margin: 16px 0;
  color: #d96500;
  font-size: clamp(22px, 2.5vw, 31px);
  font-weight: 850;
}

.hs-ehurt-single-product div.product .stock {
  display: inline-flex;
  margin: 8px 0 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eefaf1;
  color: #23703a;
  font-weight: 800;
}

.hs-ehurt-single-product div.product .stock.out-of-stock {
  background: #fff2f2;
  color: #a52d2d;
}

.hs-ehurt-single-product div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  margin-top: 20px;
}

.hs-ehurt-single-product div.product form.cart .quantity .qty {
  min-height: 48px;
  border: 1px solid #cad5df;
  border-radius: 12px;
}

.hs-ehurt-single-product div.product .single_add_to_cart_button,
.hs-ehurt-product-inquiry .button {
  min-height: 48px;
  padding: 13px 22px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: #f28c28 !important;
  color: #fff !important;
  font-weight: 850 !important;
  text-decoration: none !important;
  box-shadow: 0 9px 20px rgba(242, 140, 40, .22);
}

.hs-ehurt-single-product div.product .product_meta {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e6edf3;
  color: #526575;
}

.hs-ehurt-product-inquiry {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid #fed7aa;
  border-radius: 16px;
  background: linear-gradient(145deg, #fffaf3, #fff5e8);
}

.hs-ehurt-public-view div.product form.cart,
.hs-ehurt-public-view div.product .single_add_to_cart_button {
  display: none !important;
}

@media (max-width: 820px) {
  .hs-ehurt-single-product div.product {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hs-ehurt-single-product div.product .woocommerce-product-gallery,
  .hs-ehurt-single-product div.product .summary {
    padding: 16px;
    border-radius: 16px;
  }

  .hs-ehurt-product-inquiry .button {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* e-Hurt 0.2.63 — publiczna Oferta: rzeczywiście klikalne wiersze produktów */
.hs-public-product-clickable {
  cursor: pointer !important;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.hs-public-product-clickable:hover,
.hs-public-product-clickable:focus-visible {
  border-color: #f28c28 !important;
  box-shadow: 0 10px 28px rgba(15, 35, 55, .10) !important;
  outline: none;
}
.hs-public-product-loading {
  opacity: .72;
  pointer-events: none;
}

/* e-Hurt 0.2.63 — spokojniejsza, bardziej proporcjonalna karta produktu */
.hs-ehurt-single-product div.product {
  grid-template-columns: minmax(280px, .92fr) minmax(360px, 1.08fr);
  max-width: 1240px;
  margin-inline: auto;
  gap: clamp(30px, 4vw, 56px);
}
.hs-ehurt-single-product div.product .product_title {
  margin: 0 0 18px !important;
  font-size: clamp(25px, 2.15vw, 36px) !important;
  line-height: 1.18 !important;
  letter-spacing: -.02em;
}
.hs-ehurt-single-product div.product .summary .price {
  margin: 0 0 18px !important;
  font-size: clamp(22px, 1.8vw, 30px) !important;
  line-height: 1.2;
}
.hs-ehurt-single-product div.product form.cart {
  display: flex !important;
  align-items: stretch !important;
  gap: 10px !important;
  margin: 18px 0 24px !important;
}
.hs-ehurt-single-product div.product form.cart .quantity {
  float: none !important;
  margin: 0 !important;
}
.hs-ehurt-single-product div.product form.cart .qty {
  width: 72px !important;
  min-height: 46px !important;
  text-align: center !important;
  border-radius: 10px !important;
}
.hs-ehurt-single-product div.product form.cart .single_add_to_cart_button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 190px !important;
  min-height: 46px !important;
  padding: 12px 24px !important;
  border-radius: 999px !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  text-align: center !important;
}
.hs-ehurt-single-product div.product .stock {
  margin: 8px 0 12px !important;
  font-size: 14px !important;
  font-weight: 700;
}
.hs-ehurt-single-product div.product .product_meta {
  font-size: 13px !important;
  line-height: 1.65 !important;
}
.hs-ehurt-single-product div.product .woocommerce-product-gallery {
  padding: 16px !important;
}
.hs-ehurt-single-product div.product .woocommerce-product-gallery img {
  max-height: 520px;
  width: 100%;
  object-fit: contain;
}
@media (max-width: 760px) {
  .hs-ehurt-single-product div.product {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hs-ehurt-single-product div.product .product_title {
    font-size: 25px !important;
  }
  .hs-ehurt-single-product div.product form.cart {
    flex-wrap: wrap;
  }
  .hs-ehurt-single-product div.product form.cart .single_add_to_cart_button {
    flex: 1 1 210px;
  }
}


/* e-Hurt 0.2.65 — jedna sekcja zapytania i dopracowane produkty podobne */
.hs-ehurt-public-view div.product .summary > .price,
.hs-ehurt-public-view div.product .summary > p.price,
.hs-ehurt-public-view div.product .summary > .stock,
.hs-ehurt-public-view div.product .summary > p.stock,
.hs-ehurt-public-view div.product .summary > .woocommerce-info,
.hs-ehurt-public-view div.product .summary > .woocommerce-message,
.hs-ehurt-public-view div.product .summary > .wc-memberships-member-discount-message {
  display: none !important;
}

.hs-ehurt-single-product .related.products,
.hs-ehurt-single-product .upsells.products {
  clear: both;
  width: 100%;
  margin-top: 30px;
}

.hs-ehurt-single-product .related.products > h2,
.hs-ehurt-single-product .upsells.products > h2 {
  margin: 0 0 16px;
  color: #102a43;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
}

.hs-ehurt-single-product .related.products ul.products,
.hs-ehurt-single-product .upsells.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin: 0 !important;
}

.hs-ehurt-single-product .related.products ul.products::before,
.hs-ehurt-single-product .related.products ul.products::after,
.hs-ehurt-single-product .upsells.products ul.products::before,
.hs-ehurt-single-product .upsells.products ul.products::after {
  display: none !important;
}

.hs-ehurt-single-product .related.products ul.products li.product,
.hs-ehurt-single-product .upsells.products ul.products li.product {
  float: none !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 14px !important;
  overflow: hidden;
  border: 1px solid #dfe7ef;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 35, 55, .06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.hs-ehurt-single-product .related.products ul.products li.product:hover,
.hs-ehurt-single-product .upsells.products ul.products li.product:hover {
  transform: translateY(-2px);
  border-color: #f3b16f;
  box-shadow: 0 12px 30px rgba(15, 35, 55, .10);
}

.hs-ehurt-single-product .related.products ul.products li.product a,
.hs-ehurt-single-product .upsells.products ul.products li.product a {
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.hs-ehurt-single-product .related.products ul.products li.product img,
.hs-ehurt-single-product .upsells.products ul.products li.product img {
  display: block;
  width: 100% !important;
  height: 150px !important;
  margin: 0 0 12px !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 10px;
  background: #fff;
}

.hs-ehurt-single-product .related.products ul.products li.product .woocommerce-loop-product__title,
.hs-ehurt-single-product .upsells.products ul.products li.product .woocommerce-loop-product__title {
  display: -webkit-box;
  min-height: 3.9em;
  margin: 0 !important;
  overflow: hidden;
  color: #102a43;
  font-size: 14px !important;
  font-weight: 750;
  line-height: 1.3 !important;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.hs-ehurt-public-view .related.products ul.products li.product .price,
.hs-ehurt-public-view .related.products ul.products li.product .button,
.hs-ehurt-public-view .related.products ul.products li.product .added_to_cart,
.hs-ehurt-public-view .upsells.products ul.products li.product .price,
.hs-ehurt-public-view .upsells.products ul.products li.product .button,
.hs-ehurt-public-view .upsells.products ul.products li.product .added_to_cart {
  display: none !important;
}

@media (max-width: 820px) {
  .hs-ehurt-single-product .related.products ul.products,
  .hs-ehurt-single-product .upsells.products ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .hs-ehurt-single-product .related.products ul.products li.product,
  .hs-ehurt-single-product .upsells.products ul.products li.product {
    padding: 9px !important;
    border-radius: 12px;
  }

  .hs-ehurt-single-product .related.products ul.products li.product img,
  .hs-ehurt-single-product .upsells.products ul.products li.product img {
    height: 105px !important;
    margin-bottom: 8px !important;
  }

  .hs-ehurt-single-product .related.products ul.products li.product .woocommerce-loop-product__title,
  .hs-ehurt-single-product .upsells.products ul.products li.product .woocommerce-loop-product__title {
    min-height: 3.6em;
    font-size: 12px !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 430px) {
  .hs-ehurt-single-product .related.products ul.products,
  .hs-ehurt-single-product .upsells.products ul.products {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hs-ehurt-single-product .related.products ul.products li.product,
  .hs-ehurt-single-product .upsells.products ul.products li.product {
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
  }

  .hs-ehurt-single-product .related.products ul.products li.product img,
  .hs-ehurt-single-product .upsells.products ul.products li.product img {
    width: 92px !important;
    height: 92px !important;
    margin: 0 !important;
  }

  .hs-ehurt-single-product .related.products ul.products li.product .woocommerce-loop-product__title,
  .hs-ehurt-single-product .upsells.products ul.products li.product .woocommerce-loop-product__title {
    min-height: auto;
    font-size: 13px !important;
    -webkit-line-clamp: 3;
  }
}


/* e-Hurt 0.2.66 — czytelne produkty podobne na telefonie */
@media (max-width: 600px) {
  .hs-ehurt-single-product .related.products,
  .hs-ehurt-single-product .upsells.products {
    margin-top: 24px;
  }

  .hs-ehurt-single-product .related.products > h2,
  .hs-ehurt-single-product .upsells.products > h2 {
    margin-bottom: 12px;
    font-size: 22px !important;
  }

  .hs-ehurt-single-product .related.products ul.products,
  .hs-ehurt-single-product .upsells.products ul.products {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .hs-ehurt-single-product .related.products ul.products li.product,
  .hs-ehurt-single-product .upsells.products ul.products li.product {
    display: block !important;
    width: 100% !important;
    min-height: 0 !important;
    padding: 12px !important;
    overflow: visible !important;
    border-radius: 14px;
  }

  .hs-ehurt-single-product .related.products ul.products li.product > a.woocommerce-LoopProduct-link,
  .hs-ehurt-single-product .related.products ul.products li.product > a.woocommerce-loop-product__link,
  .hs-ehurt-single-product .upsells.products ul.products li.product > a.woocommerce-LoopProduct-link,
  .hs-ehurt-single-product .upsells.products ul.products li.product > a.woocommerce-loop-product__link {
    display: grid !important;
    grid-template-columns: 96px minmax(0, 1fr) !important;
    grid-template-rows: auto !important;
    column-gap: 14px !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .hs-ehurt-single-product .related.products ul.products li.product img,
  .hs-ehurt-single-product .upsells.products ul.products li.product img {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 96px !important;
    max-width: 96px !important;
    height: 96px !important;
    max-height: 96px !important;
    margin: 0 !important;
    padding: 4px !important;
    object-fit: contain !important;
    border: 1px solid #edf1f5;
    border-radius: 10px;
    background: #fff;
  }

  .hs-ehurt-single-product .related.products ul.products li.product .woocommerce-loop-product__title,
  .hs-ehurt-single-product .upsells.products ul.products li.product .woocommerce-loop-product__title {
    grid-column: 2 !important;
    grid-row: 1 !important;
    display: -webkit-box !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    text-align: left !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .hs-ehurt-single-product .related.products ul.products li.product .price,
  .hs-ehurt-single-product .upsells.products ul.products li.product .price {
    display: block;
    margin: 8px 0 0 110px !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
  }

  .hs-ehurt-public-view .related.products ul.products li.product .price,
  .hs-ehurt-public-view .related.products ul.products li.product .button,
  .hs-ehurt-public-view .related.products ul.products li.product .added_to_cart,
  .hs-ehurt-public-view .upsells.products ul.products li.product .price,
  .hs-ehurt-public-view .upsells.products ul.products li.product .button,
  .hs-ehurt-public-view .upsells.products ul.products li.product .added_to_cart,
  .hs-ehurt-public-view .related.products ul.products li.product [class*="login"],
  .hs-ehurt-public-view .upsells.products ul.products li.product [class*="login"] {
    display: none !important;
  }
}


/* e-Hurt 0.2.67 — profesjonalna sekcja produktów podobnych */
.hs-ehurt-single-product .related.products,
.hs-ehurt-single-product .upsells.products {
  clear: both !important;
  width: 100% !important;
  max-width: none !important;
  margin: 34px 0 0 !important;
  padding: 0 !important;
}

.hs-ehurt-single-product .related.products > h2,
.hs-ehurt-single-product .upsells.products > h2 {
  margin: 0 0 16px !important;
  color: #102a43 !important;
  font-size: clamp(22px, 2vw, 28px) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

.hs-ehurt-single-product .related.products ul.products,
.hs-ehurt-single-product .upsells.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.hs-ehurt-single-product .related.products ul.products li.product,
.hs-ehurt-single-product .upsells.products ul.products li.product {
  display: block !important;
  float: none !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 250px !important;
  margin: 0 !important;
  padding: 16px !important;
  overflow: hidden !important;
  border: 1px solid #d9e2ec !important;
  border-radius: 10px !important;
  background: #fff !important;
  box-shadow: 0 6px 18px rgba(15, 35, 55, .06) !important;
  text-align: left !important;
}

.hs-ehurt-single-product .related.products ul.products li.product:hover,
.hs-ehurt-single-product .upsells.products ul.products li.product:hover {
  transform: none !important;
  border-color: #bcccdc !important;
  box-shadow: 0 8px 22px rgba(15, 35, 55, .09) !important;
}

.hs-ehurt-single-product .related.products ul.products li.product > a,
.hs-ehurt-single-product .upsells.products ul.products li.product > a,
.hs-ehurt-single-product .related.products ul.products li.product .woocommerce-loop-product__link,
.hs-ehurt-single-product .upsells.products ul.products li.product .woocommerce-loop-product__link {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  text-decoration: none !important;
}

.hs-ehurt-single-product .related.products ul.products li.product img,
.hs-ehurt-single-product .upsells.products ul.products li.product img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 132px !important;
  max-height: 132px !important;
  margin: 0 0 14px !important;
  padding: 6px !important;
  object-fit: contain !important;
  object-position: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
}

.hs-ehurt-single-product .related.products ul.products li.product .woocommerce-loop-product__title,
.hs-ehurt-single-product .upsells.products ul.products li.product .woocommerce-loop-product__title {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  color: #102a43 !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  line-height: 1.4 !important;
  text-align: left !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: manual !important;
  -webkit-line-clamp: unset !important;
}

.hs-ehurt-single-product .related.products ul.products li.product .price,
.hs-ehurt-single-product .upsells.products ul.products li.product .price {
  display: block !important;
  width: 100% !important;
  margin: auto 0 0 !important;
  padding-top: 14px !important;
  color: #e86f00 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

/* W publicznej ofercie nie pokazujemy w podobnych produktach żadnych CTA ani monitów logowania. */
.hs-ehurt-public-view .related.products li.product .price,
.hs-ehurt-public-view .upsells.products li.product .price,
.hs-ehurt-public-view .related.products li.product .button,
.hs-ehurt-public-view .upsells.products li.product .button,
.hs-ehurt-public-view .related.products li.product .added_to_cart,
.hs-ehurt-public-view .upsells.products li.product .added_to_cart,
.hs-ehurt-public-view .related.products li.product [class*="login"],
.hs-ehurt-public-view .upsells.products li.product [class*="login"],
.hs-ehurt-public-view .related.products li.product [class*="price-login"],
.hs-ehurt-public-view .upsells.products li.product [class*="price-login"],
.hs-ehurt-public-view .related.products li.product p:not(.woocommerce-loop-product__title),
.hs-ehurt-public-view .upsells.products li.product p:not(.woocommerce-loop-product__title) {
  display: none !important;
}

@media (max-width: 767px) {
  .hs-ehurt-single-product .related.products,
  .hs-ehurt-single-product .upsells.products {
    margin-top: 28px !important;
  }

  .hs-ehurt-single-product .related.products > h2,
  .hs-ehurt-single-product .upsells.products > h2 {
    margin-bottom: 12px !important;
    font-size: 21px !important;
  }

  .hs-ehurt-single-product .related.products ul.products,
  .hs-ehurt-single-product .upsells.products ul.products {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .hs-ehurt-single-product .related.products ul.products li.product,
  .hs-ehurt-single-product .upsells.products ul.products li.product {
    min-height: 0 !important;
    padding: 12px !important;
    border-radius: 8px !important;
  }

  .hs-ehurt-single-product .related.products ul.products li.product > a,
  .hs-ehurt-single-product .upsells.products ul.products li.product > a,
  .hs-ehurt-single-product .related.products ul.products li.product .woocommerce-loop-product__link,
  .hs-ehurt-single-product .upsells.products ul.products li.product .woocommerce-loop-product__link {
    display: grid !important;
    grid-template-columns: 88px minmax(0, 1fr) !important;
    grid-template-rows: auto !important;
    column-gap: 14px !important;
    align-items: center !important;
    height: auto !important;
  }

  .hs-ehurt-single-product .related.products ul.products li.product img,
  .hs-ehurt-single-product .upsells.products ul.products li.product img {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 88px !important;
    max-width: 88px !important;
    height: 88px !important;
    max-height: 88px !important;
    margin: 0 !important;
    padding: 2px !important;
  }

  .hs-ehurt-single-product .related.products ul.products li.product .woocommerce-loop-product__title,
  .hs-ehurt-single-product .upsells.products ul.products li.product .woocommerce-loop-product__title {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: center !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  .hs-ehurt-single-product .related.products ul.products li.product .price,
  .hs-ehurt-single-product .upsells.products ul.products li.product .price {
    grid-column: 2 !important;
    margin: 8px 0 0 !important;
    padding: 0 !important;
    font-size: 15px !important;
  }
}


/* e-Hurt 0.2.68 — finalny, stabilny układ produktów podobnych */
.hs-ehurt-single-product .related.products ul.products,
.hs-ehurt-single-product .upsells.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

.hs-ehurt-single-product .related.products ul.products li.product,
.hs-ehurt-single-product .upsells.products ul.products li.product {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 270px !important;
  margin: 0 !important;
  padding: 18px !important;
  overflow: hidden !important;
  border: 1px solid #d9e2ec !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 8px 24px rgba(15, 35, 55, .07) !important;
}

.hs-ehurt-single-product .related.products ul.products li.product > a,
.hs-ehurt-single-product .upsells.products ul.products li.product > a,
.hs-ehurt-single-product .related.products ul.products li.product .woocommerce-loop-product__link,
.hs-ehurt-single-product .upsells.products ul.products li.product .woocommerce-loop-product__link,
.hs-ehurt-single-product .related.products ul.products li.product .woocommerce-LoopProduct-link,
.hs-ehurt-single-product .upsells.products ul.products li.product .woocommerce-LoopProduct-link {
  position: static !important;
  inset: auto !important;
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  transform: none !important;
  text-align: center !important;
}

/* Resetuje agresywne style obrazków motywu/lazy-load, które przesuwały zdjęcia na dół karty. */
.hs-ehurt-single-product .related.products li.product picture,
.hs-ehurt-single-product .upsells.products li.product picture,
.hs-ehurt-single-product .related.products li.product [class*="image"],
.hs-ehurt-single-product .upsells.products li.product [class*="image"] {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  transform: none !important;
}

.hs-ehurt-single-product .related.products ul.products li.product img,
.hs-ehurt-single-product .upsells.products ul.products li.product img {
  position: static !important;
  inset: auto !important;
  display: block !important;
  float: none !important;
  width: 100% !important;
  max-width: 150px !important;
  height: 140px !important;
  max-height: 140px !important;
  margin: 0 auto 16px !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  clip: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.hs-ehurt-single-product .related.products ul.products li.product .woocommerce-loop-product__title,
.hs-ehurt-single-product .upsells.products ul.products li.product .woocommerce-loop-product__title {
  width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #102a43 !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  line-height: 1.4 !important;
  text-align: center !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: none !important;
}

.hs-ehurt-single-product .related.products ul.products li.product .price,
.hs-ehurt-single-product .upsells.products ul.products li.product .price {
  width: 100% !important;
  margin: auto 0 0 !important;
  padding: 14px 0 0 !important;
  color: #e86f00 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

/* W sekcji podobnych produktów nie pokazujemy dużych przycisków ani nakładek. Karta jest klikalna. */
.hs-ehurt-single-product .related.products li.product .button,
.hs-ehurt-single-product .upsells.products li.product .button,
.hs-ehurt-single-product .related.products li.product .added_to_cart,
.hs-ehurt-single-product .upsells.products li.product .added_to_cart,
.hs-ehurt-single-product .related.products li.product [class*="login"],
.hs-ehurt-single-product .upsells.products li.product [class*="login"],
.hs-ehurt-single-product .related.products li.product [class*="quick"],
.hs-ehurt-single-product .upsells.products li.product [class*="quick"] {
  display: none !important;
}

@media (max-width: 767px) {
  .hs-ehurt-single-product .related.products ul.products,
  .hs-ehurt-single-product .upsells.products ul.products {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hs-ehurt-single-product .related.products ul.products li.product,
  .hs-ehurt-single-product .upsells.products ul.products li.product {
    min-height: 0 !important;
    padding: 16px !important;
    border-radius: 12px !important;
  }

  .hs-ehurt-single-product .related.products ul.products li.product > a,
  .hs-ehurt-single-product .upsells.products ul.products li.product > a,
  .hs-ehurt-single-product .related.products ul.products li.product .woocommerce-loop-product__link,
  .hs-ehurt-single-product .upsells.products ul.products li.product .woocommerce-loop-product__link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
  }

  .hs-ehurt-single-product .related.products ul.products li.product img,
  .hs-ehurt-single-product .upsells.products ul.products li.product img {
    width: 118px !important;
    max-width: 118px !important;
    height: 106px !important;
    max-height: 106px !important;
    margin: 0 auto 12px !important;
  }

  .hs-ehurt-single-product .related.products ul.products li.product .woocommerce-loop-product__title,
  .hs-ehurt-single-product .upsells.products ul.products li.product .woocommerce-loop-product__title,
  .hs-ehurt-single-product .related.products ul.products li.product .price,
  .hs-ehurt-single-product .upsells.products ul.products li.product .price {
    text-align: center !important;
  }
}

/* e-Hurt 0.2.69 — stabilny, własny układ kart produktów podobnych */
.hs-ehurt-single-product .related.products,
.hs-ehurt-single-product .upsells.products {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
}

.hs-ehurt-single-product .related.products ul.products,
.hs-ehurt-single-product .upsells.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hs-ehurt-single-product .related.products li.product.hs-related-card-fixed,
.hs-ehurt-single-product .upsells.products li.product.hs-related-card-fixed {
  display: block !important;
  float: none !important;
  box-sizing: border-box !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid #d8e2ec !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 7px 20px rgba(15, 35, 55, .06) !important;
}

.hs-ehurt-single-product .hs-related-card-link {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  box-sizing: border-box !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  min-height: 250px !important;
  margin: 0 !important;
  padding: 16px !important;
  color: #102a43 !important;
  text-decoration: none !important;
  text-align: center !important;
}

.hs-ehurt-single-product .hs-related-card-media {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  width: 100% !important;
  height: 132px !important;
  margin: 0 0 14px !important;
  padding: 4px !important;
  overflow: hidden !important;
  background: #fff !important;
}

.hs-ehurt-single-product .hs-related-card-media img {
  position: static !important;
  inset: auto !important;
  display: block !important;
  float: none !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 124px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.hs-ehurt-single-product .hs-related-card-name {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  color: #102a43 !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  line-height: 1.4 !important;
  text-align: center !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  hyphens: none !important;
}

.hs-ehurt-single-product .hs-related-card-price {
  display: block !important;
  width: 100% !important;
  margin: auto 0 0 !important;
  padding: 14px 0 0 !important;
  color: #e86f00 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

/* Główny przycisk zakupu: bez rozciągania na całą kartę lub ekran. */
.hs-ehurt-single-product div.product form.cart .single_add_to_cart_button.hs-main-cart-button-fixed {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 168px !important;
  max-width: 230px !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 10px 20px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  text-align: center !important;
}

@media (max-width: 767px) {
  .hs-ehurt-single-product .related.products,
  .hs-ehurt-single-product .upsells.products {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: auto !important;
  }

  .hs-ehurt-single-product .related.products > h2,
  .hs-ehurt-single-product .upsells.products > h2 {
    text-align: center !important;
  }

  .hs-ehurt-single-product .related.products ul.products,
  .hs-ehurt-single-product .upsells.products ul.products {
    grid-template-columns: minmax(0, 1fr) !important;
    width: min(100%, 360px) !important;
    margin-inline: auto !important;
    gap: 12px !important;
  }

  .hs-ehurt-single-product .hs-related-card-link {
    min-height: 0 !important;
    padding: 16px !important;
  }

  .hs-ehurt-single-product .hs-related-card-media {
    height: 112px !important;
    margin-bottom: 12px !important;
  }

  .hs-ehurt-single-product .hs-related-card-media img {
    max-height: 104px !important;
  }

  .hs-ehurt-single-product .hs-related-card-name,
  .hs-ehurt-single-product .hs-related-card-price {
    text-align: center !important;
  }

  .hs-ehurt-single-product div.product form.cart {
    align-items: center !important;
    justify-content: center !important;
  }

  .hs-ehurt-single-product div.product form.cart .single_add_to_cart_button.hs-main-cart-button-fixed {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 158px !important;
    max-width: 210px !important;
    min-height: 42px !important;
    padding: 9px 17px !important;
    font-size: 13px !important;
  }
}

/* v0.2.70: czyste, klikalne zdjęcie i nazwa produktu w panelu e-Hurt */
.hs-b2b-product-image-link { display: block; position: relative; cursor: pointer; text-decoration: none !important; }
.hs-b2b-product-image-link img { pointer-events: none; }
.hs-b2b-product-title-link { cursor: pointer; text-decoration: none; color: inherit; }
.hs-b2b-product-title-link:hover, .hs-b2b-product-title-link:focus { text-decoration: underline; text-underline-offset: 3px; }


/* e-Hurt 0.2.73 — lżejsza typografia nazw w sekcji produktów podobnych */
.hs-ehurt-single-product .hs-related-card-name,
.hs-ehurt-single-product .related.products ul.products li.product .woocommerce-loop-product__title,
.hs-ehurt-single-product .upsells.products ul.products li.product .woocommerce-loop-product__title {
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.35 !important;
}

@media (max-width: 767px) {
  .hs-ehurt-single-product .hs-related-card-name,
  .hs-ehurt-single-product .related.products ul.products li.product .woocommerce-loop-product__title,
  .hs-ehurt-single-product .upsells.products ul.products li.product .woocommerce-loop-product__title {
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
  }
}

/* e-Hurt 0.2.74 — pełna szerokość stopki na pojedynczej karcie produktu */
body.hs-ehurt-single-product #colophon,
body.hs-ehurt-single-product footer.site-footer,
body.hs-ehurt-single-product .site-footer,
body.hs-ehurt-single-product .footer-wrap,
body.hs-ehurt-single-product .site-footer-wrap {
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  width: 100vw !important;
  max-width: none !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.hs-ehurt-single-product #colophon > *,
body.hs-ehurt-single-product footer.site-footer > *,
body.hs-ehurt-single-product .site-footer > *,
body.hs-ehurt-single-product .footer-wrap > *,
body.hs-ehurt-single-product .site-footer-wrap > * {
  width: 100% !important;
  max-width: none !important;
}

/* Zachowuje bezpieczne marginesy wewnątrz stopki na telefonach. */
@media (max-width: 767px) {
  body.hs-ehurt-single-product #colophon,
  body.hs-ehurt-single-product footer.site-footer,
  body.hs-ehurt-single-product .site-footer,
  body.hs-ehurt-single-product .footer-wrap,
  body.hs-ehurt-single-product .site-footer-wrap {
    overflow-x: clip;
  }
}


/* e-Hurt 0.2.75 — stopka produktu uwolniona ze zwężonego kontenera motywu */
body.hs-ehurt-single-product > #colophon.hs-product-footer-fullwidth,
body.hs-ehurt-single-product > footer.site-footer.hs-product-footer-fullwidth {
  display: block !important;
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  transform: none !important;
  clear: both !important;
}

body.hs-ehurt-single-product > #colophon.hs-product-footer-fullwidth .site-footer-row-container-inner,
body.hs-ehurt-single-product > footer.site-footer.hs-product-footer-fullwidth .site-footer-row-container-inner,
body.hs-ehurt-single-product > #colophon.hs-product-footer-fullwidth .site-container,
body.hs-ehurt-single-product > footer.site-footer.hs-product-footer-fullwidth .site-container,
body.hs-ehurt-single-product > #colophon.hs-product-footer-fullwidth .wp-block-kadence-rowlayout,
body.hs-ehurt-single-product > footer.site-footer.hs-product-footer-fullwidth .wp-block-kadence-rowlayout {
  width: 100% !important;
  max-width: none !important;
}


/* e-Hurt 0.2.77 — profesjonalne karty na stronach kategorii */
.hs-ehurt-public-offer ul.products li.product,
body.post-type-archive-product ul.products li.product,
body.tax-product_cat ul.products li.product,
body.tax-product_tag ul.products li.product {
  box-sizing: border-box;
  padding: 16px 16px 18px !important;
  border: 1px solid #f6d6b8 !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 8px 22px rgba(20, 45, 70, .055) !important;
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.hs-ehurt-public-offer ul.products li.product:hover,
body.post-type-archive-product ul.products li.product:hover,
body.tax-product_cat ul.products li.product:hover,
body.tax-product_tag ul.products li.product:hover {
  border-color: #efb57e !important;
  box-shadow: 0 12px 28px rgba(20, 45, 70, .09) !important;
  transform: translateY(-2px);
}

.hs-ehurt-public-offer ul.products li.product img,
body.post-type-archive-product ul.products li.product img,
body.tax-product_cat ul.products li.product img,
body.tax-product_tag ul.products li.product img {
  border-radius: 10px;
}

.hs-ehurt-more-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 14px;
  padding: 7px 18px;
  border: 1px solid #f3bb87;
  border-radius: 999px;
  background: #fff7ef;
  color: #d76500 !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: none !important;
}

.hs-ehurt-more-link:hover,
.hs-ehurt-more-link:focus {
  border-color: #f58220;
  background: #f58220;
  color: #fff !important;
}

@media (max-width: 767px) {
  .hs-ehurt-public-offer ul.products li.product,
  body.post-type-archive-product ul.products li.product,
  body.tax-product_cat ul.products li.product,
  body.tax-product_tag ul.products li.product {
    padding: 13px 13px 16px !important;
    border-radius: 14px !important;
  }

  .hs-ehurt-more-link {
    min-width: 92px;
    min-height: 38px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* e-Hurt 0.2.78 — formularz zapytania o konkretny produkt */
.hs-ehurt-open-inquiry {
  cursor: pointer;
}

.hs-ehurt-inquiry-form[hidden] {
  display: none !important;
}

.hs-ehurt-inquiry-form {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f2cfad;
}

.hs-ehurt-inquiry-product {
  display: grid;
  gap: 3px;
  margin-bottom: 16px;
  padding: 13px 15px;
  border: 1px solid #f4d2b2;
  border-radius: 12px;
  background: #fff;
}

.hs-ehurt-inquiry-product > span {
  color: #6d7785;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hs-ehurt-inquiry-product > strong {
  color: #082f55;
  font-size: 15px;
  line-height: 1.35;
}

.hs-ehurt-inquiry-product > small {
  color: #65758a;
  font-size: 12px;
}

.hs-ehurt-inquiry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hs-ehurt-inquiry-grid label {
  display: grid;
  gap: 7px;
  color: #102f4f;
  font-size: 13px;
  font-weight: 700;
}

.hs-ehurt-inquiry-grid label > span {
  color: #d95600;
}

.hs-ehurt-inquiry-grid label small {
  color: #738197;
  font-weight: 500;
}

.hs-ehurt-inquiry-grid input,
.hs-ehurt-inquiry-grid textarea {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #cad7e5;
  border-radius: 10px;
  background: #fff;
  color: #102f4f;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  box-shadow: none;
}

.hs-ehurt-inquiry-grid input {
  min-height: 44px;
  padding: 10px 12px;
}

.hs-ehurt-inquiry-grid textarea {
  min-height: 108px;
  padding: 11px 12px;
  resize: vertical;
}

.hs-ehurt-inquiry-grid input:focus,
.hs-ehurt-inquiry-grid textarea:focus {
  outline: none;
  border-color: #f58220;
  box-shadow: 0 0 0 3px rgba(245, 130, 32, .13);
}

.hs-ehurt-inquiry-message {
  grid-column: 1 / -1;
}

.hs-ehurt-send-inquiry {
  margin-top: 15px !important;
}

.hs-ehurt-inquiry-success,
.hs-ehurt-inquiry-error {
  margin-top: 14px;
  padding: 11px 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}

.hs-ehurt-inquiry-success {
  border: 1px solid #a9ddba;
  background: #effaf2;
  color: #176b35;
}

.hs-ehurt-inquiry-error {
  border: 1px solid #efb7b7;
  background: #fff2f2;
  color: #a32e2e;
}

.hs-ehurt-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 640px) {
  .hs-ehurt-inquiry-grid {
    grid-template-columns: 1fr;
  }

  .hs-ehurt-inquiry-message {
    grid-column: auto;
  }

  .hs-ehurt-send-inquiry {
    width: 100%;
    min-height: 46px;
  }
}


/* e-Hurt 0.2.79 — lżejszy przycisk wysyłania formularza */
.hs-ehurt-send-inquiry {
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  padding-left: 22px !important;
  padding-right: 22px !important;
}


/* e-Hurt 0.2.80 — smukły przycisk formularza zapytania */
.hs-ehurt-send-inquiry {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 88px !important;
  min-height: 38px !important;
  padding: 8px 18px !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 640px) {
  .hs-ehurt-send-inquiry {
    width: auto !important;
    min-width: 88px !important;
    min-height: 38px !important;
    padding: 8px 18px !important;
    border-radius: 10px !important;
  }
}


/* e-Hurt 0.2.81 — pełna szerokość stopki na listach kategorii produktów */
body.post-type-archive-product > #colophon.hs-catalog-footer-fullwidth,
body.post-type-archive-product > footer.site-footer.hs-catalog-footer-fullwidth,
body.tax-product_cat > #colophon.hs-catalog-footer-fullwidth,
body.tax-product_cat > footer.site-footer.hs-catalog-footer-fullwidth,
body.tax-product_tag > #colophon.hs-catalog-footer-fullwidth,
body.tax-product_tag > footer.site-footer.hs-catalog-footer-fullwidth {
  display: block !important;
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  transform: none !important;
  clear: both !important;
}

body.post-type-archive-product > .hs-catalog-footer-fullwidth .site-footer-row-container-inner,
body.post-type-archive-product > .hs-catalog-footer-fullwidth .site-container,
body.post-type-archive-product > .hs-catalog-footer-fullwidth .wp-block-kadence-rowlayout,
body.tax-product_cat > .hs-catalog-footer-fullwidth .site-footer-row-container-inner,
body.tax-product_cat > .hs-catalog-footer-fullwidth .site-container,
body.tax-product_cat > .hs-catalog-footer-fullwidth .wp-block-kadence-rowlayout,
body.tax-product_tag > .hs-catalog-footer-fullwidth .site-footer-row-container-inner,
body.tax-product_tag > .hs-catalog-footer-fullwidth .site-container,
body.tax-product_tag > .hs-catalog-footer-fullwidth .wp-block-kadence-rowlayout {
  width: 100% !important;
  max-width: none !important;
}


/* e-Hurt 0.2.82 — stałe paski na stronach produktów */
body.logged-in.woocommerce-page:has(.hs-ehurt-product-nav-shell),
body.logged-in.tax-product_cat:has(.hs-ehurt-product-nav-shell),
body.logged-in.tax-product_tag:has(.hs-ehurt-product-nav-shell) {
  padding-top: 66px !important;
  padding-bottom: 74px !important;
}

.hs-ehurt-product-topbar {
  position: fixed;
  z-index: 99990;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 11px max(16px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, var(--hs-navy), var(--hs-navy-light));
  color: #fff;
  box-shadow: 0 7px 22px rgba(16, 42, 67, .2);
}

body.admin-bar .hs-ehurt-product-topbar { top: 32px; }

.hs-ehurt-product-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff !important;
  text-decoration: none !important;
}

.hs-ehurt-product-brand strong { font-size: 18px; line-height: 1; }

.hs-ehurt-product-bottom-nav {
  position: fixed;
  z-index: 99990;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(5, minmax(74px, 1fr));
  width: min(620px, calc(100% - 24px));
  min-height: 58px;
  padding: 6px;
  border: 1px solid #dbe5ef;
  border-radius: 18px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 14px 36px rgba(16,42,67,.18);
  backdrop-filter: blur(12px);
}

.hs-ehurt-product-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  padding: 7px 5px;
  border-radius: 12px;
  color: #52657a !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none !important;
}

.hs-ehurt-product-bottom-nav a > span { font-size: 18px; line-height: 1; }
.hs-ehurt-product-bottom-nav a:hover,
.hs-ehurt-product-bottom-nav a.active {
  background: #eef5fb;
  color: var(--hs-navy) !important;
}

/* e-Hurt 0.2.82 — przyciski na kartach kategorii */
.hs-ehurt-catalog-card {
  display: flex !important;
  flex-direction: column !important;
}

.hs-ehurt-archive-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  width: 100%;
  margin-top: auto;
  padding-top: 14px;
}

.hs-ehurt-archive-cart-button,
.hs-ehurt-catalog-card .add_to_cart_button,
.hs-ehurt-catalog-card .ajax_add_to_cart {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  max-width: 100%;
  min-height: 36px !important;
  margin: 0 !important;
  padding: 8px 14px !important;
  border-radius: 10px !important;
  background: #f58220 !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  white-space: normal !important;
  text-align: center !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.hs-ehurt-archive-actions .hs-ehurt-more-link { margin: 0 !important; }

@media (max-width: 782px) {
  body.admin-bar .hs-ehurt-product-topbar { top: 46px; }
}

@media (max-width: 640px) {
  body.logged-in.woocommerce-page:has(.hs-ehurt-product-nav-shell),
  body.logged-in.tax-product_cat:has(.hs-ehurt-product-nav-shell),
  body.logged-in.tax-product_tag:has(.hs-ehurt-product-nav-shell) {
    padding-top: 62px !important;
    padding-bottom: 84px !important;
  }

  .hs-ehurt-product-topbar {
    min-height: 62px;
    padding: 9px 12px;
  }

  .hs-ehurt-product-bottom-nav {
    bottom: 8px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: calc(100% - 16px);
    border-radius: 16px;
  }

  .hs-ehurt-product-bottom-nav a {
    padding: 7px 2px;
    font-size: 10px;
  }

  .hs-ehurt-product-bottom-nav a > span { font-size: 17px; }

  .hs-ehurt-archive-actions { justify-content: center; }

  .hs-ehurt-archive-cart-button,
  .hs-ehurt-catalog-card .add_to_cart_button,
  .hs-ehurt-catalog-card .ajax_add_to_cart {
    min-height: 38px !important;
    padding: 8px 13px !important;
    font-size: 12px !important;
  }
}


/* e-Hurt 0.2.83 — komputer: oba paski na górze, bez skanera */
@media (min-width: 641px) {
  body.logged-in.woocommerce-page:has(.hs-ehurt-product-nav-shell),
  body.logged-in.tax-product_cat:has(.hs-ehurt-product-nav-shell),
  body.logged-in.tax-product_tag:has(.hs-ehurt-product-nav-shell) {
    padding-top: 132px !important;
    padding-bottom: 0 !important;
  }

  .hs-ehurt-product-topbar {
    top: 0 !important;
    min-height: 80px !important;
  }

  body.admin-bar .hs-ehurt-product-topbar {
    top: 32px !important;
  }

  .hs-ehurt-product-bottom-nav {
    position: fixed !important;
    z-index: 99989 !important;
    top: 80px !important;
    bottom: auto !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    width: 100% !important;
    min-height: 52px !important;
    padding: 0 max(24px, calc((100vw - 1180px) / 2)) !important;
    border: 0 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #e3eaf1 !important;
    background: #fff !important;
    box-shadow: 0 5px 16px rgba(16,42,67,.08) !important;
    backdrop-filter: none !important;
  }

  body.admin-bar .hs-ehurt-product-bottom-nav {
    top: 112px !important;
  }

  .hs-ehurt-product-bottom-nav a {
    position: relative !important;
    min-height: 52px !important;
    padding: 7px 10px !important;
    border-radius: 0 !important;
  }

  .hs-ehurt-product-bottom-nav a > span {
    font-size: 17px !important;
  }

  .hs-ehurt-product-bottom-nav a.active {
    background: transparent !important;
    color: #f58220 !important;
  }

  .hs-ehurt-product-bottom-nav a.active::after {
    content: "";
    position: absolute;
    left: 24%;
    right: 24%;
    bottom: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: #f58220;
  }

  .hs-ehurt-mobile-scanner {
    display: none !important;
  }
}

/* Telefon: skaner pozostaje w dolnym pasku */
@media (max-width: 640px) {
  .hs-ehurt-mobile-scanner {
    display: flex !important;
  }
}


/* e-Hurt 0.2.84 — na komputerze paski są pod nagłówkiem strony */
@media (min-width: 641px) {
  body.logged-in.woocommerce-page:has(.hs-ehurt-product-nav-shell),
  body.logged-in.tax-product_cat:has(.hs-ehurt-product-nav-shell),
  body.logged-in.tax-product_tag:has(.hs-ehurt-product-nav-shell) {
    padding-top: 0 !important;
  }

  .hs-ehurt-product-nav-shell {
    position: relative !important;
    z-index: 50;
    width: 100%;
  }

  .hs-ehurt-product-topbar {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
  }

  body.admin-bar .hs-ehurt-product-topbar {
    top: auto !important;
  }

  .hs-ehurt-product-bottom-nav {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
  }

  body.admin-bar .hs-ehurt-product-bottom-nav {
    top: auto !important;
  }
}


/* e-Hurt 0.2.85 — właściwa wysokość białego paska na komputerze */
@media (min-width: 641px) {
  .hs-ehurt-product-bottom-nav {
    min-height: 78px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hs-ehurt-product-bottom-nav a {
    min-height: 78px !important;
    padding: 10px 12px 11px !important;
    gap: 6px !important;
    font-size: 13px !important;
  }

  .hs-ehurt-product-bottom-nav a > span {
    font-size: 20px !important;
  }

  .hs-ehurt-product-bottom-nav a.active::after {
    left: 18% !important;
    right: 18% !important;
    height: 3px !important;
  }
}


/* e-Hurt 0.2.86 — stabilne akcje kart kategorii */
.hs-ehurt-archive-actions:empty {
  display: none !important;
}

body:not(.logged-in) .hs-ehurt-archive-actions .add_to_cart_button,
body:not(.logged-in) .hs-ehurt-archive-actions .ajax_add_to_cart,
body:not(.logged-in) .hs-ehurt-archive-actions .hs-ehurt-archive-cart-button {
  display: none !important;
}

body.logged-in .hs-ehurt-archive-actions .hs-ehurt-more-link {
  display: none !important;
}


/* e-Hurt 0.2.87 — niższy nagłówek kategorii WooCommerce */
body.tax-product_cat .entry-hero,
body.tax-product_cat .page-header,
body.tax-product_cat .woocommerce-products-header,
body.post-type-archive-product .entry-hero,
body.post-type-archive-product .page-header,
body.post-type-archive-product .woocommerce-products-header {
  min-height: 130px !important;
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

body.tax-product_cat .entry-hero-container-inner,
body.tax-product_cat .entry-header,
body.tax-product_cat .woocommerce-products-header__title,
body.post-type-archive-product .entry-hero-container-inner,
body.post-type-archive-product .entry-header,
body.post-type-archive-product .woocommerce-products-header__title {
  min-height: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

body.tax-product_cat h1,
body.post-type-archive-product h1 {
  margin: 0 !important;
  line-height: 1.2 !important;
}

@media (max-width: 767px) {
  body.tax-product_cat .entry-hero,
  body.tax-product_cat .page-header,
  body.tax-product_cat .woocommerce-products-header,
  body.post-type-archive-product .entry-hero,
  body.post-type-archive-product .page-header,
  body.post-type-archive-product .woocommerce-products-header {
    min-height: 96px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}


/* e-Hurt 0.2.88 — delikatniejszy, wyśrodkowany przycisk „Dodaj do koszyka” */
.hs-ehurt-archive-actions {
  justify-content: center !important;
}

.hs-ehurt-archive-cart-button,
.hs-ehurt-catalog-card .add_to_cart_button,
.hs-ehurt-catalog-card .ajax_add_to_cart {
  margin-left: auto !important;
  margin-right: auto !important;
  min-width: 172px !important;
  max-width: 220px !important;
  padding: 9px 18px !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

@media (max-width: 640px) {
  .hs-ehurt-archive-cart-button,
  .hs-ehurt-catalog-card .add_to_cart_button,
  .hs-ehurt-catalog-card .ajax_add_to_cart {
    min-width: 156px !important;
    max-width: 200px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
  }
}


/* e-Hurt 0.2.89 — usunięcie ogromnej przerwy pod nazwą kategorii */
body.tax-product_cat .entry-hero,
body.tax-product_cat .page-header,
body.tax-product_cat .woocommerce-products-header,
body.post-type-archive-product .entry-hero,
body.post-type-archive-product .page-header,
body.post-type-archive-product .woocommerce-products-header {
  min-height: 84px !important;
  padding-top: 18px !important;
  padding-bottom: 18px !important;
  margin-bottom: 0 !important;
}

body.tax-product_cat .content-area,
body.tax-product_cat #primary,
body.tax-product_cat .site-main,
body.tax-product_cat .woocommerce,
body.post-type-archive-product .content-area,
body.post-type-archive-product #primary,
body.post-type-archive-product .site-main,
body.post-type-archive-product .woocommerce {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.tax-product_cat .woocommerce-notices-wrapper,
body.post-type-archive-product .woocommerce-notices-wrapper {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

body.tax-product_cat .woocommerce-result-count,
body.tax-product_cat .woocommerce-ordering,
body.post-type-archive-product .woocommerce-result-count,
body.post-type-archive-product .woocommerce-ordering {
  margin-top: 24px !important;
}

body.tax-product_cat ul.products,
body.post-type-archive-product ul.products {
  margin-top: 18px !important;
}

@media (max-width: 767px) {
  body.tax-product_cat .entry-hero,
  body.tax-product_cat .page-header,
  body.tax-product_cat .woocommerce-products-header,
  body.post-type-archive-product .entry-hero,
  body.post-type-archive-product .page-header,
  body.post-type-archive-product .woocommerce-products-header {
    min-height: 68px !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  body.tax-product_cat .woocommerce-result-count,
  body.tax-product_cat .woocommerce-ordering,
  body.post-type-archive-product .woocommerce-result-count,
  body.post-type-archive-product .woocommerce-ordering {
    margin-top: 16px !important;
  }

  body.tax-product_cat ul.products,
  body.post-type-archive-product ul.products {
    margin-top: 12px !important;
  }
}


/* e-Hurt 0.2.90 — jednakowa szerokość pasków na wszystkich stronach produktów */
@media (min-width: 641px) {
  .hs-ehurt-product-nav-shell,
  .hs-ehurt-product-topbar,
  .hs-ehurt-product-bottom-nav {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: none !important;
  }

  .hs-ehurt-product-topbar {
    padding-left: max(24px, calc((100vw - 1180px) / 2)) !important;
    padding-right: max(24px, calc((100vw - 1180px) / 2)) !important;
  }

  .hs-ehurt-product-bottom-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    padding-left: max(24px, calc((100vw - 1180px) / 2)) !important;
    padding-right: max(24px, calc((100vw - 1180px) / 2)) !important;
  }

  .hs-ehurt-product-bottom-nav > a {
    width: 100% !important;
    max-width: none !important;
  }
}

/* Na bardzo szerokich ekranach układ nadal pozostaje zwarty i czytelny */
@media (min-width: 1600px) {
  .hs-ehurt-product-topbar,
  .hs-ehurt-product-bottom-nav {
    padding-left: calc((100vw - 1180px) / 2) !important;
    padding-right: calc((100vw - 1180px) / 2) !important;
  }
}


/* e-Hurt 0.2.91 — bardziej proporcjonalny nagłówek kategorii */
body.tax-product_cat .entry-hero,
body.tax-product_cat .page-header,
body.tax-product_cat .woocommerce-products-header,
body.post-type-archive-product .entry-hero,
body.post-type-archive-product .page-header,
body.post-type-archive-product .woocommerce-products-header {
  min-height: 116px !important;
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

body.tax-product_cat h1,
body.post-type-archive-product h1,
body.tax-product_cat .entry-title,
body.post-type-archive-product .entry-title,
body.tax-product_cat .woocommerce-products-header__title,
body.post-type-archive-product .woocommerce-products-header__title {
  font-size: clamp(28px, 2.2vw, 38px) !important;
  line-height: 1.15 !important;
}

@media (max-width: 767px) {
  body.tax-product_cat .entry-hero,
  body.tax-product_cat .page-header,
  body.tax-product_cat .woocommerce-products-header,
  body.post-type-archive-product .entry-hero,
  body.post-type-archive-product .page-header,
  body.post-type-archive-product .woocommerce-products-header {
    min-height: 86px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  body.tax-product_cat h1,
  body.post-type-archive-product h1,
  body.tax-product_cat .entry-title,
  body.post-type-archive-product .entry-title,
  body.tax-product_cat .woocommerce-products-header__title,
  body.post-type-archive-product .woocommerce-products-header__title {
    font-size: 27px !important;
  }
}


/* e-Hurt 0.2.92 — taki sam zwarty rozstaw nawigacji w całym panelu */
@media (min-width: 641px) {
  .hs-b2b-bottom-nav {
    box-sizing: border-box !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    width: 100% !important;
    padding-left: max(24px, calc((100vw - 1180px) / 2)) !important;
    padding-right: max(24px, calc((100vw - 1180px) / 2)) !important;
  }

  .hs-b2b-bottom-nav > button {
    width: 100% !important;
    max-width: none !important;
  }

  .hs-b2b-bottom-nav .scanner {
    display: none !important;
  }
}

@media (min-width: 1600px) {
  .hs-b2b-bottom-nav {
    padding-left: calc((100vw - 1180px) / 2) !important;
    padding-right: calc((100vw - 1180px) / 2) !important;
  }
}


/* e-Hurt 0.2.93 — pełna szerokość stopki i wyższy nagłówek kategorii */
body.post-type-archive-product > #colophon.hs-catalog-footer-fullwidth,
body.post-type-archive-product > footer.site-footer.hs-catalog-footer-fullwidth,
body.tax-product_cat > #colophon.hs-catalog-footer-fullwidth,
body.tax-product_cat > footer.site-footer.hs-catalog-footer-fullwidth,
body.tax-product_tag > #colophon.hs-catalog-footer-fullwidth,
body.tax-product_tag > footer.site-footer.hs-catalog-footer-fullwidth {
  position: relative !important;
  left: 50% !important;
  right: auto !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: -50vw !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-radius: 0 !important;
  transform: none !important;
  overflow: visible !important;
}

body.post-type-archive-product > .hs-catalog-footer-fullwidth,
body.tax-product_cat > .hs-catalog-footer-fullwidth,
body.tax-product_tag > .hs-catalog-footer-fullwidth {
  box-sizing: border-box !important;
}

/* Samo tło stopki ma dochodzić do obu krawędzi ekranu */
body.post-type-archive-product > .hs-catalog-footer-fullwidth .site-footer-wrap,
body.post-type-archive-product > .hs-catalog-footer-fullwidth .site-footer-row-container,
body.tax-product_cat > .hs-catalog-footer-fullwidth .site-footer-wrap,
body.tax-product_cat > .hs-catalog-footer-fullwidth .site-footer-row-container,
body.tax-product_tag > .hs-catalog-footer-fullwidth .site-footer-wrap,
body.tax-product_tag > .hs-catalog-footer-fullwidth .site-footer-row-container {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: 0 !important;
}

/* Wyższy, bardziej reprezentacyjny pasek kategorii */
body.tax-product_cat .entry-hero,
body.tax-product_cat .page-header,
body.tax-product_cat .woocommerce-products-header,
body.post-type-archive-product .entry-hero,
body.post-type-archive-product .page-header,
body.post-type-archive-product .woocommerce-products-header {
  min-height: 150px !important;
  padding-top: 38px !important;
  padding-bottom: 38px !important;
  margin-bottom: 0 !important;
}

body.tax-product_cat h1,
body.post-type-archive-product h1,
body.tax-product_cat .entry-title,
body.post-type-archive-product .entry-title,
body.tax-product_cat .woocommerce-products-header__title,
body.post-type-archive-product .woocommerce-products-header__title {
  margin: 0 !important;
  font-size: clamp(30px, 2.4vw, 40px) !important;
  line-height: 1.15 !important;
}

@media (max-width: 767px) {
  body.tax-product_cat .entry-hero,
  body.tax-product_cat .page-header,
  body.tax-product_cat .woocommerce-products-header,
  body.post-type-archive-product .entry-hero,
  body.post-type-archive-product .page-header,
  body.post-type-archive-product .woocommerce-products-header {
    min-height: 104px !important;
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
}


/* e-Hurt 0.2.94 — rzeczywiście pełne tło stopki na produktach i kategoriach */
body.single-product #colophon,
body.single-product footer.site-footer,
body.post-type-archive-product #colophon,
body.post-type-archive-product footer.site-footer,
body.tax-product_cat #colophon,
body.tax-product_cat footer.site-footer,
body.tax-product_tag #colophon,
body.tax-product_tag footer.site-footer {
  box-sizing: border-box !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: #0d2d4a !important;
  border-radius: 0 !important;
  overflow: hidden !important;
}

/* Usunięcie jasnych bocznych pasów tworzonych przez kontenery motywu */
body.single-product #colophon > *,
body.single-product footer.site-footer > *,
body.post-type-archive-product #colophon > *,
body.post-type-archive-product footer.site-footer > *,
body.tax-product_cat #colophon > *,
body.tax-product_cat footer.site-footer > *,
body.tax-product_tag #colophon > *,
body.tax-product_tag footer.site-footer > * {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
}

/* Kadence i typowe wewnętrzne opakowania stopki */
body.single-product #colophon .site-footer-wrap,
body.single-product #colophon .site-footer-row-container,
body.single-product #colophon .site-footer-row-container-inner,
body.single-product #colophon .site-container,
body.post-type-archive-product #colophon .site-footer-wrap,
body.post-type-archive-product #colophon .site-footer-row-container,
body.post-type-archive-product #colophon .site-footer-row-container-inner,
body.post-type-archive-product #colophon .site-container,
body.tax-product_cat #colophon .site-footer-wrap,
body.tax-product_cat #colophon .site-footer-row-container,
body.tax-product_cat #colophon .site-footer-row-container-inner,
body.tax-product_cat #colophon .site-container,
body.tax-product_tag #colophon .site-footer-wrap,
body.tax-product_tag #colophon .site-footer-row-container,
body.tax-product_tag #colophon .site-footer-row-container-inner,
body.tax-product_tag #colophon .site-container {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: 0 !important;
}

/* Właściwa treść stopki zachowuje czytelny wewnętrzny odstęp */
body.single-product #colophon .footer-widget-area,
body.post-type-archive-product #colophon .footer-widget-area,
body.tax-product_cat #colophon .footer-widget-area,
body.tax-product_tag #colophon .footer-widget-area {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: none !important;
}

/* Pasek kategorii — wyraźny, ale bez przesadnej pustej przestrzeni */
body.tax-product_cat .entry-hero,
body.tax-product_cat .page-header,
body.tax-product_cat .woocommerce-products-header,
body.post-type-archive-product .entry-hero,
body.post-type-archive-product .page-header,
body.post-type-archive-product .woocommerce-products-header {
  min-height: 170px !important;
  padding-top: 46px !important;
  padding-bottom: 46px !important;
}

@media (max-width: 767px) {
  body.tax-product_cat .entry-hero,
  body.tax-product_cat .page-header,
  body.tax-product_cat .woocommerce-products-header,
  body.post-type-archive-product .entry-hero,
  body.post-type-archive-product .page-header,
  body.post-type-archive-product .woocommerce-products-header {
    min-height: 112px !important;
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
}


/* e-Hurt 0.2.95 — naprawa stopki po zbyt agresywnym rozciągnięciu */
body.single-product #colophon,
body.single-product footer.site-footer,
body.post-type-archive-product #colophon,
body.post-type-archive-product footer.site-footer,
body.tax-product_cat #colophon,
body.tax-product_cat footer.site-footer,
body.tax-product_tag #colophon,
body.tax-product_tag footer.site-footer {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

/* Nie zmieniamy już oryginalnych kolorów poszczególnych sekcji stopki */
body.single-product #colophon > *,
body.single-product footer.site-footer > *,
body.post-type-archive-product #colophon > *,
body.post-type-archive-product footer.site-footer > *,
body.tax-product_cat #colophon > *,
body.tax-product_cat footer.site-footer > *,
body.tax-product_tag #colophon > *,
body.tax-product_tag footer.site-footer > * {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* Usuwamy wyłącznie zewnętrzne marginesy i paddingi kontenerów motywu */
body.single-product #colophon .site-footer-wrap,
body.single-product #colophon .site-footer-row-container,
body.single-product #colophon .site-footer-row-container-inner,
body.post-type-archive-product #colophon .site-footer-wrap,
body.post-type-archive-product #colophon .site-footer-row-container,
body.post-type-archive-product #colophon .site-footer-row-container-inner,
body.tax-product_cat #colophon .site-footer-wrap,
body.tax-product_cat #colophon .site-footer-row-container,
body.tax-product_cat #colophon .site-footer-row-container-inner,
body.tax-product_tag #colophon .site-footer-wrap,
body.tax-product_tag #colophon .site-footer-row-container,
body.tax-product_tag #colophon .site-footer-row-container-inner {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: 0 !important;
}

/* Główna wizualna sekcja stopki ma dochodzić do krawędzi */
body.single-product #colophon .wp-block-kadence-rowlayout,
body.post-type-archive-product #colophon .wp-block-kadence-rowlayout,
body.tax-product_cat #colophon .wp-block-kadence-rowlayout,
body.tax-product_tag #colophon .wp-block-kadence-rowlayout {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: 0 !important;
}


/* e-Hurt 0.2.96 — stopka bez jakiegokolwiek białego marginesu */
html,
body {
  overflow-x: clip;
}

body.single-product > #colophon.hs-product-footer-fullwidth,
body.single-product > footer.site-footer.hs-product-footer-fullwidth,
body.post-type-archive-product > #colophon.hs-catalog-footer-fullwidth,
body.post-type-archive-product > footer.site-footer.hs-catalog-footer-fullwidth,
body.tax-product_cat > #colophon.hs-catalog-footer-fullwidth,
body.tax-product_cat > footer.site-footer.hs-catalog-footer-fullwidth,
body.tax-product_tag > #colophon.hs-catalog-footer-fullwidth,
body.tax-product_tag > footer.site-footer.hs-catalog-footer-fullwidth {
  box-sizing: border-box !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

/* Oryginalne sekcje zachowują własne kolory; usuwamy tylko zewnętrzne odsunięcie */
body.single-product > .hs-product-footer-fullwidth > *,
body.post-type-archive-product > .hs-catalog-footer-fullwidth > *,
body.tax-product_cat > .hs-catalog-footer-fullwidth > *,
body.tax-product_tag > .hs-catalog-footer-fullwidth > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: 0 !important;
}


/* e-Hurt 0.2.97 — ostateczna korekta położenia stopki */
body.single-product > #colophon.hs-product-footer-fullwidth,
body.single-product > footer.site-footer.hs-product-footer-fullwidth,
body.post-type-archive-product > #colophon.hs-catalog-footer-fullwidth,
body.post-type-archive-product > footer.site-footer.hs-catalog-footer-fullwidth,
body.tax-product_cat > #colophon.hs-catalog-footer-fullwidth,
body.tax-product_cat > footer.site-footer.hs-catalog-footer-fullwidth,
body.tax-product_tag > #colophon.hs-catalog-footer-fullwidth,
body.tax-product_tag > footer.site-footer.hs-catalog-footer-fullwidth {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  transform: none !important;
  box-sizing: border-box !important;
}

/* Stopka jest bezpośrednim dzieckiem BODY, więc 100% oznacza pełną szerokość okna */
body.single-product,
body.post-type-archive-product,
body.tax-product_cat,
body.tax-product_tag {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.single-product > #colophon.hs-product-footer-fullwidth > *,
body.single-product > footer.site-footer.hs-product-footer-fullwidth > *,
body.post-type-archive-product > #colophon.hs-catalog-footer-fullwidth > *,
body.post-type-archive-product > footer.site-footer.hs-catalog-footer-fullwidth > *,
body.tax-product_cat > #colophon.hs-catalog-footer-fullwidth > *,
body.tax-product_cat > footer.site-footer.hs-catalog-footer-fullwidth > *,
body.tax-product_tag > #colophon.hs-catalog-footer-fullwidth > *,
body.tax-product_tag > footer.site-footer.hs-catalog-footer-fullwidth > * {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: 0 !important;
}


/* e-Hurt 0.2.98 — usunięcie paddingu wewnętrznego Kadence w stopce */
body.single-product #colophon .site-footer-row-container-inner,
body.single-product #colophon .site-container,
body.post-type-archive-product #colophon .site-footer-row-container-inner,
body.post-type-archive-product #colophon .site-container,
body.tax-product_cat #colophon .site-footer-row-container-inner,
body.tax-product_cat #colophon .site-container,
body.tax-product_tag #colophon .site-footer-row-container-inner,
body.tax-product_tag #colophon .site-container {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Własny blok stopki również bez bocznych odsunięć */
body.single-product #colophon .site-container > *,
body.post-type-archive-product #colophon .site-container > *,
body.tax-product_cat #colophon .site-container > *,
body.tax-product_tag #colophon .site-container > * {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Gdy Kadence dodaje dodatkowe opakowanie zawartości */
body.single-product #colophon .entry-content-wrap,
body.post-type-archive-product #colophon .entry-content-wrap,
body.tax-product_cat #colophon .entry-content-wrap,
body.tax-product_tag #colophon .entry-content-wrap,
body.single-product #colophon .kt-row-column-wrap,
body.post-type-archive-product #colophon .kt-row-column-wrap,
body.tax-product_cat #colophon .kt-row-column-wrap,
body.tax-product_tag #colophon .kt-row-column-wrap {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}


/* e-Hurt 0.2.99 — twarde wyzerowanie położenia stopki */
body.single-product > #colophon.hs-product-footer-fullwidth,
body.single-product > footer.site-footer.hs-product-footer-fullwidth,
body.post-type-archive-product > #colophon.hs-catalog-footer-fullwidth,
body.post-type-archive-product > footer.site-footer.hs-catalog-footer-fullwidth,
body.tax-product_cat > #colophon.hs-catalog-footer-fullwidth,
body.tax-product_cat > footer.site-footer.hs-catalog-footer-fullwidth,
body.tax-product_tag > #colophon.hs-catalog-footer-fullwidth,
body.tax-product_tag > footer.site-footer.hs-catalog-footer-fullwidth {
  position: relative !important;
  display: block !important;
  float: none !important;
  clear: both !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;

  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;

  margin: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;

  grid-column: 1 / -1 !important;
  grid-row: auto !important;
  justify-self: stretch !important;
  align-self: auto !important;
  flex: 0 0 100% !important;

  box-sizing: border-box !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

/* Body nie może trzymać stopki w prawej kolumnie ani w zwężonym układzie */
body.single-product,
body.post-type-archive-product,
body.tax-product_cat,
body.tax-product_tag {
  grid-template-columns: minmax(0, 1fr) !important;
}

/* Wszystkie opakowania stopki na pełną szerokość, bez ograniczenia Kadence */
body.single-product > .hs-product-footer-fullwidth .site-footer-wrap,
body.single-product > .hs-product-footer-fullwidth .site-footer-row-container,
body.single-product > .hs-product-footer-fullwidth .site-footer-row-container-inner,
body.single-product > .hs-product-footer-fullwidth .site-container,
body.post-type-archive-product > .hs-catalog-footer-fullwidth .site-footer-wrap,
body.post-type-archive-product > .hs-catalog-footer-fullwidth .site-footer-row-container,
body.post-type-archive-product > .hs-catalog-footer-fullwidth .site-footer-row-container-inner,
body.post-type-archive-product > .hs-catalog-footer-fullwidth .site-container,
body.tax-product_cat > .hs-catalog-footer-fullwidth .site-footer-wrap,
body.tax-product_cat > .hs-catalog-footer-fullwidth .site-footer-row-container,
body.tax-product_cat > .hs-catalog-footer-fullwidth .site-footer-row-container-inner,
body.tax-product_cat > .hs-catalog-footer-fullwidth .site-container,
body.tax-product_tag > .hs-catalog-footer-fullwidth .site-footer-wrap,
body.tax-product_tag > .hs-catalog-footer-fullwidth .site-footer-row-container,
body.tax-product_tag > .hs-catalog-footer-fullwidth .site-footer-row-container-inner,
body.tax-product_tag > .hs-catalog-footer-fullwidth .site-container {
  position: relative !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  transform: none !important;
  grid-column: 1 / -1 !important;
  justify-self: stretch !important;
  box-sizing: border-box !important;
}


/* e-Hurt 0.3.00 — właściwy element stopki: #hs-premium-footer */
body.single-product #colophon .footer-widget-area,
body.single-product #colophon .footer-widget-area-inner,
body.single-product #colophon section#block-8,
body.post-type-archive-product #colophon .footer-widget-area,
body.post-type-archive-product #colophon .footer-widget-area-inner,
body.post-type-archive-product #colophon section#block-8,
body.tax-product_cat #colophon .footer-widget-area,
body.tax-product_cat #colophon .footer-widget-area-inner,
body.tax-product_cat #colophon section#block-8,
body.tax-product_tag #colophon .footer-widget-area,
body.tax-product_tag #colophon .footer-widget-area-inner,
body.tax-product_tag #colophon section#block-8 {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  flex: 0 0 100% !important;
  grid-column: 1 / -1 !important;
  box-sizing: border-box !important;
}

body.single-product #hs-premium-footer,
body.post-type-archive-product #hs-premium-footer,
body.tax-product_cat #hs-premium-footer,
body.tax-product_tag #hs-premium-footer {
  position: relative !important;
  left: 50% !important;
  right: auto !important;
  width: 100vw !important;
  max-width: 100vw !important;
  min-width: 100vw !important;
  margin-left: -50vw !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  transform: none !important;
  float: none !important;
  box-sizing: border-box !important;
  border-radius: 0 !important;
}

/* Każda sekcja wewnątrz własnej stopki również bez zwężenia */
body.single-product #hs-premium-footer > *,
body.post-type-archive-product #hs-premium-footer > *,
body.tax-product_cat #hs-premium-footer > *,
body.tax-product_tag #hs-premium-footer > * {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: 0 !important;
  box-sizing: border-box !important;
}


/* e-Hurt 0.3.01 — właściwa stopka przeniesiona bezpośrednio do BODY */
body > #hs-premium-footer.hs-premium-footer-direct {
  position: relative !important;
  display: block !important;
  float: none !important;
  clear: both !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;

  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  grid-column: 1 / -1 !important;
  justify-self: stretch !important;
  flex: 0 0 100% !important;

  box-sizing: border-box !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

/* Wewnętrzne sekcje zachowują wygląd, ale nie ograniczają szerokości */
body > #hs-premium-footer.hs-premium-footer-direct > * {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: 0 !important;
  box-sizing: border-box !important;
}


/* e-Hurt 0.3.02 — pełne tło stopki, ale wyśrodkowana treść */
body > #hs-premium-footer.hs-premium-footer-direct {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body > #hs-premium-footer.hs-premium-footer-direct > * {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

/* Właściwa treść stopki wraca do wspólnej osi 1180 px */
body > #hs-premium-footer.hs-premium-footer-direct > * > *,
body > #hs-premium-footer.hs-premium-footer-direct .hs-footer-inner,
body > #hs-premium-footer.hs-premium-footer-direct .hs-footer-top-inner,
body > #hs-premium-footer.hs-premium-footer-direct .hs-footer-middle-inner,
body > #hs-premium-footer.hs-premium-footer-direct .hs-footer-bottom-inner,
body > #hs-premium-footer.hs-premium-footer-direct .site-container,
body > #hs-premium-footer.hs-premium-footer-direct .kt-row-column-wrap {
  box-sizing: border-box !important;
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Dolne kafelki nie rozjeżdżają się na całą szerokość */
body > #hs-premium-footer.hs-premium-footer-direct .hs-footer-cards,
body > #hs-premium-footer.hs-premium-footer-direct .hs-footer-info-grid,
body > #hs-premium-footer.hs-premium-footer-direct .hs-footer-bottom-grid {
  width: min(1180px, calc(100% - 48px)) !important;
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  justify-content: center !important;
}

@media (max-width: 767px) {
  body > #hs-premium-footer.hs-premium-footer-direct > * > *,
  body > #hs-premium-footer.hs-premium-footer-direct .hs-footer-inner,
  body > #hs-premium-footer.hs-premium-footer-direct .hs-footer-top-inner,
  body > #hs-premium-footer.hs-premium-footer-direct .hs-footer-middle-inner,
  body > #hs-premium-footer.hs-premium-footer-direct .hs-footer-bottom-inner,
  body > #hs-premium-footer.hs-premium-footer-direct .site-container,
  body > #hs-premium-footer.hs-premium-footer-direct .kt-row-column-wrap,
  body > #hs-premium-footer.hs-premium-footer-direct .hs-footer-cards,
  body > #hs-premium-footer.hs-premium-footer-direct .hs-footer-info-grid,
  body > #hs-premium-footer.hs-premium-footer-direct .hs-footer-bottom-grid {
    width: calc(100% - 28px) !important;
    max-width: none !important;
  }
}


/* e-Hurt 0.3.03 — wyższy pasek tytułu kategorii bez zwiększania odstępu pod nim */
body.tax-product_cat .entry-hero,
body.tax-product_cat .entry-hero-container-inner,
body.tax-product_cat .entry-hero-container-inner .entry-header,
body.tax-product_cat .page-header,
body.tax-product_cat .woocommerce-products-header,
body.post-type-archive-product .entry-hero,
body.post-type-archive-product .entry-hero-container-inner,
body.post-type-archive-product .entry-hero-container-inner .entry-header,
body.post-type-archive-product .page-header,
body.post-type-archive-product .woocommerce-products-header {
  min-height: 150px !important;
  height: auto !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

body.tax-product_cat .entry-hero-container-inner,
body.tax-product_cat .entry-hero-container-inner .entry-header,
body.tax-product_cat .woocommerce-products-header,
body.post-type-archive-product .entry-hero-container-inner,
body.post-type-archive-product .entry-hero-container-inner .entry-header,
body.post-type-archive-product .woocommerce-products-header {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}

body.tax-product_cat h1,
body.tax-product_cat .entry-title,
body.tax-product_cat .woocommerce-products-header__title,
body.post-type-archive-product h1,
body.post-type-archive-product .entry-title,
body.post-type-archive-product .woocommerce-products-header__title {
  margin: 0 !important;
  padding: 0 !important;
  font-size: clamp(32px, 2.5vw, 42px) !important;
  line-height: 1.15 !important;
}

@media (max-width: 767px) {
  body.tax-product_cat .entry-hero,
  body.tax-product_cat .entry-hero-container-inner,
  body.tax-product_cat .entry-hero-container-inner .entry-header,
  body.tax-product_cat .page-header,
  body.tax-product_cat .woocommerce-products-header,
  body.post-type-archive-product .entry-hero,
  body.post-type-archive-product .entry-hero-container-inner,
  body.post-type-archive-product .entry-hero-container-inner .entry-header,
  body.post-type-archive-product .page-header,
  body.post-type-archive-product .woocommerce-products-header {
    min-height: 108px !important;
  }

  body.tax-product_cat h1,
  body.tax-product_cat .entry-title,
  body.tax-product_cat .woocommerce-products-header__title,
  body.post-type-archive-product h1,
  body.post-type-archive-product .entry-title,
  body.post-type-archive-product .woocommerce-products-header__title {
    font-size: 29px !important;
  }
}


/* e-Hurt 0.3.30 – edycja danych klienta */
.hs-b2b-account-card-heading-actions {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}
.hs-b2b-account-edit-button,
.hs-b2b-account-edit-address-button {
  border: 1px solid #f58a22;
  background: #fff7ef;
  color: #b95100;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
}
.hs-b2b-account-edit-address-button { margin-top: 16px; }
.hs-b2b-account-edit-form {
  display: grid;
  gap: 18px;
}
.hs-b2b-account-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.hs-b2b-account-form-field {
  display: grid;
  gap: 7px;
  color: #17334f;
  font-weight: 700;
}
.hs-b2b-account-form-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cad6e2;
  border-radius: 10px;
  background: #fff;
  padding: 10px 13px;
  font: inherit;
  color: #102f4c;
  box-sizing: border-box;
}
.hs-b2b-account-form-field input:focus {
  outline: 2px solid rgba(245, 138, 34, .22);
  border-color: #f58a22;
}
.hs-b2b-account-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.hs-b2b-account-form-help {
  margin: -8px 0 0;
  text-align: right;
  color: #65788b;
  font-size: 13px;
}
@media (max-width: 767px) {
  .hs-b2b-account-card-heading-actions { grid-template-columns: auto 1fr; }
  .hs-b2b-account-edit-button { grid-column: 1 / -1; width: 100%; }
  .hs-b2b-account-form-grid { grid-template-columns: 1fr; }
  .hs-b2b-account-form-actions { flex-direction: column-reverse; }
  .hs-b2b-account-form-actions button { width: 100%; }
  .hs-b2b-account-form-help { text-align: left; }
}

/* 0.3.31 — pola konta tylko do odczytu */
.hs-b2b-account-readonly-field {
  align-self: stretch;
}
.hs-b2b-account-readonly-value {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid #d8e0ea;
  border-radius: 10px;
  background: #f3f6f9;
  color: #526274;
  font-weight: 700;
  cursor: not-allowed;
}
.hs-b2b-account-readonly-field small {
  display: block;
  margin-top: 6px;
  color: #728094;
  font-size: 12px;
  line-height: 1.35;
}


/* e-Hurt 0.3.32 — zarządzanie wieloma adresami dostawy */
.hs-b2b-account-address-actions{margin-top:16px;display:flex;justify-content:flex-end}.hs-b2b-address-management-list{display:grid;gap:12px;margin-top:18px}.hs-b2b-address-management-item{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:16px 18px;border:1px solid #dfe7ef;border-radius:14px;background:#fff}.hs-b2b-address-management-item>div:first-child{display:flex;flex-direction:column;gap:4px}.hs-b2b-address-management-item span,.hs-b2b-address-management-item small{color:#64748b}.hs-b2b-address-management-buttons{display:flex;gap:8px;flex-shrink:0}.hs-b2b-danger-button{border:1px solid #fecaca;background:#fff1f2;color:#b91c1c;border-radius:10px;padding:10px 14px;font-weight:700;cursor:pointer}@media(max-width:720px){.hs-b2b-address-management-item{align-items:flex-start;flex-direction:column}.hs-b2b-address-management-buttons{width:100%;flex-wrap:wrap}.hs-b2b-address-management-buttons button{flex:1}.hs-b2b-account-address-actions{justify-content:stretch}.hs-b2b-account-address-actions button{width:100%}}


/* 0.3.42 — domyślny adres dostawy */
.hs-b2b-default-address-badge{display:inline-flex;align-items:center;gap:6px;padding:8px 12px;border-radius:999px;background:#fff7d6;border:1px solid #ead27a;font-weight:700;color:#6b5600;white-space:nowrap}
.hs-b2b-address-management-buttons{display:flex;flex-wrap:wrap;gap:8px;align-items:center}
