body.woocommerce-shop,
body.tax-product_cat,
body.tax-product_tag {
  background: #f2f6f8;
}
.shop-hero {
  padding: 68px 0 62px;
  background:
    radial-gradient(
      circle at 82% 28%,
      rgba(48, 115, 163, 0.5) 0,
      rgba(48, 115, 163, 0) 27%
    ),
    linear-gradient(120deg, #0d2d4d, #174f7a);
}
.shop-hero:before {
  content: "";
  position: absolute;
  right: 14%;
  bottom: -115px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.shop-hero:after {
  right: -55px;
  top: -125px;
  width: 270px;
  height: 270px;
  opacity: 0.9;
}
.shop-hero .eyebrow {
  color: var(--yellow);
}
.shop-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
}
.shop-hero-copy {
  color: #cbd9e5;
}
.shop-assurances {
  color: #fff;
}
.shop-assurances span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}
.woocommerce-shop main.site-main,
.tax-product_cat main.site-main,
.tax-product_tag main.site-main {
  position: relative;
}
.woocommerce-shop main.site-main:before,
.tax-product_cat main.site-main:before,
.tax-product_tag main.site-main:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 -100vw;
  background: #f2f6f8;
}
.woocommerce #sidebar,
.woocommerce .widget-area {
  display: none !important;
}

/* Filter katalog */
.shop-filters {
  display: grid;
  grid-template-columns: minmax(190px, 1.35fr) repeat(2, minmax(155px, 1fr)) auto;
  align-items: end;
  gap: 14px;
  width: 100%;
  padding: 20px;
  margin: 0 0 28px;
  border: 1px solid rgba(18, 53, 91, 0.09);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(18, 53, 91, 0.07);
}
.shop-filter-field {
  display: grid;
  gap: 7px;
}
.shop-filter-field label {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}
.shop-filter-field select,
.shop-price-input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d8e1e8;
  border-radius: 12px;
  background: #f8fafb;
}
.shop-filter-field select {
  padding: 0 38px 0 13px;
  color: var(--navy);
}
.shop-price-input {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.shop-price-input span {
  padding-left: 13px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}
.shop-price-input input {
  width: 100%;
  min-width: 0;
  padding: 0 12px 0 6px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
}
.shop-filter-field select:focus,
.shop-price-input:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(48, 115, 163, 0.12);
}
.shop-filter-actions {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 46px;
}
.shop-filter-actions button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.shop-filter-actions button:hover {
  background: var(--blue);
}
.shop-filter-actions a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}
@media (max-width: 900px) {
  .shop-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .shop-filter-category,
  .shop-filter-actions {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .shop-hero {
    background: linear-gradient(135deg, #0d2d4d, #174f7a);
  }
  .shop-hero h1 {
    font-size: 2.45rem;
  }
  .shop-assurances span {
    width: max-content;
  }
  .shop-filters {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .shop-filter-category,
  .shop-filter-actions {
    grid-column: auto;
  }
  .shop-filter-actions {
    justify-content: space-between;
  }
  .shop-filter-actions button {
    flex: 1;
  }
}
