/*
Theme Name: Sani Easy
Author: Dustinlabs
Description: Conversion-focused rental and operations platform theme for Sani Easy.
Version: 1.0.126
Text Domain: sani-easy
*/

:root {
  --se-ink: #14213d;
  --se-muted: #66748a;
  --se-green: #188a63;
  --se-green-dark: #106346;
  --se-mint: #e7f7f4;
  --se-yellow: #cba01c;
  --se-yellow-soft: #fbf2d2;
  --se-blue: #294388;
  --se-blue-dark: #1f3266;
  --se-aqua: #7addec;
  --se-sky: #f5fafc;
  --se-coral: #ef6f4f;
  --se-paper: #ffffff;
  --se-soft: #f6f7f8;
  --se-line: #d9e6ee;
  --se-shadow: 0 22px 55px rgba(20, 33, 61, 0.14);
  --se-radius: 14px;
  --se-container: 1240px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--se-sky) 520px, #ffffff 100%);
  color: var(--se-ink);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.se-container {
  width: min(100% - 32px, var(--se-container));
  margin: 0 auto;
}

.se-topbar {
  background: var(--se-blue-dark);
  color: #fff;
  font-size: 0.92rem;
  border-bottom: 4px solid var(--se-yellow);
}

.se-topbar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.se-topbar__items {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.se-topbar__items span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.se-topbar__items span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--se-yellow);
}

.se-topbar__items a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.46);
}

.se-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(217, 230, 238, 0.86);
  box-shadow: 0 8px 28px rgba(20, 33, 61, 0.06);
  backdrop-filter: blur(14px);
}

.se-header__inner {
  position: relative;
  min-height: 62px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(10px, 1.2vw, 18px);
}

.se-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--se-ink);
  font-weight: 900;
  text-decoration: none;
  flex: 0 0 auto;
}

.se-logo__image {
  width: clamp(104px, 7.2vw, 122px);
  height: auto;
  display: block;
}

.se-mega-nav {
  min-width: 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(41, 67, 136, 0.12);
  border-radius: 8px;
  background: #f7fbfc;
}

.se-route-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 4px;
  min-width: 0;
  width: 100%;
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.se-route-nav__item {
  min-width: 0;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--se-ink);
  line-height: 1.08;
  text-decoration: none;
  box-shadow: none;
}

.se-route-nav__item strong {
  flex: 0 0 auto;
  font-size: 0.84rem;
  font-weight: 950;
  white-space: nowrap;
}

.se-route-nav__item span {
  min-width: 0;
  color: var(--se-muted);
  font-size: 0.68rem;
  font-weight: 850;
  white-space: nowrap;
}

.se-route-nav__item:hover,
.se-route-nav__item:focus,
.se-route-nav__item.is-active {
  background: var(--se-blue);
  color: #fff;
}

.se-route-nav__item:hover span,
.se-route-nav__item:focus span,
.se-route-nav__item.is-active span {
  color: rgba(255, 255, 255, 0.82);
}

.se-support-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding-left: 6px;
  border-left: 1px solid rgba(41, 67, 136, 0.14);
}

.se-support-nav__item {
  min-width: 0;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 7px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--se-blue-dark);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.se-support-nav__item:hover,
.se-support-nav__item:focus,
.se-support-nav__item.is-active {
  border-color: rgba(41, 67, 136, 0.14);
  background: #fff;
  color: var(--se-blue);
}

.se-more-menu {
  position: relative;
  justify-self: end;
}

.se-more-menu summary {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid rgba(41, 67, 136, 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--se-blue-dark);
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  list-style: none;
}

.se-more-menu summary::-webkit-details-marker {
  display: none;
}

.se-more-menu[open] summary {
  background: var(--se-blue);
  color: #fff;
  border-color: var(--se-blue);
}

.se-more-menu__links {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 90;
  min-width: 210px;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--se-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(20, 33, 61, 0.16);
}

.se-more-menu__links a {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--se-sky);
  color: var(--se-ink);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.15;
  text-decoration: none;
}

.se-more-menu__links a:hover,
.se-more-menu__links a:focus {
  background: rgba(41, 67, 136, 0.1);
  color: var(--se-blue-dark);
}

.se-logo__mark {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--se-blue), var(--se-blue-dark));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(19, 146, 236, 0.26);
  overflow: hidden;
}

.se-logo__mark::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 6px;
  height: 5px;
  border-radius: 999px;
  background: var(--se-yellow);
}

.se-logo__text {
  display: grid;
  line-height: 1.05;
}

.se-logo__name {
  color: var(--se-blue-dark);
  font-size: 1.28rem;
}

.se-logo__tag {
  color: var(--se-muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.se-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(0.86rem, 0.76vw, 0.94rem);
  font-weight: 800;
  flex: 1 1 auto;
  min-width: 0;
}

.se-nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1vw, 16px);
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
  width: 100%;
}

.se-nav a {
  color: var(--se-ink);
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
}

.se-nav a:hover,
.se-nav a:focus {
  color: var(--se-blue);
}

.se-mobile-menu {
  display: none;
}

.se-mobile-menu summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid rgba(41, 67, 136, 0.24);
  border-radius: var(--se-radius);
  background: #fff;
  color: var(--se-blue-dark);
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.se-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.se-mobile-menu__links {
  display: grid;
  gap: 8px;
}

.se-mobile-menu__links a {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: calc(var(--se-radius) - 4px);
  background: var(--se-sky);
  color: var(--se-ink);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

.se-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.se-header__actions .se-button {
  min-height: 42px;
  padding: 10px 14px;
  white-space: nowrap;
}

.se-button,
.se-form button,
.se-quote-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--se-blue);
  border-radius: 7px;
  background: var(--se-blue);
  color: #fff;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(31, 50, 102, 0.16);
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.se-button:hover,
.se-form button:hover,
.se-quote-link:hover {
  transform: translateY(-1px);
  background: var(--se-blue-dark);
  border-color: var(--se-blue-dark);
  box-shadow: 0 8px 18px rgba(31, 50, 102, 0.22);
}

.se-button--ghost {
  background: var(--se-paper);
  color: var(--se-ink);
  border: 1px solid rgba(41, 67, 136, 0.26);
  box-shadow: none;
}

.se-button--ghost:hover {
  background: #eef4f8;
  color: var(--se-blue-dark);
  border-color: var(--se-blue);
}

.se-button--gold {
  background: #f2c94c;
  color: var(--se-ink);
  border-color: #d8ac28;
  box-shadow: 0 4px 10px rgba(203, 160, 28, 0.18);
}

.se-button--gold:hover {
  background: #d8ac28;
  color: var(--se-ink);
  border-color: #c4971d;
  box-shadow: 0 8px 18px rgba(203, 160, 28, 0.22);
}

.se-button--ghost-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.se-button--ghost-dark:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.se-quote-link--light {
  background: #fff;
  color: var(--se-blue);
  border: 1px solid rgba(41, 67, 136, 0.2);
}

.se-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(19, 146, 236, 0.12) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(247, 201, 72, 0.2) 100%),
    repeating-linear-gradient(135deg, rgba(19, 146, 236, 0.08) 0 1px, transparent 1px 18px),
    #f7fbff;
  border-bottom: 1px solid var(--se-line);
}

.se-hero::before {
  content: "";
  position: absolute;
  left: -80px;
  right: -80px;
  bottom: -20px;
  height: 72px;
  background: repeating-linear-gradient(135deg, rgba(247, 201, 72, 0.72) 0 24px, rgba(15, 23, 42, 0.12) 24px 48px);
  opacity: 0.42;
  pointer-events: none;
}

.se-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  align-items: center;
  gap: 48px;
  min-height: 720px;
  padding: 58px 0;
}

.se-eyebrow {
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--se-yellow-soft);
  color: var(--se-blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
  border: 1px solid rgba(247, 201, 72, 0.72);
}

.se-hero h1,
.se-page-hero h1 {
  margin: 0;
  max-width: 780px;
  color: var(--se-ink);
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.se-hero__lead,
.se-page-hero__lead {
  max-width: 650px;
  margin: 20px 0 0;
  color: #475569;
  font-size: 1.18rem;
}

.se-hero__actions,
.se-section__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.se-hero__actions {
  align-items: stretch;
}

.se-hero-route {
  min-width: 178px;
  min-height: 58px;
  justify-content: flex-start;
  gap: 10px;
  padding: 11px 14px;
  text-align: left;
}

.se-hero-route__index {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: currentColor;
  font-size: 0.92rem;
  font-weight: 950;
}

.se-hero-route__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.se-hero-route__copy strong,
.se-hero-route__copy small {
  display: block;
}

.se-hero-route__copy strong {
  font-size: 1rem;
  line-height: 1.12;
}

.se-hero-route__copy small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
}

.se-button--gold .se-hero-route__index,
.se-button--gold .se-hero-route__copy small {
  color: var(--se-ink);
}

.se-button--gold .se-hero-route__index {
  background: rgba(255, 255, 255, 0.42);
}

.se-hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.se-proof {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(19, 146, 236, 0.18);
  border-radius: var(--se-radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.se-proof strong {
  display: block;
  color: var(--se-blue-dark);
  font-size: 1.25rem;
}

.se-proof span {
  color: var(--se-muted);
  font-size: 0.9rem;
}

.se-hero__visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.se-hero__image-wrap {
  position: relative;
  width: min(100%, 580px);
  padding: 18px;
  border: 1px solid rgba(19, 146, 236, 0.24);
  border-radius: var(--se-radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.68)),
    var(--se-sky);
  box-shadow: var(--se-shadow);
}

.se-hero__stamp {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--se-blue);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(19, 146, 236, 0.28);
}

.se-hero__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--se-radius);
  object-fit: cover;
}

.se-hero__service-strip {
  position: absolute;
  left: 0;
  bottom: 86px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 360px;
}

.se-hero__service-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--se-blue-dark);
  border: 1px solid rgba(19, 146, 236, 0.18);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.se-hero__badge {
  position: absolute;
  right: 18px;
  bottom: 34px;
  max-width: 220px;
  padding: 16px;
  border-radius: var(--se-radius);
  background: var(--se-ink);
  color: #fff;
  box-shadow: var(--se-shadow);
}

.se-hero__badge strong {
  display: block;
  color: var(--se-yellow);
}

.se-hero--image {
  min-height: min(620px, calc(100vh - 122px));
  background: var(--se-blue-dark);
  color: #fff;
}

.se-hero--image::before {
  display: none;
}

.se-hero--image::after,
.se-page-hero--image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 33, 61, 0.82) 0%, rgba(20, 33, 61, 0.58) 42%, rgba(20, 33, 61, 0.16) 100%),
    linear-gradient(180deg, rgba(20, 33, 61, 0.28), rgba(20, 33, 61, 0.42));
}

.se-hero__bg,
.se-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.se-hero__bg img,
.se-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.se-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: min(620px, calc(100vh - 122px));
  padding: 56px 0 70px;
}

.se-hero--quick,
.se-hero--quick .se-hero__content {
  min-height: min(460px, calc(100vh - 122px));
}

.se-hero--quick .se-hero__content {
  padding: 42px 0 48px;
}

.se-hero--quick h1 {
  max-width: 560px;
}

.se-hero--image h1,
.se-page-hero--image h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(20, 33, 61, 0.34);
}

.se-hero--image .se-hero__lead,
.se-page-hero--image .se-page-hero__lead {
  color: rgba(255, 255, 255, 0.88);
}

.se-hero--image .se-eyebrow,
.se-page-hero--image .se-eyebrow {
  background: rgba(255, 255, 255, 0.92);
  color: var(--se-blue);
  border-color: rgba(255, 255, 255, 0.58);
}

.se-hero--image .se-hero__proof {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 820px;
}

.se-hero--image .se-proof {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.42);
}

.se-section {
  padding: 76px 0;
}

.se-section--compact {
  padding: 48px 0;
}

.se-section--soft {
  background:
    linear-gradient(90deg, rgba(19, 146, 236, 0.04) 1px, transparent 1px),
    var(--se-soft);
  background-size: 36px 36px, auto;
}

.se-section--dark {
  background:
    linear-gradient(135deg, rgba(19, 146, 236, 0.18), transparent 46%),
    var(--se-ink);
  color: #fff;
}

.se-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.se-section__head--compact {
  align-items: center;
  margin-bottom: 24px;
}

.se-section__head--compact h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.se-section__head--compact p:not(.se-eyebrow) {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--se-muted);
}

.se-section__head h2,
.se-page-content h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.se-section__head p {
  max-width: 540px;
  margin: 0;
  color: var(--se-muted);
}

.se-section--dark .se-section__head p {
  color: rgba(255,255,255,0.76);
}

.se-grid {
  display: grid;
  gap: 18px;
}

.se-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.se-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.se-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.se-card,
.se-product,
.se-step,
.se-faq details,
.se-price,
.se-review,
.se-portal-card {
  border: 1px solid var(--se-line);
  border-radius: var(--se-radius);
  background: #fff;
}

