#woo {
  --woo-sidebar: 320px;
  --woo-gap: 40px;
  padding-block: 90px 110px;
  background: var(--light);
}

#woo a {
  text-decoration: none;
}

.page-title .page-title-sub {
  flex-basis: 100%;
  margin: -14px 0 0;
  color: #c3cde0;
  font-size: 16px;
  max-width: 780px;
}

.woo-layout {
  display: grid;
  grid-template-columns: var(--woo-sidebar) minmax(0, 1fr);
  gap: var(--woo-gap);
  align-items: start;
}

.woo-filter-toggle,
.woo-sidebar-head,
.woo-sidebar-foot {
  display: none;
}

.woo-sidebar-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ================= SIDEBAR ================= */
.woo-sidebar {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.woo-filter-active {
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.woo-filter-active-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.woo-filter-clear {
  color: var(--green-bright);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  font-size: 13px;
}

.woo-filter-active ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.woo-filter-active li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(156, 204, 46, .16);
  color: var(--ink);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s ease;
}

.woo-filter-active li a:hover {
  background: rgba(156, 204, 46, .32);
}

.woo-filter-active li i {
  font-size: 12px;
  color: var(--muted);
}

.woo-filter-group {
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.woo-filter-group>summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.woo-filter-group>summary::-webkit-details-marker {
  display: none;
}

.woo-filter-group>summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s ease;
}

.woo-filter-group[open]>summary::after {
  transform: rotate(-135deg) translateY(-2px);
}

.woo-filter-list {
  list-style: none;
  margin: 0;
  padding: 0 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.woo-filter-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.3;
  transition: background .18s ease, color .18s ease;
}

.woo-filter-list a:hover {
  background: var(--light);
  color: var(--ink);
}

.woo-filter-list .is-active>a {
  color: var(--ink);
  font-weight: 600;
}

.woo-filter-box {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(15, 23, 42, .2);
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #0c2018;
  transition: background .18s ease, border-color .18s ease;
}

.woo-filter-list .is-active .woo-filter-box {
  background: var(--grad-lime);
  border-color: transparent;
}

.woo-filter-count {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  background: var(--light);
  border-radius: 999px;
  padding: 2px 9px;
}

.woo-filter-list .is-active .woo-filter-count {
  background: rgba(156, 204, 46, .22);
  color: #3d5c14;
}

.woo-sidebar-cta {
  background: linear-gradient(150deg, var(--navy-800) 0%, var(--navy-600) 100%);
  border-radius: var(--radius);
  padding: 26px 24px;
  color: #e7ecf5;
}

.woo-sidebar-cta h4 {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}

.woo-sidebar-cta p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #b9c4da;
  margin: 0 0 18px;
}

.woo-sidebar-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 15px;
}

/* ================= TOOLBAR ================= */
.woo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius);
  padding: 16px 22px;
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}

.woo-count .woocommerce-result-count {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

.woo-ordering form {
  margin: 0;
}

.woo-ordering select {
  appearance: none;
  border: 1.5px solid rgba(15, 23, 42, .14);
  border-radius: 999px;
  padding: 11px 42px 11px 18px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background-color: var(--white);
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 21px) 50%, calc(100% - 16px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.woo-ordering select:focus {
  outline: none;
  border-color: var(--green-bright);
}

/* ================= GRID + KARTY ================= */
.woo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.woo-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, .07);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease;
}

.woo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.woo-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: linear-gradient(140deg, var(--navy-800) 0%, var(--navy-600) 100%);
  overflow: hidden;
}

.woo-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.woo-card:hover .woo-card-media img {
  transform: scale(1.06);
}

.woo-card-noimg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: rgba(255, 255, 255, .28);
}

.woo-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(13, 21, 43, .78);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}

.woo-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 24px 26px;
  flex: 1;
}

.woo-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.woo-card-title a {
  color: var(--ink);
  transition: color .2s ease;
}

.woo-card-title a:hover {
  color: var(--green-bright);
}

.woo-card-dim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--muted);
}

.woo-card-dim i {
  color: var(--green-bright);
}

.woo-card-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin-top: auto;
}

.woo-card-price .woocommerce-Price-amount {
  color: var(--ink);
}

.pp-price-from {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-transform: lowercase;
  margin-right: 2px;
}

.woo-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.woo-card-actions .btn {
  justify-content: center;
  padding: 13px 22px;
  font-size: 15px;
}

#woo .woo-card-actions .woo-cart-icon {
  margin-left: auto;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  font-size: 18px;
}

#woo .woo-card-actions .woo-cart-icon i {
  margin: 0;
}

