body {
  background: #f7f7f7;
  font-family: "DM Sans", sans-serif;
}

.product-wrapper {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 2.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-image {
  width: 100%;
}

.product-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  object-fit: contain;
}

.product-content {
  width: 100%;
}

.product-title {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: #000;
}

.price-box {
  margin: 0 0 1.5rem;
  font-size: 2rem;
  font-weight: 700;
}

.price-box .sale {
  color: #e11b22;
}

.price-box .old {
  color: #777;
  text-decoration: line-through;
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.product-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
  margin: 0 0 2rem;
}

.specs-box {
  background: #f0f4f8;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.specs-box h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: #000;
}

.specs-box ul {
  margin: 0;
  padding-left: 1.5rem;
}

.specs-box li {
  margin-bottom: 0.5rem;
  line-height: 1.45;
}

.product-contact {
  margin-top: 1rem;
}

.product-contact .btn {
  display: inline-block;
}

.sebo-product-page .product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.sebo-product-page .product-image img {
  display: block;
  margin: 0 auto;
  max-width: 520px;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 900px) {
  .product-wrapper {
    grid-template-columns: 1fr;
    margin: 2rem 1rem;
    padding: 2rem;
    gap: 2rem;
  }

  .product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .product-image img {
    max-width: 90%;
    margin: 0 auto;
  }

  .product-title {
    font-size: 1.75rem;
  }

  .price-box {
    font-size: 1.75rem;
  }

  .sebo-product-page .product-image {
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .sebo-product-page .product-image img {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 520px) {
  .product-wrapper {
    margin: 1.25rem 0.75rem;
    padding: 1.25rem;
    border-radius: 14px;
  }

  .product-title {
    font-size: 1.45rem;
  }

  .price-box {
    font-size: 1.5rem;
  }

  .product-description {
    font-size: 0.98rem;
  }

  .specs-box {
    padding: 1.15rem;
  }

  .sebo-product-page .product-image img {
    max-width: 95%;
  }
}

:root {
  --sebo-navy: #0d1b4c;
  --sebo-blue: #0058a9;
  --sebo-red: #d71920;
  --sebo-ink: #172033;
  --sebo-muted: #687286;
  --sebo-border: #e3e8ef;
  --sebo-soft: #f6f8fb;
  --sebo-white: #ffffff;
  --sebo-shadow: 0 18px 45px rgba(15, 31, 62, 0.11);
  --sebo-shadow-soft: 0 8px 24px rgba(15, 31, 62, 0.08);
}

.sebo-product-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  color: var(--sebo-ink);
}

.sebo-product-page .product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding-top: 1.5rem;
  color: var(--sebo-muted);
  font-size: 0.9rem;
}

.sebo-product-page .product-breadcrumb a {
  color: var(--sebo-blue);
  font-weight: 700;
  text-decoration: none;
}

.sebo-product-page .product-breadcrumb a:hover {
  text-decoration: underline;
}

.sebo-product-page .product-wrapper {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  width: min(1200px, calc(100% - 40px));
  margin: 1.5rem auto 3.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(10, 39, 78, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--sebo-shadow);
}

.sebo-product-page .product-image {
  position: sticky;
  top: 7rem;
  display: flex;
  min-height: 620px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--sebo-border);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 40%, #ffffff 0%, #f7f9fc 62%, #eef2f7 100%);
}

.sebo-product-page .product-image::after {
  content: "";
  position: absolute;
  inset: auto 12% 8% 12%;
  height: 34px;
  border-radius: 50%;
  background: rgba(13, 27, 76, 0.08);
  filter: blur(18px);
}

.sebo-product-page .product-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 92%;
  max-height: 560px;
  margin: 0 auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.sebo-product-page .product-image:hover img {
  transform: scale(1.025);
}

.sebo-product-page .product-content {
  padding: 0.5rem 0;
}

