/*
Theme Name: Smartair Pro
Theme URI: https://smartair.dk
Author: HVLT / Codex
Description: Clean professional Smartair WordPress and WooCommerce theme.
Version: 1.0.0
Text Domain: smartair-pro
*/

:root {
  --sa-ink: #101820;
  --sa-muted: #65727f;
  --sa-line: #dce3e8;
  --sa-soft: #f4f7f8;
  --sa-panel: #ffffff;
  --sa-teal: #0098a6;
  --sa-blue: #194a6a;
  --sa-green: #41a35a;
  --sa-shadow: 0 18px 50px rgba(16, 24, 32, 0.12);
  --sa-radius: 8px;
  --sa-max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  color: var(--sa-ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.sa-container {
  width: min(var(--sa-max), calc(100% - 40px));
  max-width: 100%;
  margin: 0 auto;
}

.sa-site-header .sa-container {
  width: min(1560px, calc(100% - 40px));
}

.sa-main,
.sa-site-header,
.sa-site-footer {
  max-width: 100%;
  overflow-x: clip;
}

.sa-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 227, 232, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.sa-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  min-height: 74px;
  gap: 24px;
}

.sa-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.sa-brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--sa-ink), var(--sa-teal));
  font-size: 15px;
}

.sa-brand-text {
  display: grid;
  line-height: 1.05;
}

.sa-brand-text small {
  margin-top: 4px;
  color: var(--sa-muted);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.sa-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  color: #293744;
  font-size: 14px;
  font-weight: 650;
}

.sa-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sa-nav li {
  position: relative;
}

.sa-nav a {
  padding: 10px 2px;
}

.sa-nav a:hover,
.sa-nav .current-menu-item > a {
  color: var(--sa-teal);
}

.sa-nav a[href*="/b2b/"] {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(200, 75, 10, 0.34);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #f06413, #c84b0a);
  box-shadow: 0 10px 24px rgba(200, 75, 10, 0.2);
}

.sa-nav a[href*="/b2b/"]:hover,
.sa-nav .current-menu-item > a[href*="/b2b/"] {
  color: #fff;
  background: linear-gradient(135deg, #ff7a1a, #c84b0a);
}

.sa-nav .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 120;
  display: grid;
  min-width: 260px;
  gap: 0;
  padding: 10px;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  background: #fff;
  box-shadow: var(--sa-shadow);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.sa-nav .sub-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 12px;
}

.sa-nav li:hover > .sub-menu,
.sa-nav li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.sa-nav .sub-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

.sa-nav .sub-menu a:hover {
  color: var(--sa-ink);
  background: var(--sa-soft);
}

.sa-nav .menu-item-has-children > a::after {
  content: "⌄";
  margin-left: 6px;
  font-size: 13px;
  line-height: 1;
}

.sa-header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
}

.sa-header-search {
  display: flex;
  align-items: center;
  width: min(330px, 28vw);
  min-width: 240px;
  height: 44px;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  background: #fff;
  overflow: hidden;
}

.sa-header-search input[type="search"] {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 0;
  padding: 0 12px;
  color: var(--sa-ink);
  background: transparent;
  font-size: 14px;
  outline: 0;
}

.sa-header-search button {
  min-height: 42px;
  padding: 0 13px;
  border: 0;
  border-left: 1px solid var(--sa-line);
  border-radius: 0;
  color: #fff;
  background: var(--sa-teal);
  font-size: 13px;
  font-weight: 850;
}

.sa-header-search:focus-within {
  border-color: #b8dfe4;
  box-shadow: 0 0 0 3px rgba(0, 152, 166, 0.1);
}

.sa-b2b-login,
.sa-header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--sa-radius);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.sa-b2b-login {
  padding: 0 14px;
  border: 1px solid rgba(200, 75, 10, 0.34);
  color: #fff;
  background: linear-gradient(135deg, #f06413, #c84b0a);
  box-shadow: 0 10px 24px rgba(200, 75, 10, 0.2);
}

.sa-b2b-login:hover {
  color: #fff;
  border-color: rgba(200, 75, 10, 0.48);
  background: linear-gradient(135deg, #ff7a1a, #c84b0a);
}

.sa-header-cart {
  gap: 8px;
  padding: 0 12px 0 13px;
  border: 1px solid var(--sa-line);
  color: var(--sa-ink);
  background: #fff;
}

.sa-header-cart:hover {
  border-color: #b8dfe4;
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.1);
}

.sa-header-cart-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--sa-teal), var(--sa-green));
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.sa-header-cart-count {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  color: #fff;
  background: var(--sa-ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.sa-button,
.button,
button,
input[type="submit"],
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--sa-ink);
  border-radius: var(--sa-radius);
  color: #fff;
  background: var(--sa-ink);
  font-weight: 750;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.sa-button {
  gap: 8px;
}

.sa-button:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
.wp-element-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(16, 24, 32, 0.18);
}

.sa-button.is-secondary {
  color: var(--sa-ink);
  border-color: var(--sa-line);
  background: #fff;
}

.sa-hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  color: #fff;
  background: #111b22;
}

.sa-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(12, 20, 27, 0.88) 0%, rgba(12, 20, 27, 0.72) 42%, rgba(12, 20, 27, 0.14) 100%), var(--sa-hero-image);
  background-position: center;
  background-size: cover;
}

.sa-hero-inner {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 690px;
  padding: 86px 0 110px;
}

.sa-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #dff9fb;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 750;
}

.sa-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sa-green);
  box-shadow: 0 0 0 5px rgba(65, 163, 90, 0.18);
}

.sa-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

.sa-hero p {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.sa-hero-copy {
  max-width: 760px;
}

.sa-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.sa-hero-actions .sa-button.is-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.sa-hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.sa-hero-checks span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.sa-calculator-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(242, 90, 0, 0.22);
  border-radius: var(--sa-radius);
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(0, 158, 166, 0.08)),
    #fff;
  box-shadow: 0 18px 46px rgba(8, 18, 26, 0.08);
}

.sa-calculator-promo h2 {
  margin: 8px 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.sa-calculator-promo p {
  max-width: 850px;
  margin: 0;
  color: var(--sa-muted);
  font-weight: 700;
}

.sa-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.sa-calculator-promo .sa-button {
  min-width: 210px;
  min-height: 58px;
  justify-content: center;
  background: linear-gradient(135deg, #f25a00, #0098a6);
  box-shadow: 0 16px 34px rgba(242, 90, 0, 0.22);
}

.sa-calculator-promo .sa-button.is-secondary {
  color: var(--sa-ink);
  border-color: var(--sa-line);
  background: #fff;
  box-shadow: none;
}

.sa-proof {
  position: relative;
  margin-top: -52px;
  z-index: 2;
}

.sa-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  background: #fff;
  box-shadow: var(--sa-shadow);
}

.sa-proof-item {
  min-height: 104px;
  padding: 22px;
  border-right: 1px solid var(--sa-line);
}

.sa-proof-item:last-child {
  border-right: 0;
}

.sa-proof-item strong {
  display: block;
  color: var(--sa-ink);
  font-size: 15px;
}

.sa-proof-item span {
  display: block;
  margin-top: 6px;
  color: var(--sa-muted);
  font-size: 14px;
}

.sa-section {
  padding: 90px 0;
}

.sa-section.is-tight {
  padding: 58px 0;
}

.sa-section.is-soft {
  background: var(--sa-soft);
}

.sa-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--sa-teal);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sa-conversion-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  background: #fff;
  box-shadow: 0 14px 38px rgba(16, 24, 32, 0.08);
}