#woo .woo-card-actions .added_to_cart {
  flex: 0 0 100%;
  justify-content: flex-end;
  padding: 0;
  font-size: 13.5px;
}

#woo .button,
#woo button.button,
#woo input.button,
#woo a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 16px 30px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  color: #0c2018;
  background: var(--grad-lime);
  box-shadow: 0 10px 30px rgba(90, 184, 43, .35);
  transition: box-shadow .25s ease, transform .25s ease;
}

#woo .button:hover,
#woo button.button:hover,
#woo input.button:hover,
#woo a.button:hover {
  box-shadow: 0 14px 38px rgba(90, 184, 43, .55);
  background: var(--grad-lime);
  color: #0c2018;
}

#woo .button.added::after {
  display: none;
}

#woo .added_to_cart {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-bright);
  padding: 8px 4px;
}

/* ================= PAGINACJA ================= */
.woo-pagination {
  margin-top: 46px;
}

.woo-pagination .woocommerce-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  border: none;
  justify-content: center;
}

.woo-pagination .woocommerce-pagination li {
  border: none;
  margin: 0;
}

.woo-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, .08);
  color: var(--muted);
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}

.woo-pagination .page-numbers:hover {
  color: var(--ink);
}

.woo-pagination .page-numbers.current {
  background: var(--grad-lime);
  border-color: transparent;
  color: #0c2018;
}

/* ================= PUSTA LISTA ================= */
.woo-empty {
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius);
  padding: 70px 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.woo-empty i {
  font-size: 46px;
  color: rgba(15, 23, 42, .18);
}

.woo-empty h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 20px 0 10px;
  color: var(--ink);
}

.woo-empty p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 26px;
  line-height: 1.7;
}

.woo-empty-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================= KARTA PRODUKTU ================= */
.woo-single {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, .07);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow-sm);
}

.woo-single-gallery .woocommerce-product-gallery {
  width: 100% !important;
  float: none;
  margin: 0;
}

.woo-single-gallery .woocommerce-product-gallery__wrapper img {
  border-radius: 14px;
}

.woo-single-gallery .flex-control-thumbs {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.woo-single-gallery .flex-control-thumbs li {
  width: auto;
  flex: 0 0 84px;
}

.woo-single-gallery .flex-control-thumbs img {
  border-radius: 10px;
  opacity: .6;
  transition: opacity .2s ease;
}

.woo-single-gallery .flex-control-thumbs img.flex-active,
.woo-single-gallery .flex-control-thumbs img:hover {
  opacity: 1;
}

.woo-single-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.woo-single-summary .eyebrow {
  margin-bottom: 0;
}

.woo-single-summary .eyebrow a {
  color: inherit;
}

.woo-single-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.5px;
  color: var(--ink);
  margin: 0;
}

.woo-single-dim {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--light);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 0;
}

.woo-single-dim i {
  color: var(--green-bright);
}

.woo-single-dim strong {
  color: var(--ink);
}

.woo-single-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 34px;
  font-weight: 800;
  color: var(--green-bright);
  margin: 12px 0 0;
}

.woo-single-price .pp-price-from {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.woo-single-excerpt {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
  margin-top: 24px;
}

.woo-single-excerpt p {
  margin: 0 0 14px;
}

.woo-single-excerpt strong {
  color: var(--ink);
}

#woo .woo-single-cart {
  --woo-btn-h: 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 26px 0 8px;
}

#woo .woo-single-cart form.cart {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

#woo .woo-single-cart .quantity {
  margin: 0;
}

#woo .woo-single-cart .quantity input.qty {
  box-sizing: border-box;
  width: 74px;
  height: var(--woo-btn-h);
  text-align: center;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  border: 1.5px solid rgba(15, 23, 42, .14);
  border-radius: 999px;
  background: var(--white);
}

#woo .woo-single-cart .quantity input.qty:focus {
  outline: none;
  border-color: var(--green-bright);
}

#woo .woo-single-cart .single_add_to_cart_button,
#woo .woo-single-cart .woo-ask {
  box-sizing: border-box;
  height: var(--woo-btn-h);
  padding: 0 30px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border-radius: 999px;
  white-space: nowrap;
}

#woo .woo-single-cart .single_add_to_cart_button {
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid rgba(88, 181, 49, .5);
  box-shadow: none;
}

#woo .woo-single-cart .single_add_to_cart_button:hover {
  background: rgba(156, 204, 46, .12);
  border-color: var(--green-bright);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}

#woo .woo-single-cart .woo-ask {
  color: #0c2018;
  background: var(--grad-lime);
  border: none;
  box-shadow: 0 10px 30px rgba(90, 184, 43, .4);
}