.se-card,
.se-step,
.se-review,
.se-portal-card {
  padding: 22px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}

.se-card {
  border-top: 5px solid var(--se-blue);
}

.se-path-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 196px;
  color: var(--se-ink);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.se-path-card:hover,
.se-path-card:focus,
.se-path-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(41, 67, 136, 0.32);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.13);
}

.se-path-card.is-active {
  background: var(--se-mint);
  border-color: rgba(24, 138, 99, 0.32);
}

.se-path-card span {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--se-yellow-soft);
  color: var(--se-blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.se-path-card strong {
  color: var(--se-ink);
}

.se-path-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--se-muted);
}

.se-route-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.se-route-strip__item {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid var(--se-line);
  border-radius: 12px;
  background: #fff;
  color: var(--se-ink);
  text-decoration: none;
}

.se-route-strip__item.is-active,
.se-route-strip__item:hover,
.se-route-strip__item:focus {
  border-color: rgba(41, 67, 136, 0.34);
  background: var(--se-mint);
}

.se-route-strip__item strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.se-route-strip__item span {
  color: var(--se-muted);
  font-size: 0.86rem;
  line-height: 1.25;
}

.se-home-booking {
  padding-top: 34px;
}

.se-simple-flow,
.se-home-booking .se-container {
  max-width: 1180px;
}

.se-simple-flow--shop {
  display: grid;
  gap: 18px;
}

.se-shop-intro {
  display: grid;
  gap: 8px;
  min-width: 0;
  max-width: 760px;
  padding: 8px 0 4px;
}

.se-shop-intro h1,
.se-shop-intro h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--se-ink);
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.se-shop-intro p:not(.se-eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--se-muted);
  font-size: 1.06rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.se-shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: 22px 0 24px;
  border-bottom: 1px solid rgba(217, 230, 238, 0.9);
}

.se-shop-hero--compact,
.se-shop-hero--home {
  padding-top: 6px;
}

.se-shop-hero__copy {
  min-width: 0;
}

.se-shop-hero h1,
.se-shop-hero h2 {
  max-width: 11ch;
  margin: 0;
  color: var(--se-ink);
  font-size: clamp(2.45rem, 5vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.se-shop-hero h2 {
  font-size: clamp(2.1rem, 4vw, 3.55rem);
}

.se-shop-hero__copy p:not(.se-eyebrow) {
  max-width: 600px;
  margin: 14px 0 0;
  color: var(--se-muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.se-shop-hero__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.se-shop-hero__steps li {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(41, 67, 136, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--se-ink);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(20, 33, 61, 0.05);
}

.se-shop-hero__steps span {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--se-yellow-soft);
  color: var(--se-blue-dark);
  font-size: 0.78rem;
}

.se-shop-hero__media {
  position: relative;
  min-height: 250px;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(122, 221, 236, 0.26), rgba(250, 214, 85, 0.2)),
    #f7fbfc;
}

.se-shop-hero__media img {
  width: min(92%, 310px);
  height: auto;
  max-height: 290px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(20, 33, 61, 0.18));
}

.se-shop-hero__media figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--se-blue-dark);
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(20, 33, 61, 0.12);
}

.se-flow-shell__header,
.se-after-form-links {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.se-flow-shell__header {
  margin-bottom: 18px;
}

.se-flow-shell__header h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
  line-height: 1.08;
}

.se-flow-shell__header p:not(.se-eyebrow) {
  max-width: 560px;
  margin: 8px 0 0;
  color: var(--se-muted);
}

.se-flow-shell__links,
.se-after-form-links {
  flex-wrap: wrap;
}

.se-flow-shell__links {
  display: flex;
  gap: 10px;
}

.se-flow-shell__links a,
.se-after-form-links a {
  color: var(--se-blue);
  font-weight: 900;
  text-decoration: none;
}

.se-after-form-links {
  margin-top: 14px;
  color: var(--se-muted);
  font-weight: 800;
}

.se-section__head--tight {
  margin-bottom: 18px;
}

.se-home-focus {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--se-line);
  border-radius: var(--se-radius);
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}

.se-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.se-mini-grid--intro {
  margin-bottom: 22px;
}

.se-mini-grid div,
.se-service-tile {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--se-line);
  border-radius: var(--se-radius);
  background: #fff;
}

.se-mini-grid strong,
.se-service-tile strong {
  color: var(--se-ink);
  line-height: 1.2;
}

.se-mini-grid span,
.se-service-tile em {
  color: var(--se-muted);
  font-style: normal;
  line-height: 1.45;
}

.se-service-tile {
  min-height: 166px;
  color: var(--se-ink);
  text-decoration: none;
  border-top: 5px solid var(--se-blue);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.se-service-tile:nth-child(2) {
  border-top-color: var(--se-green);
}

.se-service-tile:hover,
.se-service-tile:focus {
  transform: translateY(-2px);
  border-color: rgba(41, 67, 136, 0.32);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.13);
}

.se-service-tile span {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--se-yellow-soft);
  color: var(--se-blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.se-route-guide {
  margin: 0 0 24px;
}

.se-route-guide .se-card {
  border-top-color: var(--se-green);
}

.se-route-guide .se-card:nth-child(2) {
  border-top-color: var(--se-blue);
}

.se-route-guide .se-card:nth-child(3) {
  border-top-color: var(--se-yellow);
}

.se-route-guide .se-card.is-active {
  background: var(--se-mint);
  border-color: rgba(24, 138, 99, 0.32);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.11);
}

.se-route-guide ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--se-muted);
}

.se-step {
  border-top: 5px solid var(--se-yellow);
}

.se-portal-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  text-decoration: none;
  color: var(--se-ink);
  border-top: 5px solid var(--se-green);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.se-portal-card:hover,
.se-portal-card:focus {
  transform: translateY(-2px);
  border-color: rgba(22, 168, 102, 0.42);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.13);
}

.se-portal-card span {
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--se-yellow-soft);
  color: var(--se-blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.se-portal-card strong {
  font-size: 1.14rem;
  line-height: 1.22;
}

.se-portal-card em {
  color: var(--se-muted);
  font-style: normal;
}

.se-card h3,
.se-step h3,
.se-product h3,
.se-price h3,
.se-review h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.se-card p,
.se-step p,
.se-product p,
.se-price p,
.se-review p {
  margin: 0;
  color: var(--se-muted);
}

.se-product {
  overflow: hidden;
}

.se-product__media {
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.62), rgba(233,246,255,0.86)),
    repeating-linear-gradient(135deg, rgba(19, 146, 236, 0.09) 0 1px, transparent 1px 16px);
}

.se-product__media img {
  width: 100%;
  max-height: 230px;
  object-fit: contain;
}

.se-product__image {
  aspect-ratio: 1 / 1;
}

.se-product-placeholder {
  width: 100%;
  min-height: 230px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px;
  color: var(--se-blue);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(122, 221, 236, 0.18), rgba(255, 255, 255, 0.82)),
    var(--se-sky);
}

.se-product-placeholder__mark {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.se-product-placeholder strong {
  color: var(--se-ink);
  font-size: 1.05rem;
}

.se-product-placeholder span {
  color: var(--se-muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.se-product__body {
  padding: 22px;
}

.se-product ul,
.se-price ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--se-muted);
}

.se-product li,
.se-price li {
  padding: 4px 0 4px 20px;
  position: relative;
}

.se-product li::before,
.se-price li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.92em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--se-blue);
}

.se-product-catalog {
  display: grid;
  gap: 54px;
}

.se-product-catalog__section {
  scroll-margin-top: 120px;
}

.se-product-catalog__section .se-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.se-product-catalog__section .se-product {
  display: grid;
  grid-template-rows: 250px minmax(0, 1fr);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 33, 61, 0.08);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.se-product-catalog__section .se-product:hover,
.se-product-catalog__section .se-product:focus-within {
  border-color: rgba(41, 67, 136, 0.34);
  box-shadow: 0 20px 46px rgba(20, 33, 61, 0.13);
  transform: translateY(-2px);
}

.se-product-catalog__section .se-product__media {
  min-height: 0;
  padding: 18px;
  border-bottom: 1px solid var(--se-line);
}

.se-product-catalog__section .se-product__media img {
  width: 100%;
  height: 214px;
  max-height: none;
  object-fit: contain;
}

.se-product-catalog__section .se-product__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  padding: 22px;
}

.se-product-catalog__section .se-product__body > p:not(.se-card-label) {
  min-height: 3.1em;
}

.se-product-catalog__section .se-product ul {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
}

.se-product-catalog__section .se-section__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.se-product-catalog__section .se-quote-link {
  min-width: 0;
  min-height: 46px;
  padding-inline: 12px;
  text-align: center;
}

.se-product-catalog__next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 30px 0 4px;
  border-top: 1px solid var(--se-line);
}

.se-product-catalog__next h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.se-product-catalog__next p:not(.se-eyebrow) {
  max-width: 700px;
  margin: 10px 0 0;
}

.se-product-catalog__next .se-section__actions {
  flex-wrap: nowrap;
  margin-top: 0;
}

@media (max-width: 980px) {
  .se-product-catalog__section .se-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .se-product-catalog__next {
    grid-template-columns: 1fr;
  }

  .se-product-catalog__next .se-section__actions {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .se-product-catalog {
    gap: 38px;
  }

  .se-product-catalog__section .se-grid--3 {
    grid-template-columns: 1fr;
  }

  .se-product-catalog__section .se-product {
    grid-template-rows: 220px minmax(0, 1fr);
  }

  .se-product-catalog__section .se-product__media img {
    height: 188px;
  }

  .se-product-catalog__section .se-product__body > p:not(.se-card-label) {
    min-height: 0;
  }

  .se-product-catalog__section .se-section__actions,
  .se-product-catalog__next .se-section__actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .se-product-catalog__next {
    gap: 18px;
    padding-top: 24px;
  }
}

.se-calculator {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 26px;
  align-items: stretch;
}

.se-calculator__panel,
.se-form-panel {
  padding: 20px;
  border: 1px solid var(--se-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(30, 39, 35, 0.06);
}

.se-calculator__result {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: 30px;
  border-radius: var(--se-radius);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.08), transparent),
    linear-gradient(135deg, var(--se-blue-dark), var(--se-blue));
  color: #fff;
}

.se-calculator__number {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  font-weight: 900;
}

.se-calculator__result p {
  color: rgba(255,255,255,0.86);
}

.se-field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.se-field label {
  color: var(--se-ink);
  font-weight: 800;
  font-size: 0.94rem;
}

.se-field input,
.se-field select,
.se-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 11px;
  border: 1px solid #cbd8d0;
  border-radius: var(--se-radius);
  background: #fff;
  color: var(--se-ink);
  font: inherit;
}

.se-field textarea {
  min-height: 112px;
  resize: vertical;
}

.se-field input[aria-invalid="true"],
.se-field select[aria-invalid="true"],
.se-field textarea[aria-invalid="true"] {
  border-color: var(--se-coral);
  box-shadow: 0 0 0 3px rgba(239, 111, 79, 0.16);
}

.se-screen-reader-text,
.se-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.se-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 12px;
}

.se-form-grid .se-field--full {
  grid-column: 1 / -1;
}

.se-address-check {
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--se-line);
}