.sa-conversion-strip h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.sa-conversion-strip p {
  margin: 10px 0 0;
  color: var(--sa-muted);
}

.sa-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sa-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.sa-section-head h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

.sa-section-head p {
  max-width: 430px;
  margin: 0;
  color: var(--sa-muted);
}

.sa-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sa-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  background: #fff;
}

.sa-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

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

.sa-card-index {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 32px;
  border-radius: 999px;
  color: #fff;
  background: var(--sa-teal);
  font-size: 13px;
  font-weight: 800;
}

.sa-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.sa-product-tile {
  overflow: hidden;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  background: #fff;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.sa-product-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(16, 24, 32, 0.12);
}

.sa-product-tile figure {
  display: grid;
  place-items: center;
  height: 210px;
  margin: 0;
  padding: 28px;
  background: linear-gradient(180deg, #f9fbfc, #edf3f5);
}

.sa-product-tile img {
  max-height: 156px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.sa-product-tile div {
  padding: 20px;
}

.sa-product-tile h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.sa-product-tile p {
  margin: 0;
  color: var(--sa-muted);
  font-size: 14px;
}

.sa-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.sa-category-links a {
  padding: 10px 13px;
  border: 1px solid var(--sa-line);
  border-radius: 999px;
  color: #293744;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}

.sa-category-links a:hover {
  color: var(--sa-teal);
  border-color: #b8dfe4;
}

.sa-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: center;
}

.sa-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.sa-list li {
  padding: 16px 18px;
  border-left: 3px solid var(--sa-teal);
  background: #fff;
}

.sa-panel {
  padding: 34px;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  background: #fff;
  box-shadow: var(--sa-shadow);
}

.sa-panel h3 {
  margin-top: 0;
}

.sa-panel-strong {
  display: grid;
  gap: 10px;
}

.sa-panel-strong a {
  display: flex;
  justify-content: space-between;
  padding: 13px 14px;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  color: var(--sa-ink);
  background: var(--sa-soft);
  font-weight: 750;
}

.sa-panel-strong a::after {
  content: "→";
  color: var(--sa-teal);
}

.sa-panel-strong a:hover {
  border-color: #b8dfe4;
  background: #fff;
}

.sa-lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 46px;
  align-items: start;
}

.sa-lead-grid h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.sa-lead-grid p {
  max-width: 520px;
  color: var(--sa-muted);
}

.sa-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.sa-mini-proof span {
  padding: 9px 12px;
  border: 1px solid var(--sa-line);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 750;
}

.sa-lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  background: #fff;
  box-shadow: var(--sa-shadow);
}

.sa-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sa-lead-form label {
  display: grid;
  gap: 7px;
  color: #293744;
  font-size: 14px;
  font-weight: 750;
}

.sa-form-group {
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--sa-line);
}

.sa-form-group h3 {
  margin: 0;
  font-size: 18px;
}

.sa-form-group p {
  margin: 6px 0 0;
  color: var(--sa-muted);
  font-size: 14px;
}

.sa-lead-form textarea {
  resize: vertical;
}

.sa-license-upgrade {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: 34px;
  align-items: start;
}

.sa-license-upgrade h2 {
  margin: 10px 0 12px;
}

.sa-license-upgrade p {
  max-width: 620px;
  color: var(--sa-muted);
  font-weight: 700;
}

.sa-license-form input[type="file"] {
  width: 100%;
  padding: 14px;
  border: 1px dashed rgba(0, 152, 166, 0.5);
  border-radius: var(--sa-radius);
  background: #f7fbfc;
  color: var(--sa-ink);
  font-weight: 700;
}

.sa-upload-note {
  margin: -6px 0 0;
  color: var(--sa-muted);
  font-size: 13px;
  font-weight: 700;
}

.sa-form-message {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--sa-radius);
  font-weight: 750;
}

.sa-form-message.is-success {
  color: #23402b;
  background: #f1f8f3;
}

.sa-form-message.is-error {
  color: #7b271c;
  background: #fff1ee;
}

.sa-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--sa-ink), var(--sa-blue));
}

.sa-cta .sa-section-head p {
  color: rgba(255, 255, 255, 0.74);
}

.sa-breadcrumbs {
  border-bottom: 1px solid var(--sa-line);
  background: #fbfdfe;
}

.sa-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  width: min(var(--sa-max), calc(100% - 40px));
  margin: 0 auto;
  padding: 12px 0;
  color: var(--sa-muted);
  font-size: 13px;
  font-weight: 750;
  list-style: none;
}

.sa-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.sa-breadcrumbs li + li::before {
  content: "/";
  color: #9aa7b2;
}

.sa-breadcrumbs a {
  color: var(--sa-teal);
}

.sa-breadcrumbs span[aria-current="page"] {
  color: var(--sa-ink);
}

.sa-page-header {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--sa-line);
  background: var(--sa-soft);
}

.sa-page-header h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
}

.sa-content {
  padding: 64px 0 90px;
}

.sa-content .entry-content {
  max-width: 860px;
}

.sa-lead {
  color: var(--sa-muted);
  font-size: 20px;
  line-height: 1.55;
}

.sa-virtual-page {
  display: grid;
  gap: 26px;
}

.sa-virtual-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sa-virtual-sections section {
  padding: 22px;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  background: #fff;
}

.sa-virtual-sections h2 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.15;
}

.sa-virtual-sections p {
  margin: 0;
  color: var(--sa-muted);
}

.sa-virtual-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sa-calculator-wrap .sa-container {
  display: grid;
  gap: 30px;
}

.sa-calculator-header {
  position: relative;
  overflow: hidden;
  padding: 42px 0;
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(0, 98, 106, 0.92)),
    #101820;
  color: #fff;
}

.sa-calculator-header .sa-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 34px;
  align-items: center;
}

.sa-calculator-header .sa-label {
  background: rgba(255, 106, 0, 0.16);
  color: #ffb077;
}

.sa-calculator-hero-copy p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.55;
}

.sa-calculator-hero-visual {
  position: relative;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.sa-calculator-hero-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.94);
}

.sa-calculator-hero-stats {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.sa-calculator-hero-stats span {
  min-width: 0;
  padding: 12px 10px;
  border-radius: 8px;
  background: rgba(16, 24, 32, 0.9);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.sa-calculator-hero-stats strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.05;
}

.sa-calculator-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 360px;
}

.sa-calculator-flow article {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(255, 106, 0, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fff8f4);
}

.sa-calculator-flow-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #f25a00;
  color: #fff;
  font-weight: 900;
}

.sa-calculator-flow-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.sa-calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.sa-calculator-form,
.sa-calculator-summary,
.sa-calculator-table-wrap {
  border: 1px solid rgba(220, 227, 232, 0.9);
  border-radius: var(--sa-radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(8, 18, 26, 0.07);
}

.sa-calculator-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
}

.sa-calculator-form > div:not(.sa-calculator-form-head) {
  display: flex;
  flex-direction: column;
  min-height: 86px;
}

.sa-calculator-form-head {
  grid-column: 1 / -1;
  padding-bottom: 6px;
}

.sa-calculator-form-head h2 {
  margin: 8px 0 6px;
  font-size: 30px;
  line-height: 1;
}

.sa-calculator-form-head p {
  margin: 0;
  color: var(--sa-muted);
}