#woo .woo-single-cart .woo-ask:hover {
  box-shadow: 0 14px 38px rgba(90, 184, 43, .55);
}

.woo-single-meta {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(15, 23, 42, .08);
  margin-top: 26px;
  padding-top: 24px;
}

.woo-single-meta>div {
  box-sizing: border-box;
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  padding-right: 22px;
}

.woo-single-meta>div+div {
  padding-right: 0;
  padding-left: 22px;
}

.woo-single-meta span {
  color: var(--muted);
}

.woo-single-meta strong {
  color: var(--ink);
  font-weight: 700;
  text-align: left;
}

.woo-single-meta a {
  color: var(--green-bright);
}

/* ================= PANELE: OPIS + SPECYFIKACJA ================= */
.woo-single-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 700px);
  gap: 28px;
  margin-top: 28px;
  align-items: start;
}

.woo-panel {
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, .07);
  border-radius: var(--radius);
  padding: 38px 40px;
  box-shadow: var(--shadow-sm);
}

.woo-panel h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 22px;
}

.woo-panel-desc .entry-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 30px 0 12px;
}

.woo-panel-desc .entry-content p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 16px;
}

.woo-panel-desc .entry-content ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.woo-panel-desc .entry-content ul li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.65;
}

.woo-panel-desc .entry-content ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--grad-lime);
}

.woo-panel-desc .entry-content ul li strong {
  color: var(--ink);
}

#woo .woo-panel-attrs table.woocommerce-product-attributes {
  width: 100%;
  border: none;
  border-collapse: collapse;
  margin: 0 0 24px;
  background: transparent;
}

#woo .woo-panel-attrs table.woocommerce-product-attributes tr,
#woo .woo-panel-attrs table.woocommerce-product-attributes tr:nth-child(even),
#woo .woo-panel-attrs table.woocommerce-product-attributes tr:nth-child(even) td,
#woo .woo-panel-attrs table.woocommerce-product-attributes tr:nth-child(even) th {
  background: transparent;
}

#woo .woo-panel-attrs table.woocommerce-product-attributes th,
#woo .woo-panel-attrs table.woocommerce-product-attributes td {
  text-align: left;
  padding: 15px 0;
  border: none;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  font-size: 15px;
  font-style: normal;
  line-height: 1.55;
  vertical-align: top;
  background: transparent;
}

#woo .woo-panel-attrs table.woocommerce-product-attributes tr:last-child th,
#woo .woo-panel-attrs table.woocommerce-product-attributes tr:last-child td {
  border-bottom: none;
}

#woo .woo-panel-attrs table.woocommerce-product-attributes th {
  width: 170px;
  padding-right: 20px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .2px;
}

#woo .woo-panel-attrs table.woocommerce-product-attributes td {
  color: var(--ink);
}

#woo .woo-panel-attrs table.woocommerce-product-attributes td p {
  margin: 0;
  font-style: normal;
}

.woo-attr-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.woo-attr-chip {
  display: inline-flex;
  align-items: center;
  background: var(--light);
  border: 1px solid rgba(15, 23, 42, .07);
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 13.5px;
  font-weight: 600;
  font-style: normal;
  color: var(--ink);
  line-height: 1.35;
}

.woo-panel-note {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 22px;
}

.woo-panel-attrs .btn {
  justify-content: center;
}

/* ================= PODOBNE ================= */
.woo-related {
  margin-top: 70px;
}

.woo-related-head {
  text-align: center;
  margin-bottom: 34px;
}

.woo-related-head h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--ink);
  margin: 0;
}

.woo-related-head .lime {
  background: var(--grad-lime);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ================= STRONY SKLEPU (#woo z shortcode) ================= */
#woo .woo-page {
  max-width: 1380px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, .07);
  border-radius: var(--radius);
  padding: 46px 50px;
  box-shadow: var(--shadow-sm);
}

#woo .woocommerce-message,
#woo .woocommerce-info,
#woo .woocommerce-error,
#woo .wc-block-components-notice-banner {
  box-sizing: border-box;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 14px;
  background: var(--light);
  box-shadow: none;
  color: var(--ink);
  margin: 0 0 26px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 15.5px;
  line-height: 1.6;
}

#woo .woocommerce-message {
  border-color: rgba(90, 184, 43, .38);
  background: rgba(156, 204, 46, .12);
}

#woo .woocommerce-error,
#woo .wc-block-components-notice-banner.is-error {
  border-color: rgba(212, 70, 60, .3);
  background: rgba(212, 70, 60, .06);
}

#woo .wc-block-components-notice-banner.is-success {
  border-color: rgba(90, 184, 43, .38);
  background: rgba(156, 204, 46, .12);
}