.se-address-check__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.se-address-check__heading h3 {
  margin: 0 0 4px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.se-address-check__heading p {
  max-width: 680px;
  margin: 0;
  color: var(--se-muted);
  font-size: 0.92rem;
}

.se-address-check__badge {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid #cbd9e4;
  border-radius: 6px;
  background: #f4f8fb;
  color: var(--se-blue-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

.se-address-check__inputs {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(110px, 0.6fr) minmax(120px, 0.65fr) auto;
  gap: 12px;
  align-items: start;
}

.se-address-check__inputs .se-field,
.se-address-check__resolved .se-field {
  margin-bottom: 0;
}

.se-address-check__inputs label span {
  color: var(--se-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.se-address-check__button {
  align-self: end;
  min-height: 44px;
  margin: 0;
  white-space: nowrap;
}

.se-address-check__button[aria-busy="true"] {
  cursor: wait;
  opacity: 0.72;
}

.se-address-check__resolved {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.se-address-check__resolved input[readonly] {
  background: #f4f7f8;
  color: #425468;
  cursor: default;
}

.se-address-check.is-verified .se-address-check__resolved input[readonly] {
  border-color: #94c6ac;
  background: #f3fbf6;
  color: var(--se-ink);
}

.se-address-check__status {
  min-height: 22px;
  margin: 9px 0 0;
  color: var(--se-muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.se-address-check__status::before {
  display: inline-block;
  width: 18px;
  content: "";
}

.se-address-check__status.is-checking {
  color: var(--se-blue-dark);
}

.se-address-check__status.is-checking::before {
  content: "...";
}

.se-address-check__status.is-success {
  color: #176b43;
}

.se-address-check__status.is-success::before {
  content: "\2713";
}

.se-address-check__status.is-error {
  color: #a33a2b;
}

.se-address-check__status.is-error::before {
  content: "!";
}

.se-field__label {
  color: var(--se-ink);
  font-weight: 800;
  font-size: 0.94rem;
}

.se-direct-products {
  display: grid;
  gap: 10px;
}

.se-direct-products__list {
  display: grid;
  gap: 10px;
}

.se-direct-product-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(96px, 140px) auto;
  gap: 10px;
  align-items: end;
  padding: 10px;
  border: 1px solid var(--se-line);
  border-radius: var(--se-radius);
  background: #fff;
}

.se-direct-product-row .se-field {
  margin-bottom: 0;
}

.se-direct-product-row__remove {
  min-height: 46px;
  padding-inline: 13px;
}

.se-direct-products__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.se-direct-products__summary {
  margin: 0;
  color: var(--se-muted);
  font-weight: 800;
}

.se-direct-order-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--se-muted);
  font-weight: 800;
}

.se-shop-form {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--se-line);
  border-top: 4px solid var(--se-blue);
  border-radius: 8px;
  background: #f7f9fb;
  box-shadow: 0 16px 34px rgba(20, 33, 61, 0.07);
}

.se-shop-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--se-line);
  border-radius: 8px;
  background: #fff;
}

.se-shop-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

.se-shop-head p:not(.se-eyebrow) {
  max-width: 700px;
  margin: 6px 0 0;
  color: var(--se-muted);
}

.se-shop-head__help {
  flex: 0 0 auto;
  color: var(--se-blue);
  font-weight: 900;
  text-decoration: none;
}

.se-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--se-line);
}

.se-shop-toolbar div {
  display: grid;
  gap: 3px;
}

.se-shop-toolbar strong {
  color: var(--se-ink);
  font-size: 1.2rem;
  line-height: 1.15;
}

.se-shop-toolbar span {
  color: var(--se-muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.se-shop-toolbar a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(41, 67, 136, 0.18);
  border-radius: 6px;
  background: #fff;
  color: var(--se-blue);
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.1;
  text-decoration: none;
}

.se-shop-order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 330px);
  gap: 18px;
  align-items: start;
}

.se-shop-catalog {
  min-width: 0;
}

.se-shop-catalog__head {
  margin-bottom: 12px;
}

.se-shop-catalog__head > div,
.se-shop-summary-bar__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.se-shop-catalog__head strong,
.se-shop-summary-bar__head strong {
  display: block;
  color: var(--se-ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.se-shop-catalog__head span:not(.se-shop-step),
.se-shop-summary-bar__head span:not(.se-shop-step) {
  display: block;
  margin-top: 2px;
  color: var(--se-muted);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.35;
}

.se-shop-step {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--se-blue-dark);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 950;
}

.se-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.se-shop-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid var(--se-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.07);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
  will-change: transform;
}

.se-shop-card.is-selected {
  border-color: rgba(41, 67, 136, 0.58);
  box-shadow: 0 12px 24px rgba(41, 67, 136, 0.12);
}

.se-shop-card::after,
.se-shop-card::before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 3;
}

.se-shop-card::after {
  z-index: 3;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--se-green);
  box-shadow: 0 10px 20px rgba(24, 138, 99, 0.24);
  transform: scale(0.78);
}

.se-shop-card::before {
  z-index: 4;
  top: 21px;
  right: 21px;
  width: 12px;
  height: 6px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg) scale(0.78);
}

.se-shop-card.is-selected::after {
  opacity: 1;
  transform: scale(1);
}

.se-shop-card.is-selected::before {
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}

.se-shop-card.is-quantity-changing {
  animation: se-shop-card-bump 0.34s ease;
}

@keyframes se-shop-card-bump {
  0% {
    transform: translateY(-2px) scale(1);
  }

  45% {
    transform: translateY(-3px) scale(1.01);
  }

  100% {
    transform: translateY(-2px) scale(1);
  }
}

.se-shop-card--quote {
  background: linear-gradient(180deg, #fff, #fbf8ec);
}

.se-shop-card__media {
  height: 190px;
  padding: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(250, 214, 85, 0.2), rgba(122, 221, 236, 0.2)),
    #f7fbfc;
}

.se-shop-card__media > img,
.se-shop-card__image {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.se-shop-card__media .se-product-placeholder {
  min-height: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
}

.se-shop-card__body {
  min-width: 0;
  padding: 15px 16px 8px;
}

.se-shop-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--se-blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.se-shop-card__topline span,
.se-shop-card__topline em {
  min-width: 0;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--se-yellow-soft);
  color: var(--se-blue-dark);
  font-style: normal;
  line-height: 1.15;
}

.se-shop-card h3 {
  margin: 0;
  color: var(--se-ink);
  font-size: 1.12rem;
  line-height: 1.16;
}

.se-shop-card__body p {
  margin: 8px 0 0;
  color: var(--se-muted);
  line-height: 1.4;
}

.se-shop-card__buy {
  display: grid;
  gap: 12px;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--se-line);
}

.se-shop-card__buy strong {
  display: block;
  color: var(--se-ink);
  font-size: 1rem;
  line-height: 1.2;
}