.sa-calculator-form label {
  display: block;
  margin: 0 0 8px;
  font-weight: 800;
}

.sa-calculator-form input,
.sa-calculator-form select {
  width: 100%;
  height: 52px;
  min-height: 52px;
  border-color: #cfd9df;
  background: #fbfdfe;
  font-weight: 800;
}

.sa-calculator-form button {
  grid-column: 1 / -1;
  min-height: 58px;
  border: 0;
  border-radius: var(--sa-radius);
  background: linear-gradient(135deg, #0098a6, #37a560);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 158, 166, 0.24);
}

.sa-calculator-summary {
  position: sticky;
  top: 110px;
  padding: 0;
  overflow: hidden;
  border-color: rgba(16, 24, 32, 0.08);
}

.sa-calculator-summary-top {
  padding: 28px 28px 24px;
  background: linear-gradient(135deg, #101820, #00636f);
  color: #fff;
}

.sa-calculator-summary-top .sa-label {
  background: rgba(255, 255, 255, 0.12);
  color: #9bedf2;
}

.sa-calculator-summary h2 {
  margin: 8px 0 18px;
  font-size: 44px;
  line-height: 1;
}

.sa-calculator-summary dl {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 18px 28px 6px;
}

.sa-calculator-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--sa-line);
}

.sa-calculator-summary dl div.is-total {
  margin: 12px 0 0;
  padding: 18px;
  border: 0;
  border-radius: 8px;
  background: #fff4ec;
}

.sa-calculator-summary dt {
  color: var(--sa-muted);
  font-weight: 800;
}

.sa-calculator-summary dd {
  margin: 0;
  color: var(--sa-ink);
  font-weight: 900;
  text-align: right;
}

.sa-calculator-summary .is-total dd {
  color: #d94d00;
  font-size: 22px;
}

.sa-calculator-saving {
  margin: 16px 28px;
  padding: 14px;
  border: 1px solid rgba(0, 158, 166, 0.22);
  border-radius: var(--sa-radius);
  background: #eefbf8;
  color: #164433;
  font-weight: 800;
}

.sa-calculator-note {
  margin: 14px 28px 18px;
  color: var(--sa-muted);
  font-size: 14px;
  font-weight: 700;
}

.sa-calculator-quote {
  width: calc(100% - 56px);
  margin: 0 28px 28px;
  justify-content: center;
}

.sa-calculator-table-wrap {
  overflow: hidden;
}

.sa-calculator-table-wrap h2 {
  margin: 0;
  padding: 26px 28px 10px;
  font-size: 26px;
}

.sa-calculator-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 0;
}

.sa-calculator-table th,
.sa-calculator-table td {
  padding: 17px 28px;
  border-top: 1px solid var(--sa-line);
  text-align: left;
  vertical-align: top;
}

.sa-calculator-table th {
  color: var(--sa-muted);
  font-size: 13px;
  text-transform: uppercase;
}

.sa-calculator-table td {
  font-weight: 800;
}

.sa-calculator-table td:first-child {
  min-width: 280px;
}

.sa-calculator-table a {
  color: var(--sa-ink);
  text-decoration: none;
}

.sa-calculator-table a:hover {
  color: var(--sa-teal);
}

.sa-calculator-table small {
  display: block;
  margin-top: 5px;
  color: var(--sa-muted);
  font-size: 13px;
  font-weight: 700;
}

.sa-quote-header {
  background: linear-gradient(135deg, #101820, #00636f);
  color: #fff;
}

.sa-quote-header p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
}

.sa-quote-wrap .sa-container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.sa-quote-form,
.sa-quote-summary,
.sa-quote-success {
  border: 1px solid rgba(220, 227, 232, 0.9);
  border-radius: var(--sa-radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(8, 18, 26, 0.07);
}

.sa-quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
}

.sa-quote-form-head,
.sa-quote-wide,
.sa-quote-errors {
  grid-column: 1 / -1;
}

.sa-quote-form-head h2,
.sa-quote-success h2,
.sa-quote-summary h2 {
  margin: 8px 0 6px;
  font-size: 32px;
  line-height: 1.05;
}

.sa-quote-form label {
  display: block;
  margin: 0 0 8px;
  font-weight: 800;
}

.sa-quote-form input,
.sa-quote-form select,
.sa-quote-form textarea {
  width: 100%;
  border-color: #cfd9df;
  background: #fbfdfe;
  font-weight: 750;
}

.sa-quote-form input,
.sa-quote-form select {
  height: 52px;
}

.sa-quote-form textarea {
  min-height: 128px;
  resize: vertical;
}

.sa-quote-form button {
  grid-column: 1 / -1;
  min-height: 58px;
  border: 0;
  border-radius: var(--sa-radius);
  background: linear-gradient(135deg, #0098a6, #37a560);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.sa-quote-errors {
  padding: 14px;
  border: 1px solid rgba(185, 28, 28, 0.18);
  border-radius: var(--sa-radius);
  background: #fff1f1;
  color: #8f1d1d;
  font-weight: 800;
}

.sa-quote-errors p {
  margin: 0;
}

.sa-quote-success {
  padding: 32px;
}

.sa-quote-summary {
  position: sticky;
  top: 110px;
  padding: 28px;
}

.sa-quote-summary dl {
  display: grid;
  gap: 0;
  margin: 18px 0;
}

.sa-quote-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--sa-line);
}

.sa-quote-summary dl div.is-total {
  margin-top: 10px;
  padding: 16px;
  border: 0;
  border-radius: 8px;
  background: #fff4ec;
}

.sa-quote-summary dt {
  color: var(--sa-muted);
  font-weight: 800;
}

.sa-quote-summary dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.sa-quote-summary .is-total dd {
  color: #d94d00;
  font-size: 20px;
}

.sa-quote-summary p {
  color: var(--sa-muted);
  font-weight: 750;
}

.woocommerce-account .sa-content .entry-content {
  max-width: none;
}

.sa-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.sa-site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #0d151b;
}

.sa-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 36px;
  padding: 58px 0;
}

.sa-footer-grid h2,
.sa-footer-grid h3 {
  margin: 0 0 14px;
  color: #fff;
}

.sa-footer-grid p,
.sa-footer-grid a {
  color: rgba(255, 255, 255, 0.72);
}

.sa-footer-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sa-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-result-count,
.woocommerce-ordering {
  color: var(--sa-muted);
}

.woocommerce .woocommerce-breadcrumb.sa-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--sa-muted);
  font-size: 14px;
  font-weight: 750;
}

.woocommerce .woocommerce-breadcrumb.sa-breadcrumb a {
  color: #293744;
}

.woocommerce .woocommerce-breadcrumb.sa-breadcrumb a:hover {
  color: var(--sa-teal);
}

.sa-breadcrumb-separator {
  color: #9aa7b2;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  display: flex;
  flex-direction: column;
  float: none;
  width: auto;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  background: #fff;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  border-color: #b8dfe4;
  box-shadow: 0 16px 38px rgba(16, 24, 32, 0.1);
}

.woocommerce ul.products li.product a img {
  display: block;
  width: 100%;
  height: 230px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 20px;
  background: var(--sa-soft);
}

.woocommerce div.product div.images img {
  display: block;
  width: 100%;
  max-height: min(620px, 72vh);
  object-fit: contain;
  background: var(--sa-soft);
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--sa-ink);
  font-weight: 800;
}