.sebo-product-page .product-badge {
  display: inline-flex;
  margin: 0 0 0.8rem;
  padding: 0.45rem 0.8rem;
  color: var(--sebo-blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 88, 169, 0.18);
  border-radius: 999px;
  background: rgba(0, 88, 169, 0.07);
}

.sebo-product-page .product-title {
  margin: 0;
  color: var(--sebo-navy);
  font-size: clamp(2.1rem, 4.5vw, 3.7rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.sebo-product-page .price-box {
  margin: 1.2rem 0 1.1rem;
}

.sebo-product-page .price-box .sale {
  color: var(--sebo-red);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
}

.sebo-product-page .product-description {
  max-width: 680px;
  margin: 0;
  color: var(--sebo-muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.sebo-product-page .product-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.4rem 0 1.5rem;
}

.sebo-product-page .product-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.75rem;
  color: var(--sebo-navy);
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid var(--sebo-border);
  border-radius: 999px;
  background: var(--sebo-soft);
}

.sebo-product-page .product-accordion {
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid var(--sebo-border);
  border-radius: 14px;
  background: var(--sebo-white);
  box-shadow: var(--sebo-shadow-soft);
}

.sebo-product-page .product-accordion summary {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3.2rem 1rem 1.1rem;
  color: var(--sebo-navy);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
}

.sebo-product-page .product-accordion summary::-webkit-details-marker {
  display: none;
}

.sebo-product-page .product-accordion summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--sebo-navy);
  border-bottom: 2px solid var(--sebo-navy);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.sebo-product-page .product-accordion[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.sebo-product-page .product-accordion summary:hover {
  color: var(--sebo-blue);
}

.sebo-product-page .product-accordion__content {
  padding: 1.15rem 1.35rem 1.4rem;
  border-top: 1px solid var(--sebo-border);
  background: #fbfcfe;
}

.sebo-product-page .product-accordion__content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.5rem;
  margin: 0;
  padding-left: 1.2rem;
}

.sebo-product-page .product-accordion__content li {
  color: #344054;
  line-height: 1.55;
}

.sebo-product-page .product-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1.5rem;
}

.sebo-product-page .product-primary-cta {
  min-width: 150px;
  text-align: center;
}

.sebo-product-page .product-secondary-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 1.1rem;
  color: var(--sebo-blue);
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(0, 88, 169, 0.28);
  border-radius: 999px;
  background: #ffffff;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sebo-product-page .product-secondary-cta:hover {
  color: #ffffff;
  background: var(--sebo-blue);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .sebo-product-page .product-wrapper {
    grid-template-columns: 1fr;
  }

  .sebo-product-page .product-image {
    position: relative;
    top: auto;
    min-height: 500px;
  }

  .sebo-product-page .product-accordion__content ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .sebo-product-page .product-breadcrumb {
    padding-top: 1rem;
    font-size: 0.8rem;
  }

  .sebo-product-page .product-wrapper {
    width: min(100% - 24px, 1200px);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 18px;
  }

  .sebo-product-page .product-image {
    min-height: 390px;
    border-radius: 16px;
  }

  .sebo-product-page .product-image img {
    max-width: 96%;
    max-height: 360px;
  }

  .sebo-product-page .product-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .sebo-product-page .product-contact {
    flex-direction: column;
    align-items: stretch;
  }

  .sebo-product-page .product-contact a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sebo-product-page * {
    transition: none !important;
  }
}

/* =========================================================
   SEBO UPRIGHT — MOBILE KEY FEATURES LAYOUT
   Only affects the Key Features accordion on screens 600px
   wide and below.
   ========================================================= */