.se-shop-card__buy span {
  display: block;
  margin-top: 3px;
  color: var(--se-muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.se-shop-card__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: end;
}

.se-shop-card__control {
  display: grid;
  gap: 6px;
}

.se-shop-card__controls label {
  grid-column: 1 / -1;
  color: var(--se-muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.se-quantity-stepper {
  display: grid;
  grid-template-columns: 44px minmax(52px, 1fr) 44px;
  width: 100%;
  min-height: 42px;
}

.se-quantity-stepper button,
.se-quantity-stepper input {
  min-width: 0;
  border: 1px solid var(--se-line);
  background: #fff;
  color: var(--se-ink);
  font: inherit;
  font-weight: 900;
}

.se-product-days-stepper {
  display: grid;
  grid-template-columns: 42px 52px minmax(0, 1fr) 42px;
  min-height: 42px;
  overflow: hidden;
  border: 1px solid var(--se-line);
  border-radius: 8px;
  background: #fff;
}

.se-product-days-stepper button,
.se-product-days-stepper input {
  min-width: 0;
  min-height: 42px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--se-ink);
  font: inherit;
  font-weight: 900;
  text-align: center;
}

.se-product-days-stepper button {
  cursor: pointer;
  font-size: 1.08rem;
  touch-action: manipulation;
}

.se-product-days-stepper button:first-child {
  border-right: 1px solid var(--se-line);
}

.se-product-days-stepper button:last-child {
  border-left: 1px solid var(--se-line);
}

.se-product-days-stepper button:hover,
.se-product-days-stepper button:focus-visible {
  background: #eaf2fb;
  color: var(--se-blue-dark);
  outline: none;
}

.se-product-days-stepper input {
  appearance: textfield;
  padding: 0 3px;
}

.se-product-days-stepper input::-webkit-inner-spin-button,
.se-product-days-stepper input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.se-product-days-stepper > span {
  display: flex;
  align-items: center;
  margin: 0;
  color: var(--se-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.se-quantity-stepper button {
  cursor: pointer;
  touch-action: manipulation;
  transition:
    background-color 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    color 0.16s ease,
    transform 0.16s ease;
}

.se-quantity-stepper button:hover,
.se-quantity-stepper button:focus-visible {
  border-color: rgba(41, 67, 136, 0.58);
  background: var(--se-blue-dark);
  color: #fff;
  box-shadow: 0 8px 16px rgba(41, 67, 136, 0.14);
}

.se-quantity-stepper button:active {
  transform: scale(0.94);
}

.se-quantity-stepper button:first-child {
  border-radius: 8px 0 0 8px;
}

.se-quantity-stepper button:last-child {
  border-radius: 0 8px 8px 0;
}

.se-quantity-stepper input {
  border-left: 0;
  border-right: 0;
  text-align: center;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.se-shop-card.is-quantity-changing .se-quantity-stepper input {
  border-color: rgba(203, 160, 28, 0.78);
  box-shadow: inset 0 0 0 2px rgba(250, 214, 85, 0.28);
}

.se-shop-card__add {
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--se-blue-dark);
  border-radius: 6px;
  background: var(--se-blue-dark);
  color: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.se-shop-card__add.is-added {
  background: var(--se-blue-dark);
}

.se-shop-card__add:hover,
.se-shop-card__add:focus-visible {
  border-color: var(--se-blue);
  background: var(--se-blue);
  box-shadow: 0 5px 12px rgba(41, 67, 136, 0.2);
}

.se-shop-summary-bar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(41, 67, 136, 0.24);
  border-top: 4px solid var(--se-yellow);
  border-radius: 8px;
  background: #fff;
  color: var(--se-ink);
  box-shadow: 0 12px 28px rgba(20, 33, 61, 0.1);
}

.se-shop-summary-bar.is-empty {
  border-color: var(--se-line);
  border-top-color: var(--se-yellow);
}

.se-shop-business-link {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(41, 67, 136, 0.2);
  border-radius: 7px;
  background: #f5f8fc;
  color: var(--se-blue-dark);
  text-decoration: none;
  transition: border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.se-shop-business-link:hover,
.se-shop-business-link:focus-visible {
  border-color: rgba(41, 67, 136, 0.48);
  background: #edf3f9;
  box-shadow: 0 5px 14px rgba(31, 50, 102, 0.1);
}

.se-shop-business-link__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--se-blue-dark);
  color: #fff;
}

.se-shop-business-link__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.se-shop-business-link__copy {
  min-width: 0;
}

.se-shop-business-link__copy strong,
.se-shop-business-link__copy small {
  display: block;
  letter-spacing: 0;
}

.se-shop-business-link__copy strong {
  font-size: 0.9rem;
  line-height: 1.2;
}

.se-shop-business-link__copy small {
  margin-top: 2px;
  color: var(--se-muted);
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1.25;
}

.se-shop-business-link__arrow {
  color: var(--se-blue);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.se-shop-summary-empty {
  margin: 0;
  padding: 12px;
  border: 1px dashed rgba(41, 67, 136, 0.25);
  border-radius: 6px;
  background: #f7fafc;
  color: var(--se-muted);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.4;
}

.se-shop-summary-empty[hidden] {
  display: none;
}

.se-shop-duration {
  display: grid;
  gap: 9px;
  padding: 13px;
  border: 1px solid var(--se-line);
  border-radius: 7px;
  background: #f7fafc;
}

.se-shop-duration__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.se-shop-duration__head label {
  color: var(--se-ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.se-shop-duration__head span {
  color: var(--se-muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.se-shop-duration__control {
  display: grid;
  grid-template-columns: 40px 54px minmax(0, 1fr) 40px;
  align-items: stretch;
  min-height: 42px;
  border: 1px solid rgba(41, 67, 136, 0.28);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.se-shop-duration__control button,
.se-shop-duration__control input {
  min-width: 0;
  min-height: 42px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--se-blue-dark);
  font: inherit;
  font-weight: 900;
  text-align: center;
}

.se-shop-duration__control button {
  cursor: pointer;
  font-size: 1.15rem;
}

.se-shop-duration__control button:first-child {
  border-right: 1px solid var(--se-line);
}

.se-shop-duration__control button:last-child {
  border-left: 1px solid var(--se-line);
}

.se-shop-duration__control button:hover,
.se-shop-duration__control button:focus-visible {
  background: #eaf2fb;
}

.se-shop-duration__control input {
  appearance: textfield;
  padding: 0 4px;
}

.se-shop-duration__control input::-webkit-inner-spin-button,
.se-shop-duration__control input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.se-shop-duration__control > span {
  display: flex;
  align-items: center;
  color: var(--se-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.se-shop-duration p {
  margin: 0;
  color: var(--se-muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.se-shop-summary-items {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--se-line);
  list-style: none;
}

.se-shop-summary-items li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
  border-bottom: 1px solid var(--se-line);
  color: var(--se-ink);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.3;
}

.se-shop-summary-items em {
  color: var(--se-muted);
  font-style: normal;
  font-weight: 800;
}

.se-shop-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 2px;
  border-top: 2px solid var(--se-blue-dark);
}

.se-shop-total[hidden] {
  display: none;
}

.se-shop-total span {
  color: var(--se-muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.se-shop-total strong {
  color: var(--se-blue-dark);
  font-size: 1rem;
  font-weight: 950;
  text-align: right;
}

.se-shop-checkout {
  display: grid;
  gap: 8px;
}

.se-shop-checkout button {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid var(--se-blue-dark);
  border-radius: 6px;
  background: var(--se-blue-dark);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(41, 67, 136, 0.2);
  transition: background-color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.se-shop-checkout button:hover:not(:disabled),
.se-shop-checkout button:focus-visible:not(:disabled) {
  border-color: var(--se-blue);
  background: var(--se-blue);
  box-shadow: 0 8px 18px rgba(41, 67, 136, 0.24);
}

.se-shop-checkout button:disabled {
  border-color: #cbd3df;
  background: #e4e8ee;
  color: #68758a;
  cursor: not-allowed;
  box-shadow: none;
}

.se-shop-checkout p {
  margin: 0;
  color: var(--se-muted);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
}

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

.se-step-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.se-step-nav li {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 6px 8px;
  border: 1px solid var(--se-line);
  border-radius: var(--se-radius);
  background: var(--se-soft);
  color: var(--se-muted);
  font-weight: 900;
  font-size: 0.9rem;
}

.se-step-nav li.is-active {
  background: var(--se-sky);
  color: var(--se-blue-dark);
  border-color: rgba(19, 146, 236, 0.28);
}

.se-form-step[hidden] {
  display: none;
}

.se-form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.se-notice {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: var(--se-radius);
  background: var(--se-sky);
  color: var(--se-blue-dark);
  font-weight: 800;
}

.se-coverage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 34px;
}

.se-coverage__map {
  display: grid;
  place-items: center;
  padding: 22px;
  border-radius: var(--se-radius);
  background:
    linear-gradient(180deg, #fff, var(--se-sky));
  border: 1px solid var(--se-line);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.se-coverage__map img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--se-radius) - 4px);
}

.se-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.se-media-grid--feature {
  align-items: stretch;
}

.se-media-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--se-line);
  border-radius: var(--se-radius);
  background: #fff;
  box-shadow: 0 14px 32px rgba(20, 33, 61, 0.07);
}

.se-media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.se-media-card--contain img {
  aspect-ratio: 1 / 1;
  padding: 22px;
  object-fit: contain;
  background: var(--se-sky);
}

.se-media-card figcaption {
  padding: 14px 16px;
  color: var(--se-ink);
  font-weight: 900;
}

.se-sidebar__media {
  margin: 0 0 16px;
}

.se-sidebar__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--se-radius) - 4px);
}

.se-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.se-city-list a,
.se-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(19, 146, 236, 0.2);
  color: var(--se-blue-dark);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.se-faq {
  display: grid;
  gap: 10px;
}

.se-faq details {
  padding: 18px 20px;
}

.se-faq summary {
  cursor: pointer;
  font-weight: 900;
}

.se-faq p {
  margin: 10px 0 0;
  color: var(--se-muted);
}

.se-cta-band {
  padding: 38px;
  border-radius: var(--se-radius);
  background:
    repeating-linear-gradient(135deg, rgba(247, 201, 72, 0.2) 0 18px, transparent 18px 36px),
    linear-gradient(135deg, var(--se-blue-dark), var(--se-blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.se-cta-band h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.se-cta-band p {
  max-width: 620px;
  margin: 10px 0 0;
  color: rgba(255,255,255,0.84);
}

.se-page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 44px;
  background: linear-gradient(135deg, #f6fbf8, #ffffff);
  border-bottom: 1px solid var(--se-line);
}

.se-page-hero > .se-container {
  position: relative;
  z-index: 1;
}

.se-page-hero--image {
  min-height: 430px;
  display: grid;
  align-items: end;
  background: var(--se-blue-dark);
}

.se-page-content {
  padding: 54px 0 82px;
}

.se-page-content p,
.se-page-content li {
  color: var(--se-muted);
}

.se-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.se-contact-form-wrap {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--se-line);
  border-radius: 8px;
  background: var(--se-paper);
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.07);
}

.se-contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.se-contact-form > label {
  display: grid;
  gap: 7px;
  min-width: 0;
  margin: 0;
  color: var(--se-ink);
  font-weight: 800;
}

.se-contact-form .is-wide {
  grid-column: 1 / -1;
}

.se-contact-form input,
.se-contact-form select,
.se-contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #b9c8d3;
  border-radius: 6px;
  background: #fff;
  color: var(--se-ink);
}

.se-contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.se-contact-consent {
  display: flex !important;
  grid-template-columns: none !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 600 !important;
}

.se-contact-consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin: 1px 0 0;
}

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

.se-contact-details a:not(.se-button) {
  color: var(--se-blue-dark);
  font-weight: 800;
}

.se-sidebar {
  position: sticky;
  top: 106px;
  padding: 22px;
  border-radius: var(--se-radius);
  background: var(--se-soft);
  border: 1px solid var(--se-line);
}

.se-legal-note {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(203, 160, 28, 0.5);
  border-radius: var(--se-radius);
  background: var(--se-yellow-soft);
}

.se-legal-note strong {
  color: var(--se-blue-dark);
}

.se-legal-note span {
  color: #5f5135;
}

.se-footer {
  background: var(--se-blue);
  color: #fff;
  padding: 56px 0 26px;
}

.se-footer__logo {
  width: min(220px, 100%);
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.se-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 28px;
}

.se-footer h2,
.se-footer h3 {
  margin: 0 0 12px;
}

.se-footer p,
.se-footer a {
  color: rgba(255,255,255,0.76);
}

.se-footer a {
  display: block;
  margin: 7px 0;
  text-decoration: none;
}

.se-footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.se-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
}

.se-footer__bottom a {
  display: inline;
  margin: 0;
  color: rgba(255,255,255,0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.se-skip {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 100;
  padding: 10px 12px;
  background: #fff;
  color: var(--se-ink);
}

.se-skip:focus {
  left: 10px;
}

@media (max-width: 980px) {
  .se-topbar__inner,
  .se-section__head,
  .se-cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .se-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    padding: 10px 0;
  }

  .se-route-nav {
    display: none;
  }

  .se-mega-nav {
    display: none;
  }

  .se-more-menu {
    display: none;
  }

  .se-mobile-menu {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 80;
    display: block;
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
    transform: translateY(-50%);
  }

  .se-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .se-header__actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .se-hero__inner,
  .se-calculator,
  .se-coverage,
  .se-page-layout {
    grid-template-columns: 1fr;
  }

  .se-contact-form {
    grid-template-columns: 1fr;
  }

  .se-contact-form .is-wide {
    grid-column: auto;
  }

  .se-hero__inner {
    min-height: auto;
  }

  .se-hero__visual {
    min-height: 420px;
  }

	  .se-grid--3,
	  .se-grid--2,
	  .se-grid--4,
	  .se-mini-grid,
	  .se-media-grid,
	  .se-footer__grid {
	    grid-template-columns: repeat(2, 1fr);
	  }

	  .se-hero--image .se-hero__proof {
	    grid-template-columns: repeat(2, 1fr);
	  }

  .se-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .se-container {
    width: min(100% - 22px, var(--se-container));
  }

  .se-topbar__items {
    gap: 8px;
  }

  .se-header__inner {
    min-height: 68px;
  }

	  .se-hero__inner,
	  .se-hero__content,
	  .se-section {
	    padding: 44px 0;
	  }

  .se-hero h1,
  .se-page-hero h1 {
    font-size: 2.42rem;
  }

  .se-hero__lead,
  .se-page-hero__lead {
    font-size: 1rem;
  }

	  .se-hero__proof,
	  .se-grid--2,
	  .se-grid--3,
	  .se-grid--4,
	  .se-mini-grid,
	  .se-media-grid,
	  .se-form-grid,
	  .se-step-nav,
	  .se-footer__grid {
	    grid-template-columns: 1fr;
	  }

	  .se-hero--image,
	  .se-hero__content {
	    min-height: 560px;
	  }

  .se-hero__visual {
    min-height: 320px;
  }

  .se-hero__badge {
    position: static;
    max-width: none;
    margin-top: -18px;
  }

  .se-hero__service-strip {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .se-product__media {
    min-height: 190px;
  }

  .se-cta-band {
    padding: 24px;
  }
}

.se-hero--booking .se-hero__inner {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  min-height: 610px;
}

.se-hero--booking .se-hero__visual {
  min-height: 420px;
  align-content: center;
  justify-items: center;
}

.se-hero--booking .se-hero__image {
  width: min(100%, 430px);
  border: 1px solid rgba(19, 146, 236, 0.24);
  box-shadow: var(--se-shadow);
}

.se-section--flush {
  padding-top: 0;
}

.se-card-label {
  width: fit-content;
  margin: 0 0 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--se-yellow-soft);
  color: var(--se-blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.se-booking-flow {
  margin-top: -62px;
  position: relative;
  z-index: 5;
}

.se-page-content .se-booking-flow {
  margin-top: 0;
}

.se-section--flush .se-booking-flow {
  margin-top: -62px;
}

.se-booking-flow__shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  min-height: 630px;
  border: 1px solid rgba(19, 146, 236, 0.2);
  border-radius: var(--se-radius);
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}

.se-booking-flow__rail {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(19, 146, 236, 0.14), rgba(22, 168, 102, 0.1)),
    #f7fbff;
  border-right: 1px solid var(--se-line);
}

.se-booking-flow__kicker {
  margin: 0 0 16px;
  color: var(--se-blue-dark);
  font-weight: 900;
}

.se-booking-flow__main {
  padding: 30px;
}

.se-progress {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: se-step;
}

.se-progress li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: var(--se-radius);
  color: #496174;
  font-weight: 850;
}

.se-progress li::before {
  counter-increment: se-step;
  content: counter(se-step);
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--se-line);
  color: var(--se-blue-dark);
  font-size: 0.78rem;
}

.se-progress li.is-active {
  background: #fff;
  color: var(--se-ink);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.se-progress li.is-complete::before {
  content: "";
  background:
    linear-gradient(135deg, transparent 42%, #fff 42% 56%, transparent 56%),
    linear-gradient(45deg, transparent 48%, #fff 48% 60%, transparent 60%),
    var(--se-green);
  border-color: var(--se-green);
}

.se-flow-step {
  min-height: 470px;
}

.se-flow-step[hidden] {
  display: none;
}

.se-flow-step h2 {
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1.1;
}

.se-flow-step > p {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--se-muted);
}

.se-flow-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 18px;
  margin-top: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), #fff 36%);
}

.se-flow-actions__hint {
  flex: 1 0 100%;
  margin: 0;
  color: var(--se-muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.se-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cbd8d0;
  border-radius: var(--se-radius);
  background: #fff;
  color: var(--se-ink);
  font-weight: 760;
}

.se-check--stacked {
  min-height: 64px;
}

.se-check__copy {
  display: grid;
  gap: 2px;
  line-height: 1.35;
}

.se-check__copy small {
  color: var(--se-muted);
  font-weight: 500;
}

.se-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.se-service-note {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(24, 138, 99, 0.22);
  border-left: 5px solid var(--se-green);
  border-radius: var(--se-radius);
  background: var(--se-mint);
}

.se-service-note strong {
  color: var(--se-ink);
  font-weight: 900;
}

.se-service-note span {
  color: #31556e;
}

.se-field small {
  color: var(--se-muted);
  font-size: 0.84rem;
}

.se-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.se-option-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  min-height: 78px;
  padding: 16px;
  border: 1px solid var(--se-line);
  border-radius: var(--se-radius);
  background: var(--se-soft);
  font-weight: 900;
  cursor: pointer;
}

.se-option-card:has(input:checked) {
  border-color: rgba(19, 146, 236, 0.42);
  background: var(--se-sky);
  color: var(--se-blue-dark);
}

.se-service-status {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--se-line);
  border-left: 5px solid var(--se-yellow);
  border-radius: var(--se-radius);
  background: #fff;
}

.se-service-status strong {
  color: var(--se-ink);
}

.se-service-status span {
  color: var(--se-muted);
}

.se-service-status__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.se-service-status__actions .se-button {
  min-height: 44px;
  padding: 12px 16px;
}

.se-service-status--standard {
  border-left-color: var(--se-green);
  background: var(--se-mint);
}

.se-service-status--unavailable,
.se-service-status--invalid {
  border-left-color: var(--se-coral);
}

.se-advice-result,
.se-price-breakdown,
.se-flow-summary {
  display: grid;
  gap: 12px;
}

.se-advice-result__intro,
.se-price-breakdown__status {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: var(--se-radius);
  background: var(--se-sky);
  color: var(--se-blue-dark);
}

.se-advice-result__intro span,
.se-price-breakdown__status span {
  color: #31556e;
}

.se-advice-service {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(49, 85, 110, 0.18);
}

.se-advice-service em {
  color: var(--se-blue-dark);
  font-style: normal;
  font-weight: 750;
}

.se-advice-product {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 110px;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--se-line);
  border-radius: var(--se-radius);
  background: #fff;
}

.se-advice-product__media {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: calc(var(--se-radius) - 4px);
  background: var(--se-sky);
  border: 1px solid var(--se-line);
}

.se-advice-product__media img {
  width: 100%;
  height: 100%;
  padding: 7px;
  object-fit: contain;
}

.se-advice-product__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--se-blue);
  font-weight: 900;
}

.se-advice-product span {
  display: grid;
}

.se-advice-product em {
  color: var(--se-muted);
  font-style: normal;
  font-size: 0.9rem;
}