.woocommerce ul.products li.product .price {
  min-height: 74px;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  min-height: 50px;
  margin-top: auto;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--sa-teal), var(--sa-green)) !important;
  box-shadow: 0 10px 22px rgba(0, 152, 166, 0.22);
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
}

.woocommerce ul.products li.product .button::after,
.woocommerce-page ul.products li.product .button::after {
  content: "→";
  margin-left: 10px;
  font-size: 16px;
  line-height: 1;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .button:hover {
  background: linear-gradient(135deg, #007f8b, #318b4a) !important;
  box-shadow: 0 14px 28px rgba(0, 152, 166, 0.26);
}

.page-id-806 .woocommerce ul.products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 18px;
}

.woocommerce ul.products li.product_cat-support-klippekort,
.woocommerce-page ul.products li.product_cat-support-klippekort {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border-color: rgba(200, 75, 10, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 247, 238, 0.74), rgba(255, 255, 255, 0.98)),
    #fff;
}

.woocommerce ul.products li.product_cat-support-klippekort::before,
.woocommerce-page ul.products li.product_cat-support-klippekort::before {
  content: "Support";
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #b94d00;
  background: #fff3e6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce ul.products li.product_cat-support-klippekort:hover,
.woocommerce-page ul.products li.product_cat-support-klippekort:hover {
  border-color: rgba(200, 75, 10, 0.34);
  box-shadow: 0 18px 42px rgba(200, 75, 10, 0.12);
}

.woocommerce ul.products li.product_cat-support-klippekort a img,
.woocommerce-page ul.products li.product_cat-support-klippekort a img {
  display: block;
}

.woocommerce ul.products li.product_cat-support-klippekort .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product_cat-support-klippekort .woocommerce-loop-product__title {
  min-height: 82px;
  margin-bottom: 18px;
  color: var(--sa-ink);
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: 0;
}

.woocommerce ul.products li.product_cat-support-klippekort .woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product_cat-support-klippekort .woocommerce-LoopProduct-link {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.woocommerce ul.products li.product_cat-support-klippekort .price,
.woocommerce-page ul.products li.product_cat-support-klippekort .price {
  min-height: 0;
  margin-top: auto;
  color: var(--sa-ink);
  font-size: 22px;
  line-height: 1.2;
}

.woocommerce ul.products li.product_cat-support-klippekort .sa-vat-price,
.woocommerce-page ul.products li.product_cat-support-klippekort .sa-vat-price {
  display: block;
  margin-top: 10px;
  color: var(--sa-muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.woocommerce ul.products li.product_cat-support-klippekort .button,
.woocommerce-page ul.products li.product_cat-support-klippekort .button {
  margin-top: 18px;
  background: linear-gradient(135deg, #f06413, #c84b0a) !important;
  box-shadow: 0 12px 26px rgba(200, 75, 10, 0.24);
}

.woocommerce ul.products li.product_cat-support-klippekort .button:hover,
.woocommerce-page ul.products li.product_cat-support-klippekort .button:hover {
  background: linear-gradient(135deg, #ff7a1a, #c84b0a) !important;
  box-shadow: 0 16px 32px rgba(200, 75, 10, 0.3);
}

.woocommerce ul.products li.product .added_to_cart.wc-forward,
.woocommerce-page ul.products li.product .added_to_cart.wc-forward {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: 10px;
  border: 1px solid #b8dfe4;
  border-radius: 8px;
  color: #007f8b;
  background: #f3fbfc;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.woocommerce ul.products li.product .added_to_cart.wc-forward::after,
.woocommerce-page ul.products li.product .added_to_cart.wc-forward::after {
  content: "→";
  margin-left: 8px;
}

.woocommerce ul.products li.product .added_to_cart.wc-forward:hover,
.woocommerce-page ul.products li.product .added_to_cart.wc-forward:hover {
  color: #fff;
  border-color: var(--sa-teal);
  background: var(--sa-teal);
}

.sa-vat-price {
  display: block;
  margin-top: 7px;
  color: var(--sa-muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.woocommerce div.product p.price .sa-vat-price,
.woocommerce div.product span.price .sa-vat-price {
  font-size: 15px;
}

.sa-package-summary {
  display: grid;
  gap: 4px;
  margin: 18px 0;
  padding: 16px 18px;
  border: 1px solid rgba(0, 152, 166, 0.24);
  border-radius: 8px;
  background: #eefbfc;
}

.sa-package-summary strong {
  color: var(--sa-ink);
  font-size: 16px;
  font-weight: 900;
}

.sa-package-summary span {
  color: var(--sa-muted);
  font-size: 14px;
  font-weight: 700;
}

.sa-package-contents {
  width: 100%;
  margin: 18px 0;
  overflow-x: auto;
  border: 1px solid var(--sa-line);
  border-radius: 8px;
  background: #fff;
}

.sa-package-contents table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.sa-package-contents th,
.sa-package-contents td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--sa-line);
  text-align: left;
  vertical-align: top;
}

.sa-package-contents th {
  color: var(--sa-muted);
  background: var(--sa-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sa-package-contents tr:last-child td {
  border-bottom: 0;
}

.sa-package-contents td {
  color: var(--sa-ink);
  font-weight: 800;
}

.sa-package-contents td:nth-child(2),
.sa-package-contents td:nth-child(3) {
  white-space: nowrap;
}

.sa-package-contents a {
  color: var(--sa-teal);
  text-decoration: none;
}

.sa-package-contents small {
  display: block;
  margin-top: 5px;
  color: var(--sa-muted);
  font-size: 13px;
  font-weight: 650;
}

.sa-b2b-discount {
  display: grid;
  gap: 4px;
  width: min(100%, 210px);
  max-width: 100%;
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid #cbe9d4;
  border-radius: 8px;
  color: #1f5b2e;
  background: #eaf7ee;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.sa-b2b-discount span {
  display: block;
}

.sa-floating-cart {
  position: fixed;
  top: 158px;
  right: 18px;
  z-index: 40;
  display: grid;
  gap: 12px;
  width: 282px;
  padding: 16px;
  border: 1px solid #b8dfe4;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(16, 24, 32, 0.16);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, width 0.2s ease, padding 0.2s ease, box-shadow 0.2s ease;
}

.sa-floating-cart-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid #b8dfe4;
  border-radius: 8px;
  color: #007f8b;
  background: #f3fbfc;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.sa-floating-cart-toggle-closed {
  display: none;
}

.sa-floating-cart.is-collapsed {
  width: 64px;
  min-height: 146px;
  padding: 12px 8px;
  transform: translateX(0);
}

.sa-floating-cart.is-collapsed .sa-floating-cart-toggle {
  position: static;
  display: grid;
  place-items: center;
  width: 48px;
  min-height: 122px;
  padding: 8px 6px;
  color: #fff;
  border-color: var(--sa-ink);
  background: linear-gradient(135deg, var(--sa-ink), var(--sa-teal));
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.sa-floating-cart.is-collapsed .sa-floating-cart-toggle-open {
  display: none;
}

.sa-floating-cart.is-collapsed .sa-floating-cart-toggle-closed {
  display: inline;
}

.sa-floating-cart.is-collapsed .sa-floating-cart-head,
.sa-floating-cart.is-collapsed .sa-floating-cart-row,
.sa-floating-cart.is-collapsed .sa-floating-cart-saving,
.sa-floating-cart.is-collapsed .sa-floating-cart-note,
.sa-floating-cart.is-collapsed .sa-floating-cart-actions {
  display: none;
}

.sa-floating-cart-head,
.sa-floating-cart-row,
.sa-floating-cart-saving {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sa-floating-cart-head {
  padding-right: 68px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--sa-line);
  color: var(--sa-ink);
  font-size: 18px;
  font-weight: 900;
}

.sa-floating-cart-head strong {
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--sa-ink);
  font-size: 14px;
}

.sa-floating-cart-row {
  color: var(--sa-muted);
  font-size: 14px;
  font-weight: 750;
}

.sa-floating-cart-row strong {
  color: var(--sa-ink);
}

.sa-floating-cart-saving {
  align-items: flex-start;
  flex-direction: column;
  padding: 12px;
  border-radius: 8px;
  color: #1f5b2e;
  background: #eaf7ee;
  font-size: 13px;
  font-weight: 800;
}

.sa-floating-cart-saving strong {
  font-size: 16px;
}

.sa-floating-cart-note {
  margin: 0;
  color: var(--sa-muted);
  font-size: 13px;
  font-weight: 700;
}

.sa-floating-cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sa-floating-cart-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 8px;
  color: #fff;
  background: var(--sa-ink);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.sa-floating-cart-actions a:first-child {
  color: #007f8b;
  border: 1px solid #b8dfe4;
  background: #f3fbfc;
}

.woocommerce div.product div.images img,
.woocommerce-cart table.cart,
.woocommerce-checkout form.checkout,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  background: #fff;
}

.sa-account-hero,
.sa-account-dashboard {
  margin-bottom: 28px;
  padding: 30px;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  background: linear-gradient(135deg, #f7fbfc, #eef8f1);
}

.sa-account-hero h2,
.sa-account-dashboard h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.woocommerce-MyAccount-content .sa-account-dashboard {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 24px;
}

.woocommerce-MyAccount-content .sa-account-dashboard h2 {
  max-width: 680px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
}

.woocommerce-MyAccount-content .sa-account-dashboard p {
  max-width: 680px;
  margin-top: 4px;
}

.sa-account-hero p,
.sa-account-dashboard p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--sa-muted);
  font-size: 17px;
}

.sa-account-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.sa-account-benefits span {
  padding: 9px 12px;
  border: 1px solid #b8dfe4;
  border-radius: 999px;
  color: #007f8b;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.sa-b2b-hero {
  position: relative;
  padding: 86px 0;
  overflow: hidden;
  color: #fff;
  background: #101820;
}

.sa-b2b-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(12, 20, 27, 0.92), rgba(12, 20, 27, 0.72)), var(--sa-hero-image);
  background-position: center;
  background-size: cover;
}

.sa-b2b-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 44px;
  align-items: center;
}

.sa-b2b-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

.sa-b2b-hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.sa-b2b-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--sa-radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.sa-b2b-panel h2 {
  margin: 0 0 18px;
  font-size: 26px;
}

.sa-b2b-panel ul,
.sa-b2b-steps article ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sa-b2b-panel li {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.sa-b2b-panel li:first-child {
  border-top: 0;
}

.sa-b2b-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sa-b2b-steps article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  background: #fff;
}

.sa-b2b-steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--sa-teal), var(--sa-green));
  font-weight: 900;
}