#woo .woocommerce-message::before,
#woo .woocommerce-info::before,
#woo .woocommerce-error::before {
  display: none;
}

/* ikona komunikatu w linii tekstu, nie nad nim */
#woo .wc-block-components-notice-banner>svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  background: transparent;
  fill: currentColor;
}

#woo .wc-block-components-notice-banner.is-error>svg {
  color: #d4463c;
}

#woo .wc-block-components-notice-banner.is-success>svg {
  color: var(--green-bright);
}

#woo .wc-block-components-notice-banner>.wc-block-components-notice-banner__content {
  flex: 1 1 0;
  min-width: 0;
  padding: 0;
  color: var(--ink);
}

#woo .woocommerce-message .button,
#woo .woocommerce-info .button {
  margin-left: auto;
  padding: 11px 22px;
  font-size: 14.5px;
}

/* --- przyciski WooCommerce Blocks (koszyk / zamówienie) ---
   `.wp-element-button` w selektorze, bo bez theme.json bloki biorą ciemne
   tło z domyślnych stylów WordPressa, nie z klas WooCommerce */
#woo .wc-block-components-button:not(.is-link),
#woo button.wp-element-button,
#woo a.wp-element-button {
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  min-height: 56px;
  padding: 0 34px;
  border: none;
  border-radius: 999px;
  color: #0c2018;
  background: var(--grad-lime);
  box-shadow: 0 10px 30px rgba(90, 184, 43, .38);
  transition: box-shadow .25s ease;
}

#woo .wc-block-components-button:not(.is-link):hover,
#woo button.wp-element-button:hover,
#woo a.wp-element-button:hover {
  color: #0c2018;
  background: var(--grad-lime);
  box-shadow: 0 14px 38px rgba(90, 184, 43, .55);
}

#woo .wc-block-components-button:not(.is-link) .wc-block-components-button__text {
  color: inherit;
}

#woo .wc-block-components-button.is-link {
  color: var(--green-bright);
  font-weight: 600;
}

/* --- typografia Blocks ---
   bloki mają własne rodziny i skale czcionek, przez co koszyk i kasa
   wyglądały jak wklejone z innej strony — sprowadzamy je do typografii motywu */
#woo [class^="wc-block"],
#woo [class*=" wc-block"] {
  font-family: inherit;
  letter-spacing: normal;
}

#woo .wc-block-components-title,
#woo .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-title,
#woo .wc-block-cart__totals-title,
#woo .wc-block-components-checkout-step__title {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
}

#woo .wc-block-components-checkout-step__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.2px;
  text-transform: none;
  color: var(--ink);
}

#woo .wc-block-components-totals-item__label,
#woo .wc-block-components-totals-item__value,
#woo .wc-block-components-product-metadata,
#woo .wc-block-components-product-name,
#woo .wc-block-components-formatted-money-amount {
  font-size: 15.5px;
  line-height: 1.6;
}

#woo .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
#woo .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
}

#woo .wc-block-cart-items__header {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
}

#woo .wc-block-components-product-metadata,
#woo .wc-block-components-product-metadata__description {
  color: var(--muted);
}

#woo .wc-block-components-product-name {
  font-weight: 700;
  color: var(--ink);
}

#woo .wc-block-components-product-name:hover {
  color: var(--green-bright);
}

#woo .wc-block-components-formatted-money-amount,
#woo .wc-block-components-totals-item__value {
  color: var(--ink);
  font-weight: 700;
}

#woo .wc-block-components-totals-item__label {
  color: var(--muted);
}

#woo .wc-block-components-text-input input,
#woo .wc-block-components-select__container select,
#woo .wc-block-components-textarea {
  box-sizing: border-box;
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid rgba(15, 23, 42, .14);
  border-radius: 12px;
}

#woo .wc-block-components-text-input input:focus,
#woo .wc-block-components-select__container select:focus,
#woo .wc-block-components-textarea:focus {
  outline: none;
  border-color: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(156, 204, 46, .18);
}

#woo .wc-block-components-panel__button {
  font-weight: 600;
  color: var(--ink);
}

#woo .wc-block-components-sidebar .wc-block-components-panel,
#woo .wp-block-woocommerce-checkout-order-summary-block {
  border-radius: var(--radius);
}

/* selektor ilości — reset, bo ogólna reguła #woo input[type=number]
   dokładała mu ramkę i padding, przez co pole rozpychało pigułkę od środka */
#woo .wc-block-components-quantity-selector {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: auto;
  min-width: 124px;
  max-width: 124px;
  height: 46px;
  margin: 0;
  padding: 0;
  border: 1.5px solid rgba(15, 23, 42, .14);
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
}