.se-advice-product input {
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid #cbd8d0;
  border-radius: var(--se-radius);
  font: inherit;
}

.se-price-breakdown dl,
.se-specs,
.se-summary-grid {
  display: grid;
  gap: 8px;
  margin: 0;
}

.se-price-breakdown dl div,
.se-specs div,
.se-summary-grid div {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(0, 1fr);
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--se-line);
  border-radius: var(--se-radius);
  background: #fff;
}

.se-price-breakdown dt,
.se-specs dt,
.se-summary-grid strong {
  color: var(--se-ink);
  font-weight: 900;
}

.se-price-breakdown dd,
.se-specs dd,
.se-summary-grid span {
  margin: 0;
  color: var(--se-muted);
}

.se-service-check {
  margin-top: 20px;
  padding: 22px;
  border: 1px solid var(--se-line);
  border-radius: var(--se-radius);
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}

.se-proof-card {
  padding: 22px;
  border: 1px dashed rgba(19, 146, 236, 0.36);
  border-radius: var(--se-radius);
  background: #fff;
}

.se-proof-card h3 {
  margin: 0 0 8px;
}

.se-proof-card p {
  margin: 0;
  color: var(--se-muted);
}

.se-section-slim {
  margin-top: 42px;
}

.se-spacer {
  height: 38px;
}

.se-product-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 42px;
}

.se-product-info-page {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.se-product-info-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  padding: clamp(22px, 3vw, 38px) 0 clamp(48px, 7vw, 88px);
}

.se-product-info-hero__copy {
  position: sticky;
  top: 110px;
  padding-top: clamp(8px, 2vw, 28px);
}

.se-product-info-hero__copy h1 {
  max-width: 12ch;
  margin: 16px 0 18px;
  font-size: 4.5rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.se-product-info-hero__lead {
  max-width: 38rem;
  margin: 0;
  color: var(--se-muted);
  font-size: 1.2rem;
  line-height: 1.65;
}

.se-product-info-price {
  display: grid;
  gap: 6px;
  margin: 28px 0 24px;
  padding: 18px 0;
  border-top: 1px solid var(--se-line);
  border-bottom: 1px solid var(--se-line);
}

.se-product-info-price strong {
  color: var(--se-ink);
  font-size: 1.12rem;
}

.se-product-info-price span {
  color: var(--se-muted);
  line-height: 1.55;
}

.se-product-info-order {
  min-width: 180px;
  justify-content: center;
}

.se-product-info-section {
  padding: clamp(42px, 6vw, 72px) 0;
  border-top: 1px solid var(--se-line);
}

.se-product-info-section--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(38px, 7vw, 96px);
}

.se-product-info-section__label {
  margin: 0 0 10px;
  color: var(--se-blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.se-product-info-section h2 {
  max-width: 18ch;
  margin: 0 0 24px;
  font-size: 2rem;
  line-height: 1.15;
}

.se-product-info-page .se-product-gallery img {
  padding: 0;
  object-fit: cover;
  background: #edf7f8;
}

.se-product-info-page .se-product-gallery img:first-child {
  padding: 22px;
  object-fit: contain;
}

.se-product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.se-product-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 12px;
  border: 1px solid var(--se-line);
  border-radius: var(--se-radius);
  background: var(--se-sky);
}

.se-product-gallery img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.se-product-gallery .se-product-placeholder {
  grid-column: 1 / -1;
  min-height: 320px;
  border: 1px solid var(--se-line);
  border-radius: var(--se-radius);
}

.se-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.se-tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(19, 146, 236, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--se-blue-dark);
  font-weight: 800;
}

.se-checklist {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.se-checklist li {
  padding: 12px 14px 12px 38px;
  position: relative;
  border: 1px solid var(--se-line);
  border-radius: var(--se-radius);
  background: #fff;
  color: var(--se-muted);
}

.se-checklist li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--se-yellow);
}

.se-designer {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 26px;
  align-items: start;
}

.se-designer__stage {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 12px;
}

.se-designer__form {
  display: grid;
  gap: 18px;
}

.se-designer__panel {
  padding: 24px;
  border: 1px solid var(--se-line);
  border-radius: var(--se-radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.se-designer__panel h2 {
  margin-top: 0;
}

.se-sticker-advice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin: 4px 0 24px;
  padding: 5px 0 5px 18px;
  border-left: 4px solid var(--se-yellow);
}

.se-sticker-advice__copy {
  display: grid;
  gap: 5px;
}

.se-sticker-advice__copy strong {
  color: var(--se-ink);
  font-size: 1.02rem;
}

.se-sticker-advice__copy p {
  max-width: 64ch;
  margin: 0;
  color: var(--se-muted);
}

.se-sticker-advice .se-button {
  flex-shrink: 0;
  white-space: nowrap;
}

.se-designer__summary {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid rgba(41, 67, 136, 0.16);
  border-radius: var(--se-radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.se-designer__summary strong {
  color: var(--se-ink);
}

.se-designer__summary span {
  color: var(--se-muted);
}

.se-dixi-preview {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--se-line);
  border-radius: var(--se-radius);
  background:
    linear-gradient(180deg, #eaf7fb 0%, #f8fbff 62%, #d9e7cf 62%, #c9dcc1 100%);
  box-shadow: var(--se-shadow);
}

.se-dixi-preview__sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.82) 0 7%, transparent 8%),
    radial-gradient(circle at 78% 12%, rgba(255,255,255,0.68) 0 10%, transparent 11%),
    linear-gradient(90deg, rgba(41, 67, 136, 0.05) 1px, transparent 1px);
  background-size: auto, auto, 38px 38px;
  pointer-events: none;
}

.se-dixi-unit {
  position: relative;
  width: min(78%, 360px);
  aspect-ratio: 0.64 / 1;
  filter: drop-shadow(0 28px 30px rgba(15, 23, 42, 0.24));
}

.se-dixi-unit__roof {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 2%;
  height: 13%;
  border: 5px solid #aab9c6;
  border-bottom: 0;
  border-radius: 44% 44% 12px 12px;
  background: linear-gradient(180deg, #fff, #d8e2ec);
  z-index: 3;
}

.se-dixi-unit__body {
  position: absolute;
  inset: 10% 7% 7%;
  border: 6px solid #0f2548;
  border-radius: 24px 24px 16px 16px;
  background: var(--se-unit-color);
  overflow: hidden;
}

.se-dixi-unit__body::before,
.se-dixi-unit__side::before,
.se-dixi-unit__side::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.16);
}

.se-dixi-unit__body::before {
  left: 7%;
  right: 7%;
  bottom: 5%;
  height: 2.2%;
  border-radius: 999px;
}

.se-dixi-unit__side {
  position: absolute;
  inset: 4% 6%;
}

.se-dixi-unit__side::before {
  left: 0;
  top: 8%;
  width: 16%;
  height: 76%;
  border-radius: 12px;
}

.se-dixi-unit__side::after {
  right: 0;
  top: 8%;
  width: 12%;
  height: 76%;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.14);
}

.se-dixi-unit__door {
  position: absolute;
  left: 24%;
  top: 18%;
  width: 52%;
  height: 71%;
  border: 5px solid #5f7186;
  border-radius: 18px 18px 10px 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.54)),
    var(--se-door-color);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,0.35);
}

.se-dixi-unit__door::before,
.se-dixi-unit__door::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  height: 2.2%;
  border-radius: 999px;
  background: rgba(20, 33, 61, 0.14);
}

.se-dixi-unit__door::before {
  top: 64%;
}

.se-dixi-unit__door::after {
  top: 77%;
}

.se-dixi-unit__vent {
  position: absolute;
  left: 16%;
  right: 16%;
  top: 6%;
  height: 9%;
  border-radius: 6px;
  background:
    repeating-linear-gradient(90deg, #14213d 0 14px, #294388 14px 26px);
}

.se-dixi-unit__handle {
  position: absolute;
  right: 8%;
  top: 48%;
  width: 8%;
  height: 16%;
  border-radius: 999px;
  background: #334155;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.22);
}

.se-dixi-unit__base {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 2%;
  height: 7%;
  border-radius: 10px;
  background: linear-gradient(180deg, #334155, #111827);
  z-index: 2;
}

.se-dixi-logo-sticker {
  position: absolute;
  left: var(--se-logo-x);
  top: var(--se-logo-y);
  width: 58%;
  min-height: 18%;
  display: grid;
  place-items: center;
  padding: 7%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--se-blue-dark);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.16);
  transform: translate(-50%, -50%) scale(var(--se-logo-scale));
  transform-origin: center center;
}

.se-dixi-logo-sticker img {
  max-width: 100%;
  max-height: 96px;
  display: block;
  object-fit: contain;
}

.se-dixi-logo-sticker img[hidden],
.se-dixi-logo-sticker span[hidden] {
  display: none;
}

.se-field__label {
  color: var(--se-ink);
  font-weight: 800;
  font-size: 0.94rem;
}

.se-swatch-group {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.se-swatch {
  position: relative;
  min-height: 58px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 9px;
  border: 1px solid var(--se-line);
  border-radius: var(--se-radius);
  background: #fff;
  color: var(--se-ink);
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.se-swatch::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--se-swatch);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.42), 0 0 0 1px rgba(20,33,61,0.16);
}

.se-swatch input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.se-swatch:has(input:checked) {
  border-color: rgba(41, 67, 136, 0.48);
  background: var(--se-sky);
  box-shadow: 0 0 0 3px rgba(41, 67, 136, 0.08);
}