.sa-b2b-steps h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.sa-b2b-steps p {
  margin: 0;
  color: var(--sa-muted);
}

.sa-b2b-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: 46px;
  align-items: start;
}

.sa-b2b-form-grid h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.sa-b2b-form-grid p {
  max-width: 560px;
  color: var(--sa-muted);
  font-size: 17px;
}

.woocommerce-account .u-columns,
.woocommerce-account .col2-set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.woocommerce-account .col2-set::before,
.woocommerce-account .col2-set::after {
  display: none;
}

.woocommerce-account .col2-set .col-1,
.woocommerce-account .col2-set .col-2 {
  float: none;
  width: auto;
  max-width: none;
}

.woocommerce-account .woocommerce {
  width: 100%;
}

body.woocommerce-account:not(.logged-in) .woocommerce form.login,
body.woocommerce-account:not(.logged-in) .woocommerce form.register {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.woocommerce-account .u-column1,
.woocommerce-account .u-column2,
.woocommerce form.login,
.woocommerce form.register {
  height: 100%;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 24, 32, 0.08);
}

.woocommerce-account .u-column1 h2,
.woocommerce-account .u-column2 h2 {
  margin: 0 0 18px;
  font-size: 26px;
}

.woocommerce-account form .form-row,
.woocommerce-account form .woocommerce-form-row {
  float: none;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
}

.woocommerce-account form .form-row label,
.woocommerce-account form .woocommerce-form-row label {
  display: block;
  margin: 0 0 8px;
  color: var(--sa-ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.woocommerce-account form .form-row input.input-text,
.woocommerce-account form .woocommerce-form-row input.input-text {
  width: 100%;
  min-height: 52px;
  font-size: 16px;
}

.woocommerce-account form .password-input {
  display: block;
  width: 100%;
}

.woocommerce-account form .show-password-input {
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

.woocommerce-account .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
  font-size: 15px;
  font-weight: 800;
}

.woocommerce-account .woocommerce-form-login__rememberme input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0;
}

.woocommerce-account .woocommerce-form-login .button,
.woocommerce-account .woocommerce-form-register .button {
  width: auto;
  min-width: 150px;
  padding-inline: 26px;
}

.woocommerce-account .woocommerce-LostPassword {
  margin: 18px 0 0;
  color: var(--sa-muted);
  font-weight: 700;
}

.woocommerce-account .woocommerce-LostPassword a {
  color: var(--sa-blue);
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  padding: 16px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 11px 12px;
  border-radius: 7px;
  color: #293744;
  font-weight: 800;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--sa-teal), var(--sa-green));
}

.woocommerce-account .woocommerce-MyAccount-content {
  padding: 24px;
}