#woo .wc-block-components-quantity-selector::after {
  display: none;
}

#woo .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  box-sizing: border-box;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: var(--ink);
}

#woo .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

#woo .wc-block-components-quantity-selector__button {
  flex: 0 0 38px;
  width: 38px;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
  opacity: 1;
  cursor: pointer;
  transition: color .18s ease, background .18s ease;
}

#woo .wc-block-components-quantity-selector__button:hover {
  color: var(--ink);
  background: var(--light);
}

/* --- klasyczny koszyk / kasa (shortcode) --- */
#woo table.shop_table {
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius);
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
}

#woo table.shop_table th {
  font-weight: 700;
  color: var(--ink);
}

#woo table.shop_table td,
#woo table.shop_table th {
  padding: 16px 18px;
}

#woo .cart_totals h2,
#woo .woocommerce-billing-fields h3,
#woo #order_review_heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}

#woo input[type="text"],
#woo input[type="email"],
#woo input[type="tel"],
#woo input[type="password"],
#woo input[type="number"],
#woo textarea,
#woo select {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid rgba(15, 23, 42, .14);
  border-radius: 12px;
  padding: 13px 16px;
}

#woo input[type="text"]:focus,
#woo input[type="email"]:focus,
#woo input[type="tel"]:focus,
#woo textarea:focus,
#woo select:focus {
  outline: none;
  border-color: var(--green-bright);
}

/* ================= MOJE KONTO ================= */
body.woocommerce-account #woo .woocommerce {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

/* WooCommerce wstawia pusty wrapper na komunikaty jako pierwsze dziecko —
   bez tego zjadał pierwszą komórkę siatki i spychał nawigację do drugiej kolumny */
body.woocommerce-account #woo .woocommerce>.woocommerce-notices-wrapper {
  grid-column: 1 / -1;
}

body.woocommerce-account #woo .woocommerce>.woocommerce-notices-wrapper:empty {
  display: none;
}

#woo .woocommerce-MyAccount-navigation {
  grid-column: 1;
}

#woo .woocommerce-MyAccount-content {
  grid-column: 2;
}

#woo .woocommerce-MyAccount-navigation {
  float: none;
  width: auto;
}

#woo .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

#woo .woocommerce-MyAccount-navigation li {
  margin: 0;
  padding: 0;
}

#woo .woocommerce-MyAccount-navigation li::before,
#woo .woocommerce-MyAccount-navigation li::marker {
  display: none;
  content: none;
}

#woo .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 13px 18px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 15.5px;
  font-weight: 600;
  transition: background .18s ease, color .18s ease;
}

#woo .woocommerce-MyAccount-navigation li a:hover {
  background: var(--light);
  color: var(--ink);
}

#woo .woocommerce-MyAccount-navigation li.is-active a {
  background: var(--grad-lime);
  color: #0c2018;
}

#woo .woocommerce-MyAccount-content {
  float: none;
  width: auto;
}

#woo .woocommerce-MyAccount-content>p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 16px;
}

#woo .woocommerce-MyAccount-content mark {
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}

#woo .woocommerce-MyAccount-content h2,
#woo .woocommerce-MyAccount-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 18px;
}

#woo .woocommerce-MyAccount-content .woocommerce-Address {
  background: var(--light);
  border-radius: var(--radius);
  padding: 26px 28px;
}

#woo .woocommerce-form-login,
#woo .woocommerce-form-register {
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: var(--radius);
  padding: 32px 34px;
}

/* ================= MODAL Z FORMULARZEM ================= */
.pp-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 22px;
}

.pp-modal[hidden] {
  display: none;
}

.pp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 15, 32, .62);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .3s ease;
}

.pp-modal.is-open .pp-modal-backdrop {
  opacity: 1;
}

.pp-modal-panel {
  position: relative;
  width: min(991px, 100%);
  max-height: calc(100vh - 68px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 40px 90px rgba(9, 15, 32, .42);
  transform: translateX(-140px);
  opacity: 0;
  transition: transform .4s cubic-bezier(.22, .61, .36, 1), opacity .3s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.pp-modal.is-open .pp-modal-panel {
  transform: translateX(0);
  opacity: 1;
}

body.pp-modal-open {
  overflow: hidden;
}

.pp-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 50%;
  background: var(--white);
  color: var(--muted);
  font-size: 19px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
  z-index: 2;
}

.pp-modal-close:hover {
  background: var(--light);
  color: var(--ink);
}

.pp-modal-body {
  padding: 52px 56px 56px;
}

.pp-modal-body>h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 14px;
}