@media (max-width: 600px) {
  .sebo-product-page .product-accordion {
    box-sizing: border-box;
    width: calc(100% + 2rem);
    max-width: none;
    margin-top: 1rem;
    margin-right: -1rem;
    margin-left: -1rem;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .sebo-product-page .product-accordion summary {
    box-sizing: border-box;
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    text-align: left;
  }

  .sebo-product-page .product-accordion__content {
    box-sizing: border-box;
    width: 100%;
    padding: 1rem 1.15rem 1.25rem;
    text-align: left;
  }

  .sebo-product-page .product-accordion__content ul {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
  }

  .sebo-product-page .product-accordion__content li {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 0.75rem;
    padding: 0 0 0 1.15rem;
    color: #344054;
    line-height: 1.5;
    text-align: left;
  }

  .sebo-product-page .product-accordion__content li::before {
    content: "•";
    position: absolute;
    top: 0;
    left: 0;
    color: #000;
    font-weight: 700;
  }

  .sebo-product-page .product-accordion__content li:last-child {
    margin-bottom: 0;
  }
}

/* =========================================================
   SEBO CANISTER CATEGORY PAGE
   ========================================================= */

.sebo-shop-page {
  --sebo-category-blue: #0058a9;
  --sebo-category-blue-dark: #003f7e;
  --sebo-category-red: #d71920;
  --sebo-category-ink: #0f1b34;
  --sebo-category-muted: #5a667a;
  --sebo-category-border: #d7e2ee;

  color: var(--sebo-category-ink);
  background: #f5f7fa;
}

.sebo-category-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 28%, rgba(0, 88, 169, 0.11), transparent 22%),
    linear-gradient(180deg, #eef4fb 0%, #edf3fa 100%);
  border-bottom: 1px solid #d9e4ef;
}

.sebo-category-hero__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-radial-gradient(
      ellipse at 58% -30%,
      transparent 0 52px,
      rgba(0, 88, 169, 0.045) 53px 55px
    );
}

.sebo-category-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
  min-height: 430px;
  padding: 2.8rem 0 2.6rem;
}

.sebo-category-hero__content {
  max-width: 680px;
}

.sebo-category-hero__eyebrow {
  margin: 0 0 1rem;
  color: var(--sebo-category-blue);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sebo-category-hero h1 {
  margin: 0;
  color: #081732;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.sebo-category-hero h1 span {
  display: block;
}

.sebo-category-hero__lead {
  max-width: 660px;
  margin: 1.35rem 0 0;
  color: #455468;
  font-size: 1.15rem;
  line-height: 1.7;
}

.sebo-category-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.8rem;
}

.sebo-category-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 190px;
}

.sebo-category-benefit__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  color: var(--sebo-category-blue);
  font-size: 1.1rem;
  font-weight: 800;
  border: 1px solid #c7d8ea;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(0, 88, 169, 0.08);
}

.sebo-category-benefit strong,
.sebo-category-benefit small {
  display: block;
}

.sebo-category-benefit strong {
  font-size: 1rem;
  line-height: 1.25;
}

.sebo-category-benefit small {
  margin-top: 0.12rem;
  color: var(--sebo-category-muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.sebo-category-hero__visual {
  position: relative;
  min-height: 345px;
}

.sebo-category-hero__image-glow {
  position: absolute;
  right: 7%;
  bottom: 5%;
  width: 340px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 88, 169, 0.12), rgba(0, 88, 169, 0) 72%);
  filter: blur(12px);
}

.sebo-category-hero__image {
  position: absolute;
  right: 4%;
  bottom: 0;
  width: min(88%, 360px);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(24, 47, 73, 0.18));
}

.sebo-products-section {
  padding: 0 0 4rem;
}

.sebo-filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 1.75rem;
  align-items: center;
  margin-top: 0.2rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--sebo-category-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(19, 50, 87, 0.06);
}

.sebo-filter-panel__heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sebo-filter-panel__icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #e9f1fb;
  color: var(--sebo-category-blue);
  font-size: 1.4rem;
  font-weight: 800;
}

.sebo-filter-panel h2 {
  margin: 0;
  color: #0d1832;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 800;
}