@media (max-width: 980px) {
  .se-hero--booking .se-hero__inner,
  .se-booking-flow__shell,
  .se-product-detail,
  .se-product-info-hero,
  .se-product-info-section--split,
  .se-designer {
    grid-template-columns: 1fr;
  }

  .se-product-info-hero__copy {
    position: static;
    padding-top: 0;
  }

  .se-product-info-hero__copy h1 {
    max-width: 16ch;
    font-size: 3.4rem;
  }

  .se-designer__stage {
    position: static;
  }

  .se-sticker-advice {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .se-sticker-advice .se-button {
    justify-self: start;
    white-space: normal;
  }

  .se-dixi-preview {
    min-height: 560px;
  }

  .se-booking-flow {
    margin-top: -28px;
  }

  .se-booking-flow__rail {
    border-right: 0;
    border-bottom: 1px solid var(--se-line);
  }

  .se-progress {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .se-booking-flow__main,
  .se-booking-flow__rail,
  .se-service-check,
  .se-designer__panel {
    padding: 18px;
  }

	  .se-progress,
	  .se-option-grid,
	  .se-price-breakdown dl div,
	  .se-specs div,
	  .se-summary-grid div,
	  .se-advice-product,
	  .se-swatch-group {
	    grid-template-columns: 1fr;
	  }

	  .se-advice-product__media {
	    width: 100%;
	    height: 132px;
	  }

  .se-progress li {
    align-items: flex-start;
    min-height: 48px;
    font-size: 0.86rem;
  }

  .se-flow-actions {
    margin-left: -18px;
    margin-right: -18px;
    padding: 14px 18px 18px;
    border-top: 1px solid var(--se-line);
  }

  .se-flow-actions .se-button,
  .se-flow-actions button {
    width: 100%;
  }

  .se-product-info-hero {
    gap: 24px;
    padding-top: 8px;
    padding-bottom: 48px;
  }

  .se-product-info-hero__copy h1 {
    margin-top: 12px;
    font-size: 2.55rem;
    line-height: 1.04;
  }

  .se-product-info-hero__copy {
    order: -1;
  }

  .se-product-info-hero__lead {
    font-size: 1.05rem;
  }

  .se-product-info-order {
    width: 100%;
  }

  .se-product-info-section {
    padding: 38px 0;
  }

  .se-product-info-section h2 {
    font-size: 1.65rem;
  }

  .se-product-info-page .se-product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .se-product-info-page .se-product-gallery img:first-child {
    grid-column: 1 / -1;
    padding: 14px;
  }
}

@media (max-width: 760px) {
  body {
    background: #fff;
  }

  .se-topbar {
    display: none;
  }

  .se-container {
    width: min(100% - 24px, var(--se-container));
  }

  .se-header {
    position: relative;
    top: auto;
    backdrop-filter: none;
  }

  .se-header__inner {
    min-height: auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
    padding: 12px 0;
  }

	  .se-logo__image {
	    width: 112px;
	  }

	  .se-nav {
	    display: none;
	  }

	  .se-route-nav {
	    display: none;
	  }

  .se-more-menu {
    display: none;
  }

	  .se-mobile-menu {
	    position: absolute;
	    top: 50%;
	    right: 0;
	    z-index: 80;
	    display: block;
	    justify-self: end;
	    grid-column: 3;
	    grid-row: 1;
	    transform: translateY(-50%);
	  }

  .se-mobile-menu[open] summary {
    background: var(--se-blue);
    color: #fff;
    border-color: var(--se-blue);
  }

  .se-mobile-menu__links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(330px, calc(100vw - 24px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
    border: 1px solid var(--se-line);
    border-radius: var(--se-radius);
    background: #fff;
    box-shadow: 0 20px 48px rgba(20, 33, 61, 0.18);
  }

  .se-mobile-menu__links a {
    min-width: 0;
    overflow-wrap: anywhere;
  }

	  .se-header__actions {
	    grid-column: 1 / -1;
	    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .se-button,
  .se-form button,
  .se-shop-form button,
  .se-quote-link {
    min-width: 0;
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.94rem;
    line-height: 1.18;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

	  .se-header__actions .se-button,
	  .se-hero__actions .se-button,
	  .se-section__actions .se-button {
	    width: 100%;
	  }

	  .se-header__actions .se-button {
	    padding-inline: 8px;
	    font-size: 0.9rem;
	    white-space: normal;
	  }

  .se-hero--image {
    min-height: auto;
  }

  .se-hero--image::after,
  .se-page-hero--image::after {
    background:
      linear-gradient(180deg, rgba(20, 33, 61, 0.72) 0%, rgba(20, 33, 61, 0.58) 48%, rgba(20, 33, 61, 0.84) 100%),
      linear-gradient(90deg, rgba(20, 33, 61, 0.34), rgba(20, 33, 61, 0.22));
  }

  .se-hero__content {
    min-height: 0;
    align-content: end;
    padding: 34px 0 28px;
  }

  .se-hero h1,
  .se-page-hero h1 {
    max-width: 12ch;
    font-size: 2.05rem;
    line-height: 1.05;
  }

  .se-hero__lead,
  .se-page-hero__lead {
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .se-eyebrow {
    margin-bottom: 10px;
    padding: 5px 9px;
    font-size: 0.74rem;
    line-height: 1.15;
  }

  .se-hero__actions,
  .se-section__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .se-hero--image .se-hero__proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .se-proof {
    min-height: 0;
    padding: 10px;
    border-radius: 10px;
  }

  .se-proof strong {
    font-size: 1rem;
  }

  .se-proof span {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .se-section {
    padding: 42px 0;
  }

  .se-section--flush {
    padding-top: 22px;
  }

  .se-section--flush .se-booking-flow,
  .se-booking-flow {
    margin-top: 0;
  }

  .se-section__head {
    gap: 10px;
    margin-bottom: 18px;
  }

  .se-section__head h2,
  .se-page-content h2 {
    font-size: 1.62rem;
    line-height: 1.12;
  }

  .se-section__head--compact {
    margin-bottom: 18px;
  }

  .se-section__head--compact h1 {
    font-size: 1.92rem;
  }

  .se-page-hero {
    padding: 34px 0 28px;
  }

  .se-page-hero--image {
    min-height: 300px;
  }

	  .se-page-content {
	    padding: 30px 0 52px;
	  }

	  .se-shop-intro {
	    padding-top: 0;
	  }

	  .se-shop-intro h1,
	  .se-shop-intro h2 {
	    max-width: 12ch;
	    font-size: 2.25rem;
	  }

	  .se-shop-intro p:not(.se-eyebrow) {
	    font-size: 0.98rem;
	    max-width: 100%;
	  }

	  .se-shop-hero {
	    grid-template-columns: 1fr;
	    gap: 18px;
	    padding: 12px 0 20px;
	  }

	  .se-shop-hero h1,
	  .se-shop-hero h2 {
	    max-width: 12ch;
	    font-size: 2.35rem;
	  }

	  .se-shop-hero__copy p:not(.se-eyebrow) {
	    margin-top: 10px;
	    font-size: 0.98rem;
	  }

	  .se-shop-hero__steps {
	    display: grid;
	    grid-template-columns: 1fr;
	    gap: 7px;
	    margin-top: 14px;
	  }

	  .se-shop-hero__steps li {
	    min-height: 34px;
	    padding: 7px 10px;
	    font-size: 0.82rem;
	    overflow-wrap: anywhere;
	  }

	  .se-shop-hero__media {
	    min-height: 205px;
	  }

	  .se-shop-hero__media img {
	    max-height: 210px;
	  }

  .se-booking-flow__shell {
    min-height: 0;
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
  }

  .se-booking-flow__rail,
  .se-booking-flow__main,
  .se-service-check {
    padding: 16px;
  }

  .se-booking-flow__kicker {
    margin-bottom: 10px;
    font-size: 0.86rem;
  }

  .se-progress {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .se-progress li {
    min-height: 42px;
    align-items: center;
    padding: 7px 8px;
    gap: 7px;
    font-size: 0.78rem;
    line-height: 1.15;
  }

  .se-progress li::before {
    width: 22px;
    height: 22px;
    font-size: 0.72rem;
  }

  .se-flow-step {
    min-height: 0;
  }

  .se-flow-step h2 {
    font-size: 1.42rem;
  }

  .se-flow-step > p {
    margin-bottom: 16px;
  }

  .se-form-grid,
  .se-option-grid,
  .se-direct-product-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .se-direct-product-row {
    gap: 10px;
  }

  .se-direct-product-row__remove,
  .se-direct-products__footer .se-button {
    width: 100%;
  }

  .se-direct-products__footer {
    align-items: stretch;
  }

  .se-field {
    margin-bottom: 12px;
  }

  .se-field input,
  .se-field select,
  .se-field textarea {
    min-height: 44px;
    font-size: 16px;
  }

  .se-option-card {
    min-height: 62px;
    padding: 12px;
  }

  .se-flow-actions {
    position: static;
    margin: 18px -16px -16px;
    padding: 12px 16px 16px;
  }

  .se-advice-product {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
  }

  .se-advice-product__media {
    width: 58px;
    height: 58px;
  }

  .se-advice-product input {
    grid-column: 1 / -1;
    width: 100%;
  }

  .se-price-breakdown dl div,
  .se-specs div,
  .se-summary-grid div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 11px 12px;
  }

  .se-product__media,
  .se-product-placeholder {
    min-height: 154px;
    padding: 14px;
  }

  .se-dixi-preview {
    min-height: 500px;
    border-radius: 12px;
  }

  .se-dixi-unit {
    width: min(78vw, 300px);
  }

  .se-product__media img {
    max-height: 156px;
  }

  .se-product__body,
  .se-card,
  .se-step,
  .se-review,
  .se-portal-card,
  .se-proof-card {
    padding: 16px;
  }

  .se-media-grid {
    gap: 12px;
  }

  .se-media-card img {
    aspect-ratio: 16 / 10;
    max-height: 250px;
  }

  .se-media-card--contain img {
    aspect-ratio: 1 / 1;
    max-height: 210px;
    padding: 16px;
  }

  .se-media-card figcaption {
    padding: 11px 12px;
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .se-product-detail {
    gap: 18px;
    margin-bottom: 30px;
  }

  .se-product-gallery {
    gap: 8px;
  }

  .se-product-gallery img:first-child {
    aspect-ratio: 1 / 1;
  }

  .se-tag-list {
    gap: 8px;
  }

  .se-tag-list span,
  .se-city-list a,
  .se-pill {
    min-height: 32px;
    padding: 5px 9px;
    font-size: 0.84rem;
    line-height: 1.2;
  }

  .se-sidebar {
    padding: 16px;
  }

  .se-cta-band {
    padding: 20px;
  }

  .se-footer {
    padding: 38px 0 22px;
  }

  .se-footer__grid {
    gap: 18px;
  }

  .se-footer h2,
  .se-footer h3 {
    margin-bottom: 8px;
    font-size: 1rem;
  }

  .se-footer p,
  .se-footer a {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .se-footer a {
    margin: 5px 0;
  }

  .se-footer__bottom {
    margin-top: 24px;
    padding-top: 14px;
  }
}

/* National service area landing page. */
.se-service-area-page {
  display: grid;
  gap: clamp(44px, 6vw, 80px);
}

.se-service-area-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.se-service-area-lead h2 {
  max-width: 18ch;
  margin-bottom: 18px;
}

.se-service-area-lead > div > p:not(.se-eyebrow) {
  max-width: 64ch;
}

.se-service-area-lead__media {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--se-line);
  border-radius: 6px;
  background: #eaf3f6;
}

.se-service-area-lead__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.se-service-area-lead__media figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--se-ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.se-service-area-check-section {
  padding: clamp(30px, 4vw, 50px) 0;
  border-top: 1px solid var(--se-line);
  border-bottom: 1px solid var(--se-line);
}

.se-province-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 16px;
}

.se-province-list span {
  min-width: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--se-yellow);
  background: #fff;
  color: var(--se-ink);
  font-weight: 700;
}

.se-card__number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 50%;
  background: var(--se-yellow);
  color: var(--se-ink);
  font-weight: 800;
}

.se-service-area-faq {
  border-top: 1px solid var(--se-line);
}

.se-service-area-faq h2 {
  padding-top: clamp(30px, 4vw, 48px);
}

.se-service-area-faq details {
  border-bottom: 1px solid var(--se-line);
}

.se-service-area-faq summary {
  position: relative;
  padding: 20px 42px 20px 0;
  color: var(--se-ink);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.se-service-area-faq summary::-webkit-details-marker {
  display: none;
}

.se-service-area-faq summary::after {
  content: "+";
  position: absolute;
  top: 15px;
  right: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.se-service-area-faq details[open] summary::after {
  content: "−";
}

.se-service-area-faq details p {
  max-width: 72ch;
  padding: 0 42px 20px 0;
}

@media (max-width: 900px) {
  .se-service-area-lead {
    grid-template-columns: 1fr;
  }

  .se-service-area-lead h2 {
    max-width: 22ch;
  }

  .se-service-area-lead__media,
  .se-service-area-lead__media img {
    min-height: 300px;
  }

  .se-province-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .se-service-area-lead__media,
  .se-service-area-lead__media img {
    min-height: 240px;
  }

  .se-province-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .se-province-list span {
    padding: 10px;
    font-size: 0.9rem;
  }
}

@media (max-width: 420px) {
  .se-route-nav__item span {
    display: none;
  }
}

@media (max-width: 380px) {
  .se-container {
    width: min(100% - 20px, var(--se-container));
  }

  .se-logo__image {
    width: 124px;
  }

  .se-header__actions,
  .se-mobile-menu__links,
  .se-hero--image .se-hero__proof,
  .se-progress {
    grid-template-columns: 1fr;
  }

  .se-hero h1,
  .se-page-hero h1 {
    max-width: none;
    font-size: 1.86rem;
  }
}

@media (max-width: 760px) {
  .se-hero--quick,
  .se-hero--quick .se-hero__content {
    min-height: 390px;
  }

  .se-hero--quick .se-hero__content {
    padding: 28px 0 24px;
  }

  .se-route-strip,
  .se-flow-shell__header,
  .se-after-form-links {
    grid-template-columns: 1fr;
  }

  .se-route-strip {
    display: grid;
  }

  .se-flow-shell__header,
  .se-after-form-links {
    display: grid;
    align-items: start;
  }

  .se-flow-shell__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .se-form-panel {
    padding: 14px;
    border-radius: 10px;
  }

  .se-direct-product-row {
    grid-template-columns: 1fr;
  }

	  .se-shop-head,
	  .se-shop-toolbar {
	    display: grid;
	    grid-template-columns: minmax(0, 1fr);
	    align-items: start;
	    width: 100%;
	    max-width: 100%;
	  }

	  .se-shop-head,
	  .se-shop-toolbar {
	    padding: 0 0 14px;
	  }

	  .se-shop-head__help,
	  .se-shop-toolbar a {
	    width: 100%;
	    justify-content: center;
	    text-align: center;
	  }

  .se-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .se-shop-order-layout {
    grid-template-columns: 1fr;
  }

	.se-shop-summary-bar {
	  position: static;
	}

  .se-shop-card {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: auto auto;
  }

  .se-shop-card.is-selected {
    transform: none;
  }

  .se-shop-card.is-quantity-changing {
    animation: se-shop-card-mobile-bump 0.32s ease;
  }

  @keyframes se-shop-card-mobile-bump {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.006);
    }

    100% {
      transform: scale(1);
    }
  }

  .se-shop-card__media {
    grid-row: 1 / 3;
    height: auto;
    min-height: 170px;
    padding: 10px;
  }

  .se-shop-card__body {
    padding: 14px 14px 6px;
  }

  .se-shop-card__body p,
  .se-shop-card__highlights {
    font-size: 0.86rem;
  }

  .se-shop-card__buy {
    padding: 10px 14px 14px;
    border-top: 0;
  }

	  .se-shop-summary-bar strong,
	  .se-shop-summary-bar span {
	    min-width: 0;
	    overflow-wrap: anywhere;
	  }

  .se-shop-summary-items {
    min-height: 34px;
  }

  .se-shop-checkout button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .se-shop-form {
    gap: 14px;
    padding: 12px;
  }

  .se-shop-grid {
    grid-template-columns: 1fr;
  }

  .se-shop-card {
    grid-template-columns: 1fr;
  }

  .se-shop-card__media {
    grid-row: auto;
    height: 210px;
  }

	  .se-shop-card__controls {
	    grid-template-columns: minmax(0, 1fr);
	  }

  .se-quantity-stepper {
    grid-template-columns: 44px 1fr 44px;
  }

  .se-shop-summary-bar {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .se-shop-card,
  .se-shop-card::after,
  .se-shop-card::before,
  .se-quantity-stepper button,
  .se-quantity-stepper input,
  .se-shop-summary-items {
    transition: none;
  }

  .se-shop-card.is-quantity-changing {
    animation: none;
  }
}

/* Shared webshop actions: restrained geometry, one hierarchy and familiar line icons. */
.se-action-button {
  --se-button-bg: var(--se-blue);
  --se-button-hover: var(--se-blue-dark);
  --se-button-fg: #ffffff;
  --se-button-border: var(--se-blue);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--se-button-border);
  border-radius: 7px;
  background: var(--se-button-bg);
  color: var(--se-button-fg);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(31, 50, 102, 0.16);
  transform: translateY(0);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease,
    background-color 0.16s ease,
    color 0.16s ease;
  white-space: nowrap;
}

.se-action-button::after {
  display: none;
}

.se-action-button:hover,
.se-action-button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--se-button-hover);
  background: var(--se-button-hover);
  color: var(--se-button-fg);
  box-shadow: 0 8px 18px rgba(31, 50, 102, 0.22);
}

.se-action-button:focus-visible {
  outline: 3px solid rgba(122, 221, 236, 0.58);
  outline-offset: 2px;
}

.se-action-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 7px rgba(31, 50, 102, 0.18);
}

.se-action-button:disabled,
.se-action-button[aria-disabled="true"],
.se-action-button.disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.se-action-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-grid;
  place-items: center;
  color: currentColor;
}

.se-action-icon svg {
  width: 19px;
  height: 19px;
  display: block;
}

.se-action-label {
  min-width: 0;
}

.se-button--ghost.se-action-button,
.se-quote-link--light.se-action-button,
.se-shop-toolbar a.se-action-button,
.se-mobile-menu__links a.se-action-button,
.se-more-menu__links a.se-action-button {
  --se-button-bg: #ffffff;
  --se-button-hover: #eef4f8;
  --se-button-fg: var(--se-blue-dark);
  --se-button-border: rgba(41, 67, 136, 0.34);
  box-shadow: none;
}

.se-shop-toolbar a.se-action-button {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--se-button-border);
  border-radius: 7px;
  background: var(--se-button-bg);
  color: var(--se-button-fg);
  font-size: 0.9rem;
}