.pp-modal-lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 640px;
}

.pp-modal-product {
  display: inline-flex;
  align-items: center;
  background: rgba(156, 204, 46, .16);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 28px;
}

.pp-modal-product[hidden] {
  display: none;
}

.pp-modal-form .wpcf7-form>p {
  margin: 0 0 18px;
}

.pp-modal-form .wpcf7-form>p:last-of-type {
  margin-bottom: 0;
}

.pp-modal-form label {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.pp-modal-form input.wpcf7-form-control:not(.wpcf7-submit):not([type="checkbox"]):not([type="radio"]),
.pp-modal-form textarea.wpcf7-form-control,
.pp-modal-form select.wpcf7-form-control {
  box-sizing: border-box;
  width: 100%;
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid rgba(15, 23, 42, .14);
  border-radius: 12px;
  padding: 14px 18px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.pp-modal-form .wpcf7-form-control:focus {
  outline: none;
  border-color: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(156, 204, 46, .18);
}

.pp-modal-form textarea.wpcf7-form-control {
  min-height: 150px;
  resize: vertical;
}

.pp-modal-form .wpcf7-list-item {
  margin: 0 18px 0 0;
}

.pp-modal-form .wpcf7-acceptance .wpcf7-list-item-label,
.pp-modal-form .wpcf7-checkbox .wpcf7-list-item-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.pp-modal-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 18px 38px;
  border: none;
  border-radius: 999px;
  color: #0c2018;
  background: var(--grad-lime);
  box-shadow: 0 10px 30px rgba(90, 184, 43, .4);
  cursor: pointer;
  transition: box-shadow .25s ease;
}

.pp-modal-form .wpcf7-submit:hover {
  box-shadow: 0 14px 38px rgba(90, 184, 43, .58);
}

.pp-modal-form .wpcf7-spinner {
  margin: 0 0 0 12px;
}

.pp-modal-form .wpcf7-not-valid-tip {
  font-size: 13.5px;
  color: #d4463c;
  margin-top: 7px;
}

.pp-modal-form .wpcf7-form-control.wpcf7-not-valid {
  border-color: #d4463c;
}

.pp-modal-form .wpcf7-response-output {
  margin: 4px 0 0;
  border: 1px solid rgba(90, 184, 43, .38);
  border-radius: 14px;
  background: rgba(156, 204, 46, .12);
  padding: 16px 20px;
  font-size: 15px;
  color: var(--ink);
}

.pp-modal-form .wpcf7-form.invalid .wpcf7-response-output,
.pp-modal-form .wpcf7-form.failed .wpcf7-response-output {
  border-color: rgba(212, 70, 60, .3);
  background: rgba(212, 70, 60, .06);
}

@media (prefers-reduced-motion: reduce) {

  .pp-modal-panel,
  .pp-modal-backdrop {
    transition: none;
  }
}

.pp-modal .pp-modal-form .form-row::before,
.pp-modal .pp-modal-form .form-row::after,
.pp-modal .pp-modal-form .form-row-3::before,
.pp-modal .pp-modal-form .form-row-3::after {
  content: none;
  display: none;
}

.pp-modal-form .wpcf7-form p:has(> input[type="hidden"]:only-child) {
  display: none;
}

.pp-modal-form .wpcf7-response-output:empty {
  display: none;
}

@media (min-width: 992px) {
  .pp-modal-form .form-row-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .pp-modal-form .form-row > :only-child,
  .pp-modal-form .form-row-3 > :only-child {
    grid-column: 1 / -1;
  }
}

/* ================= RESPONSYWNOŚĆ ================= */
@media (max-width: 1690px) {
  .woo-single-title {
    font-size: 34px;
  }

  .woo-single-price {
    font-size: 31px;
  }
}

@media (max-width: 1380px) {
  .woo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .woo-toolbar {
    padding: 12px 16px;
    margin-bottom: 20px;
  }

  .woo-count .woocommerce-result-count {
    font-size: 14px;
  }

  .woo-ordering select {
    padding: 9px 34px 9px 15px;
    font-size: 14px;
    background-position: calc(100% - 17px) 50%, calc(100% - 12px) 50%;
  }

  .woo-grid {
    gap: 22px;
  }

  .woo-card-body {
    padding: 18px 18px 20px;
    gap: 10px;
  }

  .woo-card-title {
    font-size: 18px;
  }

  .woo-card-dim {
    font-size: 13.5px;
  }

  .woo-card-price {
    font-size: 21px;
  }

  .woo-card-badge {
    top: 12px;
    left: 12px;
    font-size: 11px;
    padding: 6px 12px;
  }

  .woo-card-actions .btn {
    padding: 11px 16px;
    font-size: 14px;
  }

  #woo .woo-card-actions .woo-cart-icon {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  #woo {
    --woo-sidebar: 280px;
    --woo-gap: 28px;
  }

  .woo-single,
  .woo-single-details {
    grid-template-columns: minmax(0, 1fr);
  }

  .woo-single {
    gap: 34px;
    padding: 30px;
  }

  .woo-single-title {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .woo-card-actions {
    gap: 8px;
    flex-wrap: nowrap;
    padding-top: 2px;
  }

  .woo-card-actions .btn {
    flex: 1 1 auto;
    min-width: 0;
    padding: 10px 15px;
    font-size: 14px;
    white-space: nowrap;
  }

  #woo .woo-card-actions .woo-cart-icon {
    margin-left: 0;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  #woo .button,
  #woo button.button,
  #woo input.button,
  #woo a.button {
    padding: 13px 22px;
    font-size: 15px;
  }

  #woo .woo-single-cart {
    --woo-btn-h: 48px;
    gap: 10px;
    margin: 20px 0 6px;
  }

  #woo .woo-single-cart .quantity input.qty {
    width: 62px;
    font-size: 15px;
  }

  #woo .woo-single-cart .single_add_to_cart_button,
  #woo .woo-single-cart .woo-ask {
    padding: 0 22px;
    font-size: 15px;
  }

  .woo-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: var(--navy-600);
    border: none;
    border-radius: 999px;
    padding: 12px 22px;
    cursor: pointer;
  }

  .woo-filter-toggle i {
    color: var(--green-lime);
  }

  .woo-filter-toggle-count {
    display: inline-grid;
    place-items: center;
    min-width: 21px;
    height: 21px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--grad-lime);
    color: #0c2018;
    font-size: 12px;
  }

  .woo-sidebar {
    position: fixed;
    inset: 0;
    top: 0;
    z-index: 140;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    transform: translateY(100%);
    visibility: hidden;
    transition: transform .3s ease, visibility .3s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .woo-sidebar.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .woo-sidebar-head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-bottom: 1px solid rgba(15, 23, 42, .1);
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
  }

  .woo-sidebar-close {
    width: 42px;
    height: 42px;
    flex: none;
    display: grid;
    place-items: center;
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 50%;
    background: var(--white);
    color: var(--muted);
    font-size: 18px;
    cursor: pointer;
  }

  .woo-sidebar-body {
    padding: 16px 16px 24px;
  }

  .woo-sidebar-foot {
    position: sticky;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding: 14px 16px;
    background: var(--white);
    border-top: 1px solid rgba(15, 23, 42, .1);
  }

  .woo-sidebar-foot .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .woo-sidebar-reset {
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    text-decoration: underline;
  }


  #woo {
    padding-block: 60px 80px;
  }

  .woo-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .woo-toolbar {
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 20px;
  }

  .woo-count .woocommerce-result-count {
    font-size: 13.5px;
  }

  .woo-panel {
    padding: 28px 24px;
  }

  .woo-related-head h2 {
    font-size: 28px;
  }

  .pp-modal-body {
    padding: 46px 34px 46px;
  }

  .pp-modal-body>h2 {
    font-size: 27px;
  }

  body.woocommerce-account #woo .woocommerce {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  #woo .woocommerce-MyAccount-navigation ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .woo-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 12px;
    margin-bottom: 16px;
  }

  .woo-filter-toggle {
    width: 100%;
    font-size: 15px;
    padding: 12px 18px;
  }

  .woo-ordering {
    display: none;
  }

  .woo-count {
    order: 2;
  }

  .woo-count .woocommerce-result-count {
    text-align: center;
    font-size: 12.5px;
    line-height: 1.3;
  }

  .woo-card-actions .btn {
    padding: 9px 13px;
    font-size: 13.5px;
  }

  #woo .woo-card-actions .woo-cart-icon {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  #woo .woo-single-cart {
    --woo-btn-h: 44px;
  }

  #woo .woo-single-cart .quantity input.qty {
    width: 56px;
  }

  #woo .woo-single-cart .single_add_to_cart_button,
  #woo .woo-single-cart .woo-ask {
    padding: 0 18px;
    font-size: 14.5px;
  }

  #woo .button,
  #woo button.button,
  #woo input.button,
  #woo a.button {
    padding: 12px 20px;
    font-size: 14px;
  }

  #woo {
    padding-block: 44px 60px;
  }

  .woo-card-body {
    padding: 18px 18px 20px;
    gap: 10px;
  }

  .woo-card-title {
    font-size: 18px;
  }

  .woo-card-price {
    font-size: 21px;
  }

  .woo-single {
    padding: 22px;
    gap: 26px;
  }

  .woo-single-title {
    font-size: 24px;
  }

  .woo-single-price {
    font-size: 26px;
  }

  .woo-panel {
    padding: 22px 18px;
  }

  .woo-related-head h2 {
    font-size: 24px;
  }
  .woo-single-dim {
    font-size: 14px;
    padding: 8px 15px;
  }

  .woo-single-excerpt {
    font-size: 15px;
    margin-top: 18px;
  }

  .woo-panel h2 {
    font-size: 21px;
    margin-bottom: 16px;
  }

  .woo-panel-desc .entry-content h3 {
    font-size: 17px;
    margin: 22px 0 10px;
  }

  .woo-panel-note {
    font-size: 13.5px;
  }

  .woo-attr-chip {
    font-size: 12.5px;
    padding: 4px 11px;
  }

  .woo-related {
    margin-top: 44px;
  }

  .pp-modal {
    padding: 0;
  }

  .pp-modal-panel {
    width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
  }

  .pp-modal-body {
    padding: 40px 20px 36px;
  }

  .pp-modal-body>h2 {
    font-size: 23px;
    margin-bottom: 10px;
  }

  .pp-modal-lead {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .pp-modal-product {
    font-size: 13.5px;
    padding: 7px 14px;
    margin-bottom: 20px;
  }

  .pp-modal-form .wpcf7-form>p {
    margin-bottom: 14px;
  }

  .pp-modal-form label {
    font-size: 13.5px;
    margin-bottom: 6px;
  }

  /* 16px celowo: Safari na iOS przybliża stronę przy mniejszym foncie pola */
  .pp-modal-form input.wpcf7-form-control:not(.wpcf7-submit):not([type="checkbox"]):not([type="radio"]),
  .pp-modal-form textarea.wpcf7-form-control,
  .pp-modal-form select.wpcf7-form-control {
    font-size: 16px;
    padding: 11px 14px;
    border-radius: 10px;
  }

  .pp-modal-form textarea.wpcf7-form-control {
    min-height: 108px;
  }

  .pp-modal-form .wpcf7-submit {
    font-size: 15px;
    padding: 14px 26px;
  }

  .pp-modal-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .woo-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .woo-filter-toggle {
    font-size: 14.5px;
    padding: 11px 16px;
  }

  .woo-count .woocommerce-result-count {
    font-size: 12px;
  }

  .woo-single-title {
    font-size: 22px;
  }

  .woo-single-price {
    font-size: 24px;
  }

  .woo-single-excerpt {
    font-size: 14.5px;
  }

  .woo-panel h2 {
    font-size: 19px;
  }

  .woo-single-meta>div,
  .woo-single-meta>div+div {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }

  .woo-single-meta>div+div {
    margin-top: 18px;
  }

  #woo .woo-single-cart,
  #woo .woo-single-cart form.cart {
    width: 100%;
  }

  #woo .woo-single-cart .single_add_to_cart_button {
    flex: 1 1 auto;
    padding: 0 18px;
  }

  #woo .woo-single-cart .woo-ask {
    width: 100%;
  }

  .woo-page {
    padding: 28px 22px;
  }

  .pp-modal {
    padding: 16px 12px;
  }

  .pp-modal-panel {
    max-height: calc(100vh - 32px);
  }

  .pp-modal-body {
    padding: 36px 16px 32px;
  }

  .pp-modal-body>h2 {
    font-size: 21px;
  }

  .pp-modal-close {
    top: 12px;
    right: 12px;
  }

  .pp-modal-form .wpcf7-submit {
    width: 100%;
  }
}

@media (max-width: 340px) {
  .woo-card-actions .btn {
    padding: 8px 11px;
    font-size: 12.5px;
  }

  #woo .woo-card-actions .woo-cart-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  #woo .woo-single-cart {
    --woo-btn-h: 42px;
  }

  #woo .woo-single-cart .quantity input.qty {
    width: 50px;
  }

  #woo .woo-single-cart .single_add_to_cart_button,
  #woo .woo-single-cart .woo-ask {
    padding: 0 14px;
    font-size: 14px;
  }

  .woo-card-body {
    padding: 15px 15px 17px;
  }

  .woo-card-title {
    font-size: 17px;
  }

  .woo-card-price {
    font-size: 19px;
  }

  .woo-single {
    padding: 16px;
  }

  .woo-single-title {
    font-size: 21px;
  }

  .woo-single-price {
    font-size: 23px;
  }

  .woo-single-dim {
    padding: 7px 14px;
    font-size: 14px;
  }
}