.sebo-filter-panel p {
  margin: 0.35rem 0 0;
  color: var(--sebo-category-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.sebo-filter-panel__control label {
  display: block;
  margin-bottom: 0.5rem;
  color: #23334c;
  font-size: 0.95rem;
  font-weight: 700;
}

.sebo-filter-panel__control select {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 1rem;
  border: 2px solid #7fb1e5;
  border-radius: 10px;
  background: #fff;
  color: #0f1d34;
  font: inherit;
  font-size: 1rem;
  outline: none;
}

.sebo-filter-panel__control select:focus {
  border-color: var(--sebo-category-blue);
  box-shadow: 0 0 0 4px rgba(0, 88, 169, 0.12);
}

.sebo-checklist {
  margin: 1rem 0 1.25rem;
  padding: 1rem;
  border-radius: 14px;
  background: var(--sebo-category-red);
  color: #fff;
}

.sebo-checklist__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.sebo-checklist__actions {
  display: flex;
  gap: 0.5rem;
}

.sebo-checklist__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.sebo-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 1rem 0 0.8rem;
  overflow: hidden;
  border: 1px solid #d6e2ee;
  border-radius: 14px;
  background: #edf4fb;
}

.sebo-trust-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 72px;
  padding: 0.95rem 1rem;
  border-right: 1px solid #d6e2ee;
}

.sebo-trust-strip__item:last-child {
  border-right: 0;
}

.sebo-trust-strip__item > span {
  color: var(--sebo-category-blue);
  font-size: 1.15rem;
  font-weight: 800;
  flex: 0 0 auto;
}

.sebo-trust-strip__item strong,
.sebo-trust-strip__item small {
  display: block;
}

.sebo-trust-strip__item strong {
  color: #0d1a33;
  font-size: 0.98rem;
  line-height: 1.2;
}

.sebo-trust-strip__item small {
  margin-top: 0.15rem;
  color: var(--sebo-category-muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.sebo-results-hint {
  min-height: 1.25rem;
  margin: 0.8rem 0 1rem;
  color: var(--sebo-category-muted);
  font-size: 0.95rem;
  text-align: right;
}

.sebo-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sebo-category-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #dbe4ee;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(22, 46, 76, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.sebo-category-card:hover,
.sebo-category-card:focus-visible {
  transform: translateY(-4px);
  border-color: #bdd0e4;
  box-shadow: 0 14px 30px rgba(22, 46, 76, 0.12);
}

.sebo-category-card__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 225px;
  padding: 1.3rem 1rem 0.8rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.sebo-category-card__image-wrap img {
  width: 100%;
  max-width: 190px;
  height: 190px;
  object-fit: contain;
}

.sebo-category-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem 1rem 1.15rem;
}

.sebo-category-card h3 {
  margin: 0;
  color: #142136;
  font-size: 0.97rem;
  font-weight: 800;
  line-height: 1.38;
  text-align: left;
}

.sebo-category-card__description {
  margin: 0.65rem 0 0;
  color: #596678;
  font-size: 0.86rem;
  line-height: 1.65;
  text-align: left;
}

.sebo-category-card__footer {
  margin-top: auto;
  padding-top: 1rem;
}

.sebo-category-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.sebo-category-card__old-price {
  color: #7b8490;
  font-size: 0.9rem;
  text-decoration: line-through;
}

.sebo-category-card__sale-price {
  color: var(--sebo-category-red);
  font-size: 1.1rem;
  font-weight: 800;
}

.sebo-category-card__call-price {
  color: #111827;
  font-size: 0.98rem;
  font-weight: 700;
}

.sebo-product-grid__empty {
  grid-column: 1 / -1;
  margin: 1rem 0;
  padding: 2rem;
  border: 1px dashed #cdd7e3;
  border-radius: 12px;
  background: #fff;
  color: var(--sebo-category-muted);
  text-align: center;
}

@media (max-width: 1100px) {
  .sebo-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sebo-category-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  }
}