.se-button--gold.se-action-button {
  --se-button-bg: #f2c94c;
  --se-button-hover: #d8ac28;
  --se-button-fg: var(--se-ink);
  --se-button-border: #d8ac28;
  box-shadow: 0 4px 10px rgba(203, 160, 28, 0.18);
}

.se-action-button[data-se-button-intent="remove"] {
  --se-button-bg: #fff7f5;
  --se-button-hover: #fde9e4;
  --se-button-fg: #8d2416;
  --se-button-border: rgba(239, 111, 79, 0.34);
  box-shadow: none;
}

.se-button--ghost-dark.se-action-button {
  --se-button-bg: rgba(255, 255, 255, 0.14);
  --se-button-hover: rgba(255, 255, 255, 0.22);
  --se-button-fg: #ffffff;
  --se-button-border: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.se-button--ghost-dark.se-action-button:hover,
.se-button--ghost-dark.se-action-button:focus-visible {
  background: var(--se-button-hover);
}

.se-route-nav {
  width: 100%;
  max-width: none;
  border-radius: 6px;
  padding: 0;
}

.se-route-nav__item.se-action-button {
  --se-button-fg: var(--se-ink);
  width: 100%;
  min-width: 0;
  min-height: 42px;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  border-color: transparent;
  background: transparent;
  color: var(--se-ink);
  box-shadow: none;
}

.se-route-nav__item.se-action-button::after {
  display: none;
}

.se-route-nav__item.se-action-button .se-action-icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  color: currentColor;
}

.se-route-nav__item.se-action-button:hover .se-action-icon,
.se-route-nav__item.se-action-button:focus .se-action-icon,
.se-route-nav__item.se-action-button.is-active .se-action-icon {
  color: currentColor;
}

.se-route-nav__item.se-action-button:hover,
.se-route-nav__item.se-action-button:focus,
.se-route-nav__item.se-action-button.is-active {
  --se-button-fg: #ffffff;
  border-color: var(--se-blue);
  background: var(--se-blue);
  color: #ffffff;
}

.se-support-nav__item.se-action-button {
  --se-button-bg: transparent;
  --se-button-hover: #ffffff;
  --se-button-fg: var(--se-blue-dark);
  --se-button-border: transparent;
  width: auto;
  min-width: 0;
  min-height: 42px;
  gap: 6px;
  padding: 0 7px;
  border-color: transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--se-blue-dark);
  font-size: 0.74rem;
  box-shadow: none;
}

.se-support-nav__item.se-action-button .se-action-icon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}

.se-support-nav__item.se-action-button .se-action-icon svg {
  width: 16px;
  height: 16px;
}

.se-support-nav__item.se-action-button .se-action-label {
  white-space: nowrap;
}

.se-support-nav__item.se-action-button:hover,
.se-support-nav__item.se-action-button:focus-visible,
.se-support-nav__item.se-action-button.is-active {
  border-color: rgba(41, 67, 136, 0.14);
  background: #ffffff;
  color: var(--se-blue);
  box-shadow: none;
}

@media (max-width: 1160px) and (min-width: 981px) {
  .se-route-nav__item span {
    display: none;
  }

  .se-route-nav__item.se-action-button,
  .se-support-nav__item.se-action-button {
    padding-right: 6px;
    padding-left: 6px;
  }
}

.se-more-menu summary.se-action-button,
.se-mobile-menu summary.se-action-button {
  --se-button-bg: #ffffff;
  --se-button-hover: #eef4f8;
  --se-button-fg: var(--se-blue-dark);
  --se-button-border: rgba(41, 67, 136, 0.28);
  list-style: none;
  min-height: 42px;
  border-radius: 7px;
  box-shadow: none;
}

.se-mobile-menu__links a.se-action-button,
.se-more-menu__links a.se-action-button {
  justify-content: flex-start;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 6px;
  box-shadow: none;
}

.se-mobile-menu__links a.se-action-button::after,
.se-more-menu__links a.se-action-button::after {
  display: none;
}

.se-hero-route.se-action-button {
  min-height: 52px;
  padding: 0 20px;
}

.se-hero-route.se-action-button .se-action-icon {
  width: 21px;
  height: 21px;
  flex-basis: 21px;
}

.se-shop-card__add.se-action-button,
.se-shop-summary-bar button.se-action-button,
.sani-rental-panel__button.se-action-button {
  width: 100%;
}

.se-shop-card__add.se-action-button {
  min-height: 48px;
  padding: 0 12px;
  font-size: 0.9rem;
}

.se-shop-card__add.se-action-button .se-action-icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

.se-shop-card__add.se-action-button.is-added {
  --se-button-bg: var(--se-green);
  --se-button-hover: var(--se-green-dark);
  --se-button-border: rgba(16, 99, 70, 0.78);
}

.se-shop-summary-bar button.se-action-button {
  flex-basis: 240px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--se-button-border);
  border-radius: 7px;
  background: var(--se-button-bg);
  color: var(--se-button-fg);
}

.woocommerce a.button.se-action-button,
.woocommerce button.button.se-action-button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.checkout-button.se-action-button,
.woocommerce button.single_add_to_cart_button.se-action-button,
.wp-block-button__link.se-action-button {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--se-button-border);
  border-radius: 7px;
  background: var(--se-button-bg);
  color: var(--se-button-fg);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.2;
  box-shadow: 0 4px 10px rgba(31, 50, 102, 0.16);
}

.woocommerce a.button.se-action-button:hover,
.woocommerce button.button.se-action-button:hover,
.woocommerce a.checkout-button.se-action-button:hover,
.woocommerce button.single_add_to_cart_button.se-action-button:hover,
.wp-block-button__link.se-action-button:hover {
  border-color: var(--se-button-hover);
  background: var(--se-button-hover);
  color: var(--se-button-fg);
}

.se-flow-actions .se-action-button,
.se-form-actions .se-action-button,
.se-service-status__actions .se-action-button {
  min-width: 144px;
}

.se-hero__content,
.se-hero__lead,
.se-hero__actions,
.se-shop-intro,
.se-shop-summary-bar,
.se-action-button {
  max-width: 100%;
}

.se-hero__lead,
.se-shop-intro p,
.se-shop-summary-bar,
.se-action-label {
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .se-hero__content {
    min-width: 0;
  }

  .se-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
  }

  .se-hero__lead,
  .se-page-hero__lead {
    width: 100%;
    max-width: min(100%, 34ch);
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .se-shop-intro p:not(.se-eyebrow),
  .se-shop-head p,
  .se-shop-head__copy,
  .se-shop-toolbar > div,
  .se-shop-toolbar span {
    width: 100%;
    max-width: min(100%, 34ch);
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .se-shop-toolbar span {
    display: block;
  }

  .se-action-button {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 16px;
    white-space: normal;
  }

  .se-route-nav__item.se-action-button,
  .se-more-menu summary.se-action-button,
  .se-mobile-menu summary.se-action-button {
    width: auto;
  }

  .se-mobile-menu summary.se-action-button {
    width: 48px;
    max-width: 48px;
    min-width: 48px;
    min-height: 48px;
    justify-content: center;
    padding: 0;
  }

  .se-mobile-menu summary.se-action-button::after,
  .se-mobile-menu summary.se-action-button .se-action-label {
    display: none;
  }

  .se-mobile-menu summary.se-action-button .se-action-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    margin: 0;
  }

  .se-mobile-menu__links a.se-action-button,
  .se-more-menu__links a.se-action-button {
    width: 100%;
  }

  .se-hero__actions .se-action-button,
  .se-section__actions .se-action-button,
  .se-form-actions .se-action-button,
  .se-flow-actions .se-action-button,
  .se-service-status__actions .se-action-button {
    width: 100%;
  }
}

/* Homepage route cards: three clear ways to book Sani Easy. */
.se-hero--quick,
.se-hero--quick .se-hero__content {
  min-height: min(680px, calc(100vh - 92px));
}

.se-hero--quick .se-hero__content {
  padding-block: 44px 52px;
}

.se-hero--quick .se-hero__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  width: min(100%, 760px);
  gap: 14px;
  margin-top: 30px;
}

.se-hero-route,
.se-hero-route.se-action-button {
  --se-route-accent: #2f5fc4;
  --se-route-soft: #eaf2ff;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 1;
  gap: 0;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--se-ink);
  text-align: left;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(9, 24, 56, 0.2);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  white-space: normal;
}

.se-hero-route--business,
.se-hero-route--business.se-action-button {
  --se-route-accent: #177d68;
  --se-route-soft: #e6f6f2;
}

.se-hero-route--service,
.se-hero-route--service.se-action-button {
  --se-route-accent: #b8790b;
  --se-route-soft: #fff3d4;
}

.se-hero-route::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--se-route-accent);
}

.se-hero-route.se-action-button::after {
  content: "\2192";
  position: absolute;
  right: 19px;
  bottom: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--se-route-accent) 26%, transparent);
  border-radius: 50%;
  background: var(--se-route-soft);
  color: var(--se-route-accent);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.se-hero-route > .se-action-icon,
.se-hero-route.se-action-button > .se-action-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  margin-bottom: 22px;
  border: 1px solid color-mix(in srgb, var(--se-route-accent) 24%, transparent);
  border-radius: 7px;
  background: var(--se-route-soft);
  color: var(--se-route-accent);
}

.se-hero-route > .se-action-icon svg,
.se-hero-route.se-action-button > .se-action-icon svg {
  width: 25px;
  height: 25px;
}

.se-hero-route__copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  padding-right: 4px;
}

.se-hero-route__kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--se-route-accent);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.se-hero-route__copy strong {
  color: var(--se-ink);
  font-size: 1.12rem;
  line-height: 1.18;
}

.se-hero-route__copy small {
  display: block;
  margin-top: 9px;
  max-width: 23ch;
  color: #59687e;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.42;
}

.se-hero-route:hover,
.se-hero-route:focus-visible,
.se-hero-route.se-action-button:hover,
.se-hero-route.se-action-button:focus-visible {
  border-color: color-mix(in srgb, var(--se-route-accent) 42%, white);
  background: #ffffff;
  color: var(--se-ink);
  box-shadow: 0 24px 54px rgba(9, 24, 56, 0.28);
  transform: translateY(-4px);
}

.se-hero-route:focus-visible,
.se-hero-route.se-action-button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--se-route-accent) 42%, transparent);
  outline-offset: 3px;
}

@media (max-width: 820px) {
  .se-hero--quick,
  .se-hero--quick .se-hero__content {
    min-height: auto;
  }

  .se-hero--quick .se-hero__content {
    padding: 38px 0 32px;
  }

  .se-hero--quick .se-hero__actions {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
    margin-top: 22px;
  }

  .se-hero-route,
  .se-hero-route.se-action-button {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 32px;
    align-items: center;
    aspect-ratio: auto;
    min-height: 116px;
    padding: 16px 16px 16px 18px;
  }

  .se-hero-route > .se-action-icon,
  .se-hero-route.se-action-button > .se-action-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    grid-column: 1;
    margin: 0;
  }

  .se-hero-route__copy {
    grid-column: 2;
    padding: 0 12px;
  }

  .se-hero-route__kicker {
    margin-bottom: 4px;
    font-size: 0.65rem;
  }

  .se-hero-route__copy strong {
    font-size: 1rem;
  }

  .se-hero-route__copy small {
    margin-top: 4px;
    max-width: none;
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .se-hero-route.se-action-button::after {
    position: static;
    grid-column: 3;
    grid-row: 1;
    width: 30px;
    height: 30px;
  }

  .se-address-check__heading {
    display: grid;
    gap: 10px;
  }

  .se-address-check__badge {
    justify-self: start;
  }

  .se-address-check__inputs {
    grid-template-columns: minmax(0, 1fr) minmax(92px, 0.62fr);
  }

  .se-address-check__inputs .se-field:nth-child(3) {
    grid-column: 1 / -1;
  }

  .se-address-check__button,
  .se-address-check__button.se-action-button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0;
  }

  .se-address-check__resolved {
    grid-template-columns: 1fr;
  }
}

/* Zakelijke offerteflow. */
.se-business-page {
  display: grid;
  gap: 36px;
  max-width: 1180px;
  margin: 0 auto;
}

.se-business-hero {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: #173b70;
  box-shadow: 0 16px 38px rgba(20, 33, 61, 0.14);
  isolation: isolate;
}

.se-business-hero__media,
.se-business-hero__media img,
.se-business-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.se-business-hero__media img {
  object-fit: cover;
  object-position: center 56%;
}

.se-business-hero__shade {
  z-index: 1;
  background: rgba(12, 29, 55, 0.68);
}

.se-business-hero__content {
  position: relative;
  z-index: 2;
  width: min(720px, 72%);
  padding: 48px 48px 34px;
  color: #fff;
}

.se-business-hero .se-eyebrow {
  margin-bottom: 12px;
  color: #f2c94c;
}

.se-business-hero h1 {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-size: 3.45rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.se-business-hero__content > p:not(.se-eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.6;
}

.se-business-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.se-business-hero__actions .se-action-button {
  min-height: 50px;
}

.se-business-hero__facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: auto 0 0;
  padding: 0;
  border-top: 4px solid #d0a10b;
  background: rgba(255, 255, 255, 0.96);
  list-style: none;
}

.se-business-hero__facts li {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 17px 22px;
  border-right: 1px solid #dce4ea;
}

.se-business-hero__facts li:last-child {
  border-right: 0;
}

.se-business-hero__facts strong {
  color: #12213f;
  font-size: 0.94rem;
  line-height: 1.3;
}

.se-business-hero__facts span {
  color: #607187;
  font-size: 0.8rem;
  line-height: 1.4;
}

.se-business-request {
  display: grid;
  gap: 22px;
}

.se-business-request__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  align-items: end;
  gap: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d7e0e8;
}

.se-business-request__intro h2 {
  max-width: 650px;
  margin: 0;
  color: #12213f;
  font-size: 2.15rem;
  line-height: 1.12;
}

.se-business-request__intro > p {
  margin: 0;
  color: #5d6e83;
  line-height: 1.6;
}

.se-business-request__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: start;
  gap: 24px;
}

.se-business-request__form {
  min-width: 0;
}

.se-business-page .se-form-panel {
  padding: 0;
  overflow: hidden;
  border: 1px solid #d3dde6;
  border-top: 4px solid #294388;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 33, 61, 0.08);
}

.se-business-quote-panel__head {
  display: flex;
  min-height: 108px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 21px 24px;
  border-bottom: 1px solid #dce4eb;
}

.se-business-quote-panel__head span,
.se-business-request__label,
.se-form-step__head > span {
  display: block;
  margin-bottom: 4px;
  color: #315c85;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.se-business-quote-panel__head h2 {
  margin: 0;
  color: #12213f;
  font-size: 1.45rem;
  line-height: 1.25;
}

.se-business-quote-panel__head p {
  max-width: 570px;
  margin: 5px 0 0;
  color: #617087;
  font-size: 0.88rem;
  line-height: 1.5;
}

.se-business-quote-panel__head > strong {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid #c9d8e5;
  border-radius: 5px;
  background: #eef5fa;
  color: #294388;
  font-size: 0.78rem;
  line-height: 1.3;
}

.se-business-page .se-form {
  padding: 0;
}

.se-business-page .se-step-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0 24px;
  border-bottom: 1px solid #dce4eb;
  background: #eef3f7;
}

.se-business-page .se-step-nav li {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 72px;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #67778c;
}

.se-business-page .se-step-nav li::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: transparent;
  content: "";
}

.se-business-page .se-step-nav li > span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid #bdcad6;
  border-radius: 50%;
  background: #fff;
  color: #52657b;
  font-size: 0.8rem;
  font-weight: 900;
}

.se-business-page .se-step-nav li > div {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.se-business-page .se-step-nav li strong {
  color: inherit;
  font-size: 0.88rem;
  line-height: 1.25;
}

.se-business-page .se-step-nav li small {
  overflow: hidden;
  color: #7b899a;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.se-business-page .se-step-nav li.is-active {
  color: #173b70;
}

.se-business-page .se-step-nav li.is-active::after {
  background: #294388;
}

.se-business-page .se-step-nav li.is-active > span {
  border-color: #294388;
  background: #294388;
  color: #fff;
}

.se-business-page .se-step-nav li.is-complete {
  color: #167253;
}

.se-business-page .se-step-nav li.is-complete > span {
  border-color: #8fc8b3;
  background: #e7f7f1;
  color: #167253;
}

.se-business-page .se-form-step {
  padding: 24px 24px 12px;
}

.se-form-step__head {
  margin-bottom: 20px;
}

.se-form-step__head h3 {
  margin: 0;
  color: #12213f;
  font-size: 1.2rem;
  line-height: 1.3;
}

.se-form-step__head p {
  max-width: 650px;
  margin: 4px 0 0;
  color: #64758a;
  font-size: 0.87rem;
  line-height: 1.5;
}

.se-business-page .se-form-grid {
  gap: 3px 16px;
}

.se-business-page .se-field {
  gap: 7px;
  margin-bottom: 15px;
}

.se-business-page .se-field label,
.se-business-page .se-field__label {
  color: #31445c;
  font-size: 0.86rem;
  font-weight: 850;
}

.se-business-page .se-field input,
.se-business-page .se-field select,
.se-business-page .se-field textarea {
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #adbdca;
  border-radius: 5px;
  background: #fcfdfe;
  color: #12213f;
}

.se-business-page .se-field textarea {
  min-height: 116px;
}

.se-business-page .se-field input:focus,
.se-business-page .se-field select:focus,
.se-business-page .se-field textarea:focus {
  border-color: #294388;
  box-shadow: 0 0 0 3px rgba(41, 67, 136, 0.12);
  outline: 0;
}

.se-business-page .se-field small {
  color: #708095;
  font-size: 0.78rem;
  line-height: 1.45;
}

.se-business-page .se-address-check {
  margin: 4px 0 17px;
  padding: 18px;
  border: 1px solid #d4dfe7;
  border-left: 4px solid #188a63;
  border-radius: 6px;
  background: #f5f9f8;
}

.se-business-page .se-address-check__heading {
  margin-bottom: 16px;
}

.se-business-page .se-address-check__heading h3 {
  color: #12213f;
}

.se-business-page .se-address-check__badge {
  border-color: #a8d2c0;
  background: #e7f7f1;
  color: #146949;
}

.se-business-page .se-address-check__button {
  min-height: 48px;
  border-radius: 5px;
}

.se-business-page .se-check {
  margin: 2px 0 8px;
  padding: 13px 14px;
  border: 1px solid #d8e1e8;
  border-radius: 5px;
  background: #f7f9fb;
}

.se-business-page .se-form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 18px 24px;
  border-top: 1px solid #dce4eb;
  background: #f7f9fb;
}

.se-business-page .se-form-actions [data-se-next],
.se-business-page .se-form-actions [data-se-submit] {
  margin-left: auto;
}

.se-business-page .se-form-actions button {
  min-height: 48px;
  border-radius: 6px;
}

.se-business-request__aside {
  position: sticky;
  top: 24px;
  overflow: hidden;
  border-top: 4px solid #d0a10b;
  border-radius: 8px;
  background: #173b70;
  box-shadow: 0 14px 34px rgba(20, 33, 61, 0.12);
  color: #fff;
}

.se-business-request__aside > div {
  padding: 22px;
}

.se-business-request__aside h3 {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.3;
}

.se-business-request__aside ul {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.se-business-request__aside li {
  position: relative;
  padding-left: 27px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  line-height: 1.45;
}

.se-business-request__aside li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: inline-flex;
  width: 19px;
  height: 19px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e7f7f1;
  color: #167253;
  content: "\2713";
  font-size: 0.73rem;
  font-weight: 900;
}

.se-business-request__aside .se-business-request__label {
  color: #f2c94c;
}

.se-business-request__support {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.se-business-request__support strong {
  display: block;
  color: #fff;
}

.se-business-request__support p {
  margin: 4px 0 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.45;
}

.se-business-request__support a {
  color: #f2c94c;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.se-business-request__support a:hover,
.se-business-request__support a:focus {
  text-decoration: underline;
}

.se-business-page > .se-after-form-links {
  margin-top: -12px;
  padding-top: 20px;
  border-top: 1px solid #d7e0e8;
}

@media (max-width: 940px) {
  .se-business-request__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .se-business-request__aside {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  }

  .se-business-request__support {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 700px) {
  .se-business-page {
    gap: 28px;
  }

  .se-business-hero {
    min-height: 0;
  }

  .se-business-hero__media img {
    object-position: center;
  }

  .se-business-hero__content {
    width: 100%;
    padding: 32px 22px 38px;
  }

  .se-business-hero h1 {
    max-width: 15ch;
    font-size: 2.35rem;
  }

  .se-business-hero__content > p:not(.se-eyebrow) {
    font-size: 0.98rem;
  }

  .se-business-hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .se-business-hero__actions .se-action-button {
    width: 100%;
  }

  .se-business-hero__facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .se-business-hero__facts li {
    padding: 13px 18px;
    border-right: 0;
    border-bottom: 1px solid #dce4ea;
  }

  .se-business-hero__facts li:last-child {
    border-bottom: 0;
  }

  .se-business-request__intro {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 10px;
  }

  .se-business-request__intro h2 {
    font-size: 1.72rem;
  }

  .se-business-quote-panel__head {
    min-height: 0;
    padding: 18px 16px;
  }

  .se-business-quote-panel__head > strong {
    display: none;
  }

  .se-business-page .se-step-nav {
    padding: 0 8px;
  }

  .se-business-page .se-step-nav li {
    min-height: 60px;
    gap: 6px;
    padding: 9px 7px;
  }

  .se-business-page .se-step-nav li > span {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .se-business-page .se-step-nav li small {
    display: none;
  }

  .se-business-page .se-form-step {
    padding: 20px 16px 8px;
  }

  .se-business-page .se-form-grid,
  .se-business-page .se-address-check__resolved {
    grid-template-columns: minmax(0, 1fr);
  }

  .se-business-page .se-address-check {
    padding: 15px;
  }

  .se-business-page .se-address-check__heading {
    display: grid;
    gap: 10px;
  }

  .se-business-page .se-address-check__badge {
    justify-self: start;
  }

  .se-business-page .se-address-check__inputs {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .se-business-page .se-address-check__inputs .se-field:first-child,
  .se-business-page .se-address-check__button {
    grid-column: 1 / -1;
  }

  .se-business-page .se-address-check__button {
    width: 100%;
  }

  .se-business-page .se-form-actions {
    padding: 15px 16px;
  }

  .se-business-request__aside {
    grid-template-columns: minmax(0, 1fr);
  }

  .se-business-request__support {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }
}

@media (max-width: 430px) {
  .se-business-page .se-step-nav li {
    justify-content: center;
  }

  .se-business-page .se-step-nav li > div {
    display: none;
  }

  .se-business-page .se-form-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .se-business-page .se-form-actions [data-se-next],
  .se-business-page .se-form-actions [data-se-submit] {
    width: 100%;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .se-hero-route,
  .se-hero-route.se-action-button {
    transition: none;
  }
}