body.woocommerce-account.logged-in .woocommerce {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-navigation,
body.woocommerce-account.logged-in .woocommerce-MyAccount-content {
  float: none;
  width: auto;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-navigation {
  grid-column: 1;
  grid-row: 1;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content > p:first-of-type {
  margin-top: 0;
}

body.woocommerce-account.logged-in .woocommerce-MyAccount-content a {
  color: var(--sa-blue);
  font-weight: 800;
}

.woocommerce div.product div.summary {
  padding: 24px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--sa-teal);
  background: var(--sa-soft);
}

input,
textarea,
select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  min-height: 44px;
  border: 1px solid var(--sa-line);
  border-radius: var(--sa-radius);
  padding: 10px 12px;
  color: var(--sa-ink);
  background: #fff;
}

.sa-b2b-popup {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1200;
  width: min(420px, calc(100vw - 32px));
  padding: 28px;
  border: 1px solid rgba(179, 74, 16, 0.34);
  border-radius: 8px;
  color: #1b130f;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 238, 0.94)),
    linear-gradient(135deg, #ff7a1a, #f3a52f);
  box-shadow: 0 24px 70px rgba(19, 31, 43, 0.22);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.sa-b2b-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sa-b2b-popup::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(90deg, #ff6a00, #ffb347);
  clip-path: inset(0 0 calc(100% - 7px) 0);
}

.sa-b2b-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #1b130f;
  background: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.sa-b2b-popup-close:hover {
  background: #fff;
}

.sa-b2b-popup-kicker {
  margin: 0 0 8px;
  color: #b94d00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sa-b2b-popup h2 {
  margin: 0 34px 10px 0;
  color: #101820;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: 0;
}

.sa-b2b-popup p {
  margin: 0 0 18px;
  color: #4f5d6b;
  font-size: 16px;
  line-height: 1.55;
}

.sa-b2b-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sa-b2b-popup-primary,
.sa-b2b-popup-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.sa-b2b-popup-primary {
  color: #fff;
  background: linear-gradient(135deg, #f06413, #c84b0a);
  box-shadow: 0 12px 30px rgba(200, 75, 10, 0.3);
}

.sa-b2b-popup-primary:hover {
  color: #fff;
  transform: translateY(-1px);
}

.sa-b2b-popup-secondary {
  border: 1px solid rgba(16, 24, 32, 0.14);
  color: #101820;
  background: #fff;
}

.sa-b2b-popup-secondary:hover {
  color: var(--sa-teal);
}

.sa-support-intro,
.sa-support-panel {
  position: relative;
  margin: 0 0 34px;
  padding: 34px;
  border: 1px solid rgba(0, 152, 166, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(243, 251, 252, 0.96), rgba(255, 255, 255, 0.98)),
    #fff;
}

.sa-support-intro h2,
.sa-support-panel h2 {
  max-width: 780px;
  margin: 0 0 14px;
  color: var(--sa-ink);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.sa-support-intro p,
.sa-support-panel p {
  max-width: 760px;
  color: var(--sa-muted);
  font-size: 18px;
  line-height: 1.65;
}

.sa-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.sa-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 36px;
}

.sa-support-grid article {
  padding: 26px;
  border: 1px solid var(--sa-line);
  border-radius: 8px;
  background: #fff;
}

.sa-support-grid h3 {
  margin: 0 0 10px;
  color: var(--sa-ink);
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: 0;
}

.sa-support-grid p,
.sa-support-grid li {
  color: var(--sa-muted);
}

.sa-support-grid ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.sa-support-panel {
  margin-top: 40px;
  border-color: rgba(200, 75, 10, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 247, 238, 0.96), rgba(255, 255, 255, 0.98)),
    #fff;
}

.sa-support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 20px 0 24px;
}

.sa-support-list p {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(200, 75, 10, 0.18);
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
}

.sa-solution-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 42px;
}

.sa-solution-hero img,
.sa-solution-image {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(16, 24, 32, 0.12);
}

.sa-solution-hero img {
  aspect-ratio: 16 / 9;
}

.sa-solution-hero h2 {
  margin: 0 0 16px;
  color: var(--sa-ink);
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

.sa-solution-hero p {
  color: var(--sa-muted);
  font-size: 18px;
  line-height: 1.68;
}

.sa-solution-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0 44px;
}

.sa-solution-points article,
.sa-solution-band {
  padding: 26px;
  border: 1px solid var(--sa-line);
  border-radius: 8px;
  background: #fff;
}

.sa-solution-points h3,
.sa-solution-band h3 {
  margin: 0 0 10px;
  color: var(--sa-ink);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

.sa-solution-points p,
.sa-solution-band p,
.sa-solution-band li {
  color: var(--sa-muted);
}

.sa-solution-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.64fr);
  gap: 28px;
  align-items: start;
  margin: 34px 0;
  background:
    linear-gradient(135deg, rgba(243, 251, 252, 0.96), rgba(255, 255, 255, 0.98)),
    #fff;
}

.sa-solution-band ul {
  margin: 0;
  padding-left: 20px;
}

.sa-solution-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sa-solution-card {
  overflow: hidden;
  border: 1px solid var(--sa-line);
  border-radius: 8px;
  color: var(--sa-ink);
  background: #fff;
}

.sa-solution-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sa-solution-card div {
  padding: 22px;
}

.sa-solution-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: 0;
}

.sa-solution-card p {
  margin: 0;
  color: var(--sa-muted);
}

.sa-solution-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.12);
}

@media (max-width: 1380px) {
  .sa-floating-cart {
    display: none;
  }
}

@media (max-width: 920px) {
  .sa-header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .sa-nav,
  .sa-nav ul,
  .sa-header-actions {
    flex-wrap: wrap;
  }

  .sa-header-actions {
    width: 100%;
  }

  .sa-header-search {
    width: 100%;
    min-width: 100%;
  }

  .sa-nav .sub-menu {
    position: static;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }

  .sa-hero,
  .sa-hero-inner {
    min-height: 620px;
  }

  .sa-proof-grid,
  .sa-card-grid,
  .sa-product-grid,
  .sa-split,
  .sa-lead-grid,
  .sa-b2b-hero-grid,
  .sa-b2b-steps,
  .sa-b2b-form-grid,
  .woocommerce-account .u-columns,
  .sa-footer-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr 1fr;
  }

  .sa-calculator-grid {
    grid-template-columns: 1fr;
  }

  .sa-calculator-promo,
  .sa-license-upgrade,
  .sa-quote-wrap .sa-container {
    grid-template-columns: 1fr;
  }

  .sa-promo-actions {
    justify-content: stretch;
  }

  .sa-calculator-promo .sa-button,
  .sa-promo-actions .sa-button {
    width: 100%;
  }

  .sa-calculator-header .sa-container {
    grid-template-columns: 1fr;
  }

  .sa-calculator-flow {
    grid-template-columns: 1fr;
  }

  .sa-conversion-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .sa-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  body.woocommerce-account.logged-in .woocommerce {
    grid-template-columns: 1fr;
  }

  body.woocommerce-account.logged-in .woocommerce-MyAccount-navigation,
  body.woocommerce-account.logged-in .woocommerce-MyAccount-content {
    grid-column: 1;
    grid-row: auto;
  }

  .sa-calculator-summary {
    position: static;
  }

  .sa-quote-summary {
    position: static;
  }

  .sa-calculator-table-wrap {
    overflow-x: auto;
  }

  .page-id-806 .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sa-solution-hero,
  .sa-solution-band {
    grid-template-columns: 1fr;
  }

  .sa-solution-points,
  .sa-solution-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .sa-container {
    width: min(var(--sa-max), calc(100% - 28px));
  }

  .sa-calculator-header {
    padding: 44px 0;
  }

  .sa-calculator-hero-copy p {
    font-size: 16px;
  }

  .sa-calculator-hero-visual {
    min-height: 250px;
  }

  .sa-calculator-hero-visual img {
    height: 250px;
    padding: 22px;
  }

  .sa-calculator-hero-stats {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .sa-calculator-hero-stats span {
    padding: 10px 6px;
    font-size: 11px;
  }

  .sa-calculator-hero-stats strong {
    font-size: 18px;
  }

  .sa-calculator-table,
  .sa-calculator-table tbody,
  .sa-calculator-table tr,
  .sa-calculator-table td {
    display: block;
  }

  .sa-calculator-table thead {
    display: none;
  }

  .sa-calculator-table tr {
    padding: 14px;
    border-top: 1px solid var(--sa-line);
  }

  .sa-calculator-table td {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    border: 0;
    text-align: right;
  }

  .sa-calculator-table td:first-child {
    min-width: 0;
    display: block;
    text-align: left;
  }

  .sa-calculator-table td:nth-child(2)::before {
    content: "Antal";
  }

  .sa-calculator-table td:nth-child(3)::before {
    content: "Stk. pris";
  }

  .sa-calculator-table td:nth-child(4)::before {
    content: "Total";
  }

  .sa-calculator-table td:nth-child(5)::before {
    content: "Besparelse";
  }

  .sa-calculator-table td::before {
    color: var(--sa-muted);
    font-weight: 900;
    text-align: left;
  }

  .sa-hero h1 {
    font-size: 44px;
  }

  .sa-hero p {
    font-size: 18px;
  }

  .sa-proof-grid,
  .sa-card-grid,
  .sa-product-grid,
  .sa-split,
  .sa-lead-grid,
  .sa-b2b-hero-grid,
  .sa-b2b-steps,
  .sa-b2b-form-grid,
  .woocommerce-account .u-columns,
  .sa-footer-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .sa-form-row {
    grid-template-columns: 1fr;
  }

  .sa-proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--sa-line);
  }

  .sa-proof-item:last-child {
    border-bottom: 0;
  }

  .sa-footer-bottom {
    flex-direction: column;
  }

  .sa-b2b-login,
  .sa-header-cart,
  .sa-header-actions .sa-button {
    flex: 1 1 auto;
  }

  .sa-b2b-popup {
    right: 14px;
    bottom: 14px;
    padding: 22px;
  }

  .sa-b2b-popup h2 {
    font-size: 23px;
  }

  .sa-support-grid,
  .sa-support-list,
  .page-id-806 .woocommerce ul.products,
  .sa-solution-points,
  .sa-solution-cards {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1361px) {
  .sa-floating-cart {
    display: grid;
  }
}

@media (max-width: 1540px) {
  .sa-site-header .sa-container {
    width: min(var(--sa-max), calc(100% - 32px));
  }

  .sa-header-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 14px 0;
  }

  .sa-brand {
    max-width: 100%;
  }

  .sa-nav,
  .sa-nav ul {
    width: 100%;
  }

  .sa-nav {
    overflow-x: visible;
    padding-bottom: 2px;
  }

  .sa-nav ul {
    flex-wrap: wrap;
    gap: 8px;
  }

  .sa-nav li {
    flex: 1 1 auto;
    min-width: 0;
  }

  .sa-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 38px;
    padding: 0 10px;
    border: 1px solid var(--sa-line);
    border-radius: 8px;
    background: #fff;
    white-space: nowrap;
  }

  .sa-nav .sub-menu {
    display: none;
  }

  .sa-nav .sub-menu::before {
    display: none;
  }

  .sa-nav .menu-item-has-children > a::after {
    margin-left: 7px;
    font-size: 12px;
  }

  .sa-nav li.is-open > a {
    color: var(--sa-teal);
    border-color: #b8dfe4;
    background: #f3fbfc;
  }

  .sa-nav li.is-open > a::after {
    content: "⌃";
  }

  .sa-nav li.is-open > .sub-menu {
    position: fixed;
    top: var(--sa-mobile-menu-top, 178px);
    right: 12px;
    left: 12px;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    width: auto;
    max-height: min(58vh, 430px);
    min-width: 0;
    padding: 10px;
    overflow: auto;
    border: 1px solid #d9e2e8;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 48px rgba(16, 24, 32, 0.18);
    opacity: 1;
    visibility: visible;
    transform: none;
    -webkit-overflow-scrolling: touch;
  }

  .sa-nav li.is-open > .sub-menu a {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 9px;
    border: 1px solid var(--sa-line);
    border-radius: 8px;
    color: var(--sa-ink);
    background: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.12;
    white-space: normal;
  }

  .sa-header-actions {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    width: 100%;
    gap: 8px;
  }

  .sa-header-search {
    width: 100%;
    min-width: 0;
  }

  .sa-header-search input[type="search"] {
    min-width: 0;
  }

  .sa-b2b-login,
  .sa-header-cart,
  .sa-header-actions .sa-button {
    min-height: 42px;
    padding-inline: 12px;
  }
}

@media (max-width: 1360px) {
  body {
    overflow-x: hidden;
  }

  .sa-container {
    width: min(var(--sa-max), calc(100% - 32px));
  }

  .sa-site-header .sa-container {
    width: min(var(--sa-max), calc(100% - 32px));
  }

  .sa-virtual-sections {
    grid-template-columns: 1fr;
  }

  .sa-lead {
    font-size: 17px;
  }

  .sa-site-header {
    position: sticky;
  }

  .sa-header-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 14px 0;
  }

  .sa-brand {
    max-width: 100%;
  }

  .sa-nav,
  .sa-nav ul {
    width: 100%;
  }

  .sa-nav {
    overflow-x: visible;
    padding-bottom: 2px;
  }

  .sa-nav ul {
    flex-wrap: wrap;
    gap: 8px;
  }

  .sa-nav li {
    flex: 1 1 auto;
    min-width: 0;
  }

  .sa-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 38px;
    padding: 0 10px;
    border: 1px solid var(--sa-line);
    border-radius: 8px;
    background: #fff;
    white-space: nowrap;
  }

  .sa-nav .sub-menu {
    display: none;
  }

  .sa-nav .sub-menu::before {
    display: none;
  }

  .sa-nav .menu-item-has-children > a::after {
    margin-left: 7px;
    font-size: 12px;
  }

  .sa-nav li.is-open > a {
    color: var(--sa-teal);
    border-color: #b8dfe4;
    background: #f3fbfc;
  }

  .sa-nav li.is-open > a::after {
    content: "⌃";
  }

  .sa-nav li.is-open > .sub-menu {
    position: fixed;
    top: var(--sa-mobile-menu-top, 178px);
    right: 12px;
    left: 12px;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    width: auto;
    max-height: min(58vh, 430px);
    min-width: 0;
    padding: 10px;
    overflow: auto;
    border: 1px solid #d9e2e8;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 48px rgba(16, 24, 32, 0.18);
    opacity: 1;
    visibility: visible;
    transform: none;
    -webkit-overflow-scrolling: touch;
  }

  .sa-nav li.is-open > .sub-menu a {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 9px;
    border: 1px solid var(--sa-line);
    border-radius: 8px;
    color: var(--sa-ink);
    background: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.12;
    white-space: normal;
  }

  .sa-header-actions {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    width: 100%;
    gap: 8px;
  }

  .sa-header-search {
    width: 100%;
    min-width: 0;
  }

  .sa-header-search input[type="search"] {
    min-width: 0;
  }

  .sa-b2b-login,
  .sa-header-cart,
  .sa-header-actions .sa-button {
    min-height: 42px;
    padding-inline: 12px;
  }

  .sa-hero,
  .sa-hero-inner {
    min-height: 0;
  }

  .sa-hero-inner {
    padding: 72px 0 82px;
  }

  .sa-hero::before {
    background-image: linear-gradient(90deg, rgba(12, 20, 27, 0.9) 0%, rgba(12, 20, 27, 0.72) 100%), var(--sa-hero-image);
  }

  .sa-section {
    padding: 64px 0;
  }

  .sa-page-header {
    padding: 52px 0 34px;
  }

  .sa-content {
    padding: 42px 0 68px;
  }

  .sa-proof-grid,
  .sa-card-grid,
  .sa-product-grid,
  .sa-lead-grid,
  .sa-b2b-hero-grid,
  .sa-b2b-steps,
  .sa-b2b-form-grid,
  .sa-support-grid,
  .sa-support-list,
  .sa-solution-points,
  .sa-solution-cards,
  .woocommerce ul.products,
  .page-id-806 .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sa-split,
  .sa-solution-hero,
  .sa-solution-band,
  .woocommerce-account .u-columns,
  .woocommerce-account .col2-set,
  body.woocommerce-account.logged-in .woocommerce {
    grid-template-columns: 1fr;
  }

  .sa-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .woocommerce ul.products li.product a img {
    height: 190px;
  }

  .sa-floating-cart {
    top: auto;
    right: 14px;
    bottom: 14px;
    width: min(330px, calc(100vw - 28px));
  }
}

@media (max-width: 760px) {
  .sa-container {
    width: min(var(--sa-max), calc(100% - 24px));
  }

  .sa-header-inner {
    padding: 12px 0;
  }

  .sa-brand-mark {
    width: 34px;
    height: 34px;
  }

  .sa-brand-text small,
  .sa-header-cart-text {
    display: none;
  }

  .sa-nav {
    margin-inline: 0;
    width: 100%;
    padding-inline: 0;
  }

  .sa-nav a {
    min-height: 36px;
    padding-inline: 9px;
    font-size: 13px;
  }

  .sa-header-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sa-header-search {
    grid-column: 1 / -1;
    height: 46px;
  }

  .sa-b2b-login,
  .sa-header-cart,
  .sa-header-actions .sa-button {
    width: 100%;
    min-height: 44px;
  }

  .sa-header-cart {
    gap: 7px;
  }

  .sa-hero-inner {
    padding: 54px 0 64px;
  }

  .sa-hero h1,
  .sa-page-header h1,
  .sa-b2b-hero h1,
  .sa-support-intro h2,
  .sa-support-panel h2,
  .sa-solution-hero h2,
  .sa-section-head h2,
  .sa-lead-grid h2,
  .sa-b2b-form-grid h2 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.04;
  }

  .sa-hero p,
  .sa-b2b-hero p,
  .sa-solution-hero p,
  .sa-support-intro p,
  .sa-support-panel p {
    font-size: 16px;
  }

  .sa-hero-actions,
  .sa-strip-actions,
  .sa-support-actions,
  .sa-b2b-popup-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .sa-button,
  .button,
  button,
  input[type="submit"],
  .wp-element-button,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .woocommerce #respond input#submit {
    width: 100%;
    min-height: 48px;
  }

  .sa-proof-grid,
  .sa-card-grid,
  .sa-product-grid,
  .sa-lead-grid,
  .sa-b2b-hero-grid,
  .sa-b2b-steps,
  .sa-b2b-form-grid,
  .sa-support-grid,
  .sa-support-list,
  .sa-solution-points,
  .sa-solution-cards,
  .page-id-806 .woocommerce ul.products,
  .sa-footer-grid {
    grid-template-columns: 1fr;
  }

  .sa-conversion-strip,
  .sa-panel,
  .sa-lead-form,
  .sa-account-hero,
  .sa-account-dashboard,
  .woocommerce-MyAccount-content .sa-account-dashboard,
  .sa-b2b-panel,
  .sa-support-intro,
  .sa-support-panel,
  .sa-solution-points article,
  .sa-solution-band {
    padding: 22px;
  }

  .sa-form-row {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 8px;
    align-items: stretch;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: 100% !important;
    min-width: 0;
    max-width: none;
    margin: 0 !important;
    padding: 9px;
  }

  .woocommerce ul.products li.product .woocommerce-LoopProduct-link,
  .woocommerce-page ul.products li.product .woocommerce-LoopProduct-link {
    min-width: 0;
  }

  .woocommerce ul.products li.product a img {
    height: auto;
    max-height: 132px;
    aspect-ratio: 1 / 1;
    padding: 8px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    min-height: 0;
    margin-bottom: 7px;
    font-size: 15px;
    line-height: 1.18;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .woocommerce ul.products li.product .price {
    min-height: 0;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.2;
  }

  .woocommerce ul.products li.product .sa-vat-price {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.2;
  }

  .woocommerce ul.products li.product .button,
  .woocommerce-page ul.products li.product .button {
    height: 40px;
    min-height: 40px;
    padding: 0 8px;
    font-size: 13px;
    white-space: nowrap;
  }

  .woocommerce ul.products li.product .button::after,
  .woocommerce-page ul.products li.product .button::after {
    margin-left: 6px;
    font-size: 14px;
  }

  .woocommerce ul.products li.product_cat-support-klippekort::before,
  .woocommerce-page ul.products li.product_cat-support-klippekort::before {
    margin-bottom: 10px;
    padding: 5px 8px;
    font-size: 10px;
  }

  .woocommerce ul.products li.product_cat-support-klippekort .woocommerce-loop-product__title,
  .woocommerce-page ul.products li.product_cat-support-klippekort .woocommerce-loop-product__title {
    min-height: 0;
    margin-bottom: 8px;
    font-size: 16px;
  }

  .woocommerce-result-count,
  .woocommerce-ordering,
  .woocommerce-ordering select {
    width: 100%;
  }

  .woocommerce table.shop_table,
  .woocommerce-cart table.cart {
    display: block;
    width: 100%;
    overflow-x: auto;
  }

  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    float: none;
    width: 100%;
  }

  .woocommerce div.product div.images img {
    max-height: 360px;
    padding: 12px;
  }

  .woocommerce div.product div.summary {
    padding: 20px;
  }

  .woocommerce-account .u-column1,
  .woocommerce-account .u-column2,
  .woocommerce form.login,
  .woocommerce form.register,
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    padding: 20px;
  }

  .woocommerce-account .woocommerce-form-login__rememberme {
    width: 100%;
  }

  .woocommerce-account .woocommerce-form-login .button,
  .woocommerce-account .woocommerce-form-register .button {
    width: 100%;
  }

  .sa-floating-cart {
    display: grid;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    max-height: calc(100vh - 20px);
    overflow: auto;
    padding: 14px;
  }

  .sa-floating-cart.is-collapsed {
    left: auto;
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .sa-floating-cart.is-collapsed .sa-floating-cart-toggle {
    width: auto;
    min-height: 46px;
    padding: 0 16px;
    writing-mode: horizontal-tb;
  }

  .sa-b2b-popup {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    overflow: auto;
    padding: 22px;
  }

  .sa-footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .sa-calculator-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .sa-quote-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .sa-calculator-summary {
    padding: 20px;
  }

  .sa-calculator-summary h2 {
    font-size: 30px;
  }

  .sa-calculator-table th,
  .sa-calculator-table td {
    padding: 12px 14px;
  }

  .sa-header-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sa-b2b-login,
  .sa-header-cart,
  .sa-header-actions .sa-button {
    justify-content: center;
  }

  .sa-header-cart-text {
    display: inline;
  }

  .woocommerce ul.products {
    gap: 8px 6px;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    padding: 8px;
  }

  .woocommerce ul.products li.product a img {
    max-height: 112px;
    padding: 6px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }

  .woocommerce ul.products li.product .price {
    font-size: 13px;
  }

  .woocommerce ul.products li.product .sa-vat-price {
    display: none;
  }

  .woocommerce ul.products li.product .button,
  .woocommerce-page ul.products li.product .button {
    height: 36px;
    min-height: 36px;
    font-size: 12px;
  }

  .woocommerce ul.products li.product .button::after,
  .woocommerce-page ul.products li.product .button::after {
    margin-left: 4px;
    font-size: 12px;
  }
}