@media (max-width: 900px) {
  .sebo-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sebo-category-hero__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: auto;
    padding: 2.25rem 0 1.5rem;
    text-align: center;
  }

  .sebo-category-hero h1 {
    font-size: 3rem;
  }

  .sebo-category-hero__lead {
    font-size: 1.22rem;
    line-height: 1.85;
  }

  .sebo-category-benefits {
    justify-content: center;
  }

  .sebo-category-benefit {
    min-width: min(100%, 320px);
    justify-content: flex-start;
    text-align: left;
  }

  .sebo-category-benefit strong {
    font-size: 1.08rem;
  }

  .sebo-category-benefit small {
    font-size: 0.92rem;
  }

  .sebo-category-hero__visual {
    min-height: 310px;
  }

  .sebo-category-hero__image {
    right: 50%;
    width: min(82%, 330px);
    max-height: 320px;
    transform: translateX(50%);
  }

  .sebo-filter-panel {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    padding: 1.35rem;
  }

  .sebo-filter-panel h2 {
    font-size: 2rem;
  }

  .sebo-filter-panel p {
    font-size: 1.08rem;
  }

  .sebo-filter-panel__control label,
  .sebo-filter-panel__control select {
    font-size: 1.05rem;
  }

  .sebo-filter-panel__control select {
    min-height: 56px;
  }

  .sebo-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    border: 0;
    background: transparent;
    overflow: visible;
  }

  .sebo-trust-strip__item,
  .sebo-trust-strip__item:last-child {
    min-height: 118px;
    flex-direction: column;
    justify-content: center;
    padding: 0.9rem 0.65rem;
    text-align: center;
    border: 1px solid #d6e2ee;
    border-radius: 14px;
    background: #edf4fb;
  }

  .sebo-trust-strip__item > span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
  }

  .sebo-trust-strip__item strong {
    font-size: 1.12rem;
  }

  .sebo-trust-strip__item small {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .sebo-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sebo-category-card__image-wrap {
    min-height: 240px;
  }

  .sebo-category-card__image-wrap img {
    max-width: 210px;
    height: 210px;
  }

  .sebo-category-card h3 {
    font-size: 1.15rem;
  }

  .sebo-category-card__description {
    font-size: 1rem;
  }

  .sebo-category-card__sale-price {
    font-size: 1.28rem;
  }
}

@media (max-width: 560px) {
  .sebo-category-hero h1 {
    font-size: 2.6rem;
  }

  .sebo-category-benefits {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 340px);
    margin-right: auto;
    margin-left: auto;
  }

  .sebo-filter-panel h2 {
    font-size: 1.75rem;
  }

  .sebo-product-grid {
    grid-template-columns: 1fr;
  }

  .sebo-category-card__image-wrap {
    min-height: 250px;
  }

  .sebo-category-card__image-wrap img {
    max-width: 225px;
    height: 225px;
  }

  .sebo-category-card h3 {
    font-size: 1.28rem;
  }

  .sebo-category-card__description {
    font-size: 1.08rem;
    line-height: 1.72;
  }

  .sebo-category-card__sale-price {
    font-size: 1.4rem;
  }
}


/* =========================================================
   SEBO UPRIGHT CATEGORY IMAGE ADJUSTMENTS
   ========================================================= */

.sebo-category-hero__image--upright {
  right: 8%;
  width: min(76%, 250px);
  max-height: 370px;
}

.sebo-category-card__image-wrap--upright {
  min-height: 260px;
}

.sebo-category-card__image-wrap--upright img {
  max-width: 150px;
  height: 235px;
}

@media (max-width: 768px) {
  .sebo-category-hero__image--upright {
    right: 50%;
    width: min(65%, 220px);
    max-height: 320px;
    transform: translateX(50%);
  }

  .sebo-category-card__image-wrap--upright {
    min-height: 270px;
  }

  .sebo-category-card__image-wrap--upright img {
    max-width: 165px;
    height: 245px;
  }
}

@media (max-width: 560px) {
  .sebo-category-card__image-wrap--upright {
    min-height: 300px;
  }

  .sebo-category-card__image-wrap--upright img {
    max-width: 185px;
    height: 275px;
  }
}