﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --site-font: "Poppins", sans-serif;
  --site-gradient-start: #0b0b0c;
  --site-gradient-end: #bf1126;
  --site-gradient-angle: 120deg;
  --fixed-header-offset: 92px;
  --site-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --site-fast: 170ms;
  --site-mid: 260ms;
  --site-slow: 560ms;
  --days-gradient-direction: var(--site-gradient-angle);
  --days-gradient-first-color: var(--site-gradient-start);
  --days-gradient-second-color: var(--site-gradient-end);
  --num-gradient-direction: var(--site-gradient-angle);
  --num-gradient-first-color: var(--site-gradient-start);
  --num-gradient-second-color: var(--site-gradient-end);
  --year-month-gradient-direction: var(--site-gradient-angle);
  --year-month-gradient-first-color: var(--site-gradient-start);
  --year-month-gradient-second-color: var(--site-gradient-end);
}

html,
body,
input,
select,
textarea,
button,
label,
legend,
small,
a,
p,
span,
li,
h1,
h2,
h3,
h4,
h5,
h6,
.u-body,
.u-text,
.u-nav-link,
.u-btn,
.u-custom-font,
.u-logo,
.u-menu,
.u-form,
.u-form * {
  font-family: var(--site-font) !important;
}

h1,
.u-text h1 {
  font-weight: 800 !important;
}

h2,
.u-text h2 {
  font-weight: 700 !important;
}

h3,
h4,
legend,
.u-label,
.u-form label,
.u-nav-link,
.u-btn,
button,
.submit-btn,
.option-title {
  font-weight: 700 !important;
}

strong,
b,
.highlight,
.is-highlight,
[data-emphasis="true"] {
  font-weight: 700 !important;
}

.u-gradient,
[class*=" u-gradient"],
[class^="u-gradient"] {
  background-image: linear-gradient(
    var(--site-gradient-angle),
    var(--site-gradient-start),
    var(--site-gradient-end)
  ) !important;
}

html {
  scroll-behavior: smooth;
}

@keyframes site-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes site-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes site-loader-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes site-loader-fade {
  0%,
  58% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes site-loader-sweep {
  0% {
    opacity: 0;
    transform: translateX(-130%) skewX(-18deg);
  }
  18% {
    opacity: 0.9;
  }
  78% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: translateX(130%) skewX(-18deg);
    visibility: hidden;
  }
}

@keyframes site-hamburger-ash-out {
  0% {
    opacity: 1;
    transform: scale(1) rotate(0deg) translateY(0);
    filter: blur(0);
  }
  55% {
    opacity: 0.7;
    transform: scale(0.9) rotate(-10deg) translateY(-2px);
    filter: blur(1.2px);
  }
  100% {
    opacity: 0;
    transform: scale(0.66) rotate(-18deg) translateY(-6px);
    filter: blur(4px);
  }
}

@keyframes site-hamburger-ash-in {
  0% {
    opacity: 0;
    transform: scale(0.66) rotate(12deg) translateY(5px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg) translateY(0);
    filter: blur(0);
  }
}

@keyframes site-page-sweep-in {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0), 20px, 0);
  filter: blur(5px);
  transition:
    opacity 560ms var(--site-ease),
    transform 560ms var(--site-ease),
    filter 560ms var(--site-ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-from-left {
  --reveal-x: -34px;
}

.reveal-from-right {
  --reveal-x: 34px;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

html,
body,
body * {
  font-family: var(--site-font) !important;
}

button,
button *,
.u-btn,
.u-btn *,
[type="button"],
[type="button"] *,
[type="submit"],
[type="submit"] * {
  font-family: var(--site-font) !important;
}

input::placeholder,
textarea::placeholder {
  font-family: var(--site-font) !important;
}

.fa,
.fas,
.far,
.fab,
[class^="fa-"],
[class*=" fa-"] {
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome" !important;
}

.material-icons,
.material-symbols-outlined,
.material-symbols-rounded,
.material-symbols-sharp {
  font-family: "Material Icons", "Material Symbols Outlined", sans-serif !important;
}

html::before,
body::before,
body::after {
  pointer-events: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: #060607;
  animation: site-loader-fade 1150ms var(--site-ease) forwards;
}

body::after {
  content: "";
  position: fixed;
  inset: -22% -48%;
  z-index: 9999;
  background: linear-gradient(
    92deg,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.34) 48%,
    rgba(255, 255, 255, 0) 62%
  );
  mix-blend-mode: screen;
  transform: translateX(-130%) skewX(-18deg);
  animation: site-loader-sweep 1080ms var(--site-ease) forwards;
}

html::before {
  content: "";
  position: fixed;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  z-index: 10000;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-top-color: #ffffff;
  border-right-color: rgba(191, 17, 38, 0.9);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 24px rgba(191, 17, 38, 0.35);
  animation:
    site-loader-spin 820ms linear infinite,
    site-loader-fade 1120ms var(--site-ease) forwards;
}

body > * {
  animation: site-page-sweep-in 720ms var(--site-ease) both;
  animation-delay: 140ms;
}

.site-header {
  backdrop-filter: saturate(140%) blur(8px);
}

html.has-fixed-header {
  scroll-padding-top: var(--fixed-header-offset, 96px);
}

body.has-fixed-header {
  padding-top: var(--fixed-header-offset, 0px) !important;
}

body {
  padding-top: 0 !important;
}

html,
body {
  overflow-x: hidden;
}

/* Keep the same top bar fixed on all pages */
#header.u-header,
header.u-header,
.u-header.u-section-row-container {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 12000 !important;
}

#header,
#header .u-section-rows,
#header .u-section-row {
  overflow: visible !important;
}

/* Prevent double-offset gaps from Nicepage sticky placeholders in fixed header */
#header .u-section-row.u-sticky,
#header .u-section-row.u-sticky-fixed {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
}

#header .u-sticky-placeholder {
  display: none !important;
}

/* Mobile off-canvas menu: full-height panel + backdrop above content */
#header .u-nav-container-collapse {
  position: fixed !important;
  inset: 0 !important;
  width: 0 !important;
  height: 100dvh !important;
  z-index: 13000 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  left: 0 !important;
  right: auto !important;
}

#header .u-menu-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 13001 !important;
  display: none !important;
  pointer-events: none !important;
  background: rgba(0, 0, 0, 0.46) !important;
}

#header .u-nav-container-collapse .u-sidenav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  z-index: 13002 !important;
  width: clamp(160px, 40vw, 340px) !important;
  max-width: clamp(160px, 40vw, 340px) !important;
  min-width: 0 !important;
  height: 100dvh !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: 0 !important;
  transform: translateX(-100%) !important;
  transition:
    transform 360ms var(--site-ease),
    box-shadow 360ms var(--site-ease) !important;
  box-shadow: 18px 0 44px rgba(0, 0, 0, 0.34) !important;
}

#header .u-nav-container-collapse .u-sidenav-overflow {
  position: relative !important;
  inset: auto !important;
  height: 100% !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  padding: 14px 14px 24px !important;
}

#header .u-menu-close {
  z-index: 13003 !important;
  width: 34px !important;
  height: 34px !important;
  margin: 0 0 12px auto !important;
  cursor: pointer !important;
}

#header .u-menu-close::before {
  font-size: 32px !important;
  line-height: 1 !important;
  display: block !important;
}

#header .u-menu.open .u-nav-container-collapse {
  width: 100vw !important;
  pointer-events: auto !important;
}

#header .u-menu.open .u-menu-overlay {
  display: block !important;
  pointer-events: auto !important;
}

#header .u-menu.open .u-nav-container-collapse .u-sidenav {
  transform: translateX(0) !important;
}

#header .u-menu:not(.open) .u-menu-overlay {
  display: none !important;
  pointer-events: none !important;
}

/* Animated hamburger (three lines -> X) */
#header .u-menu-1 .u-hamburger-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}

#header .u-menu-1 .u-hamburger-link .u-svg-link {
  display: none !important;
}

#header .u-menu-1 .u-hamburger-link .u-svg-content {
  width: 24px !important;
  height: 24px !important;
  overflow: visible !important;
}

#header .u-menu-1 .u-hamburger-link .u-svg-content rect {
  transform-box: fill-box;
  transform-origin: center;
  transition:
    transform 280ms var(--site-ease),
    opacity 200ms ease !important;
}

#header .u-menu-1 .u-hamburger-link .u-svg-content {
  animation: site-hamburger-ash-in 260ms var(--site-ease) both;
}

#header .u-menu-1.open .u-hamburger-link {
  pointer-events: none !important;
}

#header .u-menu-1.open .u-hamburger-link .u-svg-content {
  animation: site-hamburger-ash-out 320ms var(--site-ease) both !important;
}

#header .u-menu-1.open .u-hamburger-link .u-svg-content rect {
  transform: none !important;
  opacity: 1 !important;
}

/* Reuse Hem hero look on custom hero sections */
main .hero {
  position: relative;
  overflow: hidden;
}

main .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/logo.png") 62% 45% / cover no-repeat !important;
}

main .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}

main .hero .hero-content {
  position: relative;
  z-index: 2;
  min-height: 352px;
  padding: 44px 0 40px !important;
}

main .hero .hero-text {
  max-width: 760px;
  color: #fff;
}

main .hero h1 {
  font-size: clamp(1.85rem, 3.6vw, 2.65rem) !important;
  line-height: 1.1 !important;
}

main .hero p {
  max-width: 62ch;
  font-size: clamp(0.96rem, 1.45vw, 1.08rem) !important;
  color: #f2f4f7 !important;
}

main .hero .hero-chips {
  margin-top: 20px !important;
  gap: 10px !important;
}

main .hero .hero-chips span {
  font-size: 0.92rem !important;
  padding: 7px 14px !important;
}

/* Boka Tid: text-only hero without image background */
main .hero.hero-text-only::before,
main .hero.hero-text-only::after {
  display: none !important;
}

main .hero.hero-text-only .hero-content {
  min-height: 0 !important;
}

main .hero.hero-text-only .hero-text,
main .hero.hero-text-only h1 {
  color: #11151d !important;
}

main .hero.hero-text-only p {
  color: #2f3743 !important;
}

.price-calculator {
  width: min(100%, 980px);
  margin: 20px auto 28px;
  padding: 22px;
  border: 1px solid #dfe4eb;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(10, 18, 30, 0.08);
}

.price-calculator__head h3 {
  margin: 0;
  color: #11151d;
  font-size: clamp(1.35rem, 2.8vw, 1.7rem);
}

.price-calculator__head p {
  margin: 8px 0 0;
  color: #4c5668;
  font-size: 0.97rem;
}

.price-calculator__steps {
  margin: 14px 0 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 8px;
  color: #233042;
  font-size: 0.92rem;
}

.price-calculator__steps li {
  line-height: 1.45;
}

.price-calculator__layout {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.price-calculator__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #141b24;
  font-weight: 700;
  min-width: 0;
}

.price-calculator__field--model {
  position: relative;
}

.price-calculator__search {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid #c7d0dc;
  background: #f7f9fc;
  color: #11151d;
  padding: 0 12px;
}

.price-calculator__field-help {
  margin: 2px 0 0;
  color: #4f5e73;
  font-size: 0.84rem;
  font-weight: 500;
}

.price-calculator__search-results {
  display: grid;
  gap: 4px;
  max-height: 210px;
  overflow-y: auto;
  border: 1px solid #cfd8e4;
  border-radius: 12px;
  background: #ffffff;
  padding: 4px;
  box-shadow: 0 10px 24px rgba(10, 18, 30, 0.08);
}

.price-calculator__search-results[hidden] {
  display: none !important;
}

.price-calculator__search-item {
  appearance: none;
  border: 0;
  border-radius: 9px;
  background: #ffffff;
  color: #11151d;
  text-align: left;
  padding: 8px 10px;
  font-size: 0.9rem;
  cursor: pointer;
}

.price-calculator__search-item:hover,
.price-calculator__search-item:focus-visible {
  background: #edf2f8;
  outline: none;
}

.price-calculator__field--model .price-calculator__select {
  margin-top: 2px;
}

.price-calculator__select {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid #c7d0dc;
  background: #f7f9fc;
  color: #11151d;
  padding: 0 12px;
}

.price-calculator__issues {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.price-calculator__issue {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d7dde8;
  background: #fafbfd;
}

.price-calculator__issue.is-disabled {
  opacity: 0.55;
}

.price-calculator__issue-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-calculator__issue-name {
  color: #161e29;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
}

.price-calculator__issue-price {
  color: #5a6678;
  font-size: 0.88rem;
  line-height: 1.2;
}

.price-calculator__placeholder {
  margin: 0;
  color: #5a6678;
  font-size: 0.93rem;
  padding: 12px;
  border-radius: 12px;
  background: #f7f9fc;
  border: 1px dashed #c8d0db;
}

.price-calculator__summary {
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #11151d 0%, #1d2733 65%, #273443 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #eef3f8;
}

.price-calculator__total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.price-calculator__total-row strong {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  line-height: 1;
}

.price-calculator__hint {
  margin: 8px 0 0;
  color: #c7d3e1;
  font-size: 0.9rem;
}

.price-calculator__selected {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.price-calculator__selected li {
  color: #f8fbff;
  font-size: 0.89rem;
}

.price-calculator__actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.price-calculator__action {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.price-calculator__action--primary {
  background: #bf1126;
  border-color: #bf1126;
}

.price-calculator__action--admin {
  background: rgba(255, 255, 255, 0.14);
}

.price-calculator__action:hover,
.price-calculator__action:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(4, 8, 16, 0.3);
  outline: none;
}

.price-calculator__admin {
  margin-top: 14px;
  border: 1px solid #d7dde8;
  border-radius: 14px;
  background: #f7f9fc;
  padding: 14px;
}

.price-calculator__admin[hidden],
.price-calculator__admin[aria-hidden="true"],
.price-calculator__admin[data-admin-locked="true"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.price-calculator__admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-calculator__admin-head h4 {
  margin: 0;
  font-size: 1.02rem;
  color: #11151d;
}

.price-calculator__admin-badge {
  border-radius: 999px;
  background: #0f7d3f;
  color: #ffffff;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
}

.price-calculator__admin-note {
  margin: 8px 0 0;
  color: #485466;
  font-size: 0.9rem;
}

.price-calculator__admin-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  align-items: end;
}

.price-calculator__admin-page {
  margin: 0;
  color: #5a6678;
  font-size: 0.88rem;
}

.price-calculator__admin-fields {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.price-calculator__admin-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #11151d;
  font-size: 0.86rem;
  font-weight: 700;
}

.price-calculator__admin-feedback {
  margin: 10px 0 0;
  color: #425063;
  font-size: 0.88rem;
}

.price-calculator__admin-feedback.is-error {
  color: #a80f24;
}

.price-calculator__admin-feedback.is-success {
  color: #0f7d3f;
}

.price-calculator__admin-actions {
  margin-top: 10px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-calculator__action--admin-apply {
  background: #0f7d3f;
  border-color: #0f7d3f;
}

.price-calculator__action--admin-save {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.price-calculator__action--admin-export {
  background: #7c3aed;
  border-color: #7c3aed;
}

.price-calculator__action--admin-clear {
  background: #8b5e00;
  border-color: #8b5e00;
}

.price-calculator__action--admin-logout {
  background: #b42318;
  border-color: #b42318;
}

.price-calculator__action--admin-cancel {
  color: #11151d;
  background: #ffffff;
  border-color: #c7d0dc;
}

/* Keep admin actions readable even when page-specific styles override generic action colors. */
body[data-page-file-name] .price-calculator__action--admin,
body[data-page-file-name] .price-calculator__action--admin-apply,
body[data-page-file-name] .price-calculator__action--admin-save,
body[data-page-file-name] .price-calculator__action--admin-export,
body[data-page-file-name] .price-calculator__action--admin-clear,
body[data-page-file-name] .price-calculator__action--admin-logout,
body[data-page-file-name] .price-calculator__action--admin-cancel {
  color: #ffffff !important;
}

body[data-page-file-name] .price-calculator__action--admin {
  background: #1f2937 !important;
  border-color: #1f2937 !important;
}

body[data-page-file-name] .price-calculator__action--admin-apply {
  background: #0f7d3f !important;
  border-color: #0f7d3f !important;
}

body[data-page-file-name] .price-calculator__action--admin-save {
  background: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
}

body[data-page-file-name] .price-calculator__action--admin-export {
  background: #7c3aed !important;
  border-color: #7c3aed !important;
}

body[data-page-file-name] .price-calculator__action--admin-clear {
  background: #8b5e00 !important;
  border-color: #8b5e00 !important;
}

body[data-page-file-name] .price-calculator__action--admin-logout {
  background: #b42318 !important;
  border-color: #b42318 !important;
}

body[data-page-file-name] .price-calculator__action--admin-cancel {
  color: #11151d !important;
  background: #ffffff !important;
  border-color: #c7d0dc !important;
}

.price-calculator__admin-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 12, 18, 0.6);
  display: grid;
  place-items: center;
  padding: 18px;
}

.price-calculator__admin-modal[hidden] {
  display: none !important;
}

.price-calculator__admin-dialog {
  width: min(100%, 430px);
  margin: 0;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #d7dde8;
  background: #ffffff;
  display: grid;
  gap: 10px;
  box-shadow: 0 16px 36px rgba(8, 12, 18, 0.24);
}

.price-calculator__admin-dialog h4 {
  margin: 0;
  color: #11151d;
}

.price-calculator__legacy-table {
  display: block !important;
  margin-top: 28px;
  border: 1px solid #d7dee8;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.price-calculator__legacy-table::before {
  content: "Full prislista";
  display: block;
  padding: 14px 18px;
  border-bottom: 1px solid #e5e7eb;
  background: #f8fafc;
  color: #111827;
  font-family: Poppins, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.price-calculator__legacy-table table {
  margin-top: 0 !important;
}

[data-href] {
  cursor: pointer;
}

[data-href]:focus-visible {
  outline: 3px solid #dc2626;
  outline-offset: 3px;
}

@media (max-width: 991px) {
  :root {
    --fixed-header-offset: 84px;
  }

  html.has-fixed-header {
    scroll-padding-top: 84px !important;
  }

  body.has-fixed-header {
    padding-top: 84px !important;
  }

  #header .u-sheet-1 {
    display: flex !important;
    align-items: center !important;
    min-height: 84px !important;
  }

  /* Remove inherited negative/extra margins that inflate header height */
  #header .u-menu-1 {
    margin: 0 14px 0 auto !important;
  }

  #header .u-image-1 {
    margin: 10px auto 10px 6px !important;
  }

  /* Mobile menu: keep off-canvas full-height and readable */
  #header .u-nav-container-collapse {
    top: 0 !important;
    bottom: 0 !important;
    height: 100dvh !important;
  }

  #header .u-menu-overlay {
    top: 0 !important;
    bottom: 0 !important;
    height: 100dvh !important;
  }

  #header .u-nav-container-collapse .u-sidenav {
    left: 0 !important;
    right: auto !important;
    width: clamp(160px, 40vw, 340px) !important;
    max-width: clamp(160px, 40vw, 340px) !important;
    height: 100dvh !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0 !important;
  }

  #header .u-nav-container-collapse .u-sidenav-overflow {
    position: relative !important;
    inset: auto !important;
    height: 100% !important;
    overflow-y: auto !important;
    padding: 14px 16px 28px !important;
  }

  #header .u-nav-container-collapse .u-nav,
  #header .u-nav-container-collapse .u-popupmenu-items,
  #header .u-nav-container-collapse .u-nav-2,
  #header .u-nav-container-collapse .u-nav-4 {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #header .u-nav-container-collapse .u-nav-item {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
  }

  #header .u-nav-container-collapse .u-nav-link {
    display: block !important;
    width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    padding: 12px 8px !important;
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
  }

  #header .u-nav-container-collapse .u-menu-close {
    position: relative !important;
    margin: 0 0 10px auto !important;
  }

  main .hero .hero-content {
    min-height: 322px !important;
    padding: 40px 0 36px !important;
  }

  main .hero h1 {
    font-size: clamp(1.75rem, 6.1vw, 2.25rem) !important;
  }

  main .hero p {
    font-size: 0.98rem !important;
  }

  .price-calculator__layout {
    grid-template-columns: 1fr !important;
  }

  .price-calculator__issues {
    grid-template-columns: 1fr !important;
  }

  .price-calculator__admin-grid,
  .price-calculator__admin-fields,
  .price-calculator__admin-actions {
    grid-template-columns: 1fr !important;
  }

  /* Add breathing room between stacked content sections on mobile */
  body > section:not(.u-cookies-consent) + section:not(.u-cookies-consent) {
    margin-top: 18px !important;
  }

  input,
  select,
  textarea,
  button {
    font-size: 16px !important;
  }
}

@media (max-width: 767px) {
  .price-calculator {
    margin-top: 14px;
    margin-left: auto;
    margin-right: auto;
    padding: 16px;
    border-radius: 14px;
  }

  .price-calculator__summary {
    padding: 12px;
  }

  .price-calculator__search-results {
    max-height: 180px;
  }

  .price-calculator__total-row strong {
    font-size: 1.35rem;
  }

  .price-calculator__admin {
    padding: 12px;
  }

  .container {
    width: min(1120px, 94vw) !important;
  }

  main .hero .hero-content {
    min-height: 296px !important;
    padding: 36px 0 32px !important;
  }

  main .hero h1 {
    font-size: clamp(1.65rem, 8.1vw, 2.05rem) !important;
    line-height: 1.12 !important;
  }

  main .hero p {
    font-size: 0.94rem !important;
  }

  main .hero .hero-chips {
    margin-top: 20px !important;
    gap: 10px !important;
  }

  main .hero .hero-chips span {
    font-size: 0.9rem !important;
    padding: 7px 13px !important;
  }

  .quote-form,
  .booking-form,
  .contact-form,
  .sell-form {
    padding: 16px !important;
  }

  .two-cols,
  .three-cols,
  .choice-row,
  .option-grid,
  .field-grid.two-cols,
  .field-grid.three-cols,
  .form-grid.two-cols,
  .form-grid.three-cols {
    grid-template-columns: 1fr !important;
  }

  .issue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .submit-btn {
    width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 575px) {
  main .hero .hero-content {
    min-height: 282px !important;
    padding: 34px 0 30px !important;
  }

  main .hero h1 {
    font-size: clamp(1.58rem, 8.9vw, 1.9rem) !important;
  }

  main .hero p {
    font-size: 0.92rem !important;
  }
}

.hero-content {
  animation: site-fade-up var(--site-slow) var(--site-ease) both;
}

.booking-layout > *,
.quote-layout > *,
.contact-layout > * {
  animation: site-fade-up var(--site-slow) var(--site-ease) both;
}

.booking-layout > *:nth-child(2),
.quote-layout > *:nth-child(2),
.contact-layout > *:nth-child(2) {
  animation-delay: 90ms;
}

.card,
.u-list-item,
.option-card,
.choice-row label,
.issue-grid label,
.consent-row,
.contact-box,
.side-block,
.info-group,
.main-nav a,
.menu-toggle,
.submit-btn,
.u-btn,
button {
  transition:
    transform var(--site-mid) var(--site-ease),
    box-shadow var(--site-mid) var(--site-ease),
    border-color var(--site-fast) ease,
    background-color var(--site-fast) ease,
    color var(--site-fast) ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(17, 23, 36, 0.14);
}

.option-card:hover,
.choice-row label:hover,
.issue-grid label:hover {
  border-color: #bf1126 !important;
  box-shadow: 0 10px 22px rgba(17, 23, 36, 0.12);
  transform: translateY(-2px);
}

.main-nav a:hover,
.menu-toggle:hover {
  transform: translateY(-1px);
}

.submit-btn:hover,
.u-btn:hover,
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(17, 23, 36, 0.2);
}

a:focus-visible,
button:focus-visible,
.u-btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #bf1126;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html::before,
  body::before,
  body::after {
    display: none !important;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* SEO text sections: enforce readable contrast on all pages */
.seo-auto-expanded,
.seo-page-content,
.seo-page-content-extra,
.seo-home-content {
  background: #f7f9fc !important;
  color: #11151d !important;
  padding: 44px 0 !important;
}

.seo-auto-expanded .u-sheet,
.seo-page-content .u-sheet,
.seo-page-content-extra .u-sheet,
.seo-home-content .u-sheet {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.seo-auto-expanded .u-text,
.seo-page-content .u-text,
.seo-page-content-extra .u-text,
.seo-home-content .u-text {
  color: #1a2432 !important;
}

.seo-auto-expanded h1,
.seo-auto-expanded h2,
.seo-auto-expanded h3,
.seo-page-content h1,
.seo-page-content h2,
.seo-page-content h3,
.seo-page-content-extra h1,
.seo-page-content-extra h2,
.seo-page-content-extra h3,
.seo-home-content h1,
.seo-home-content h2,
.seo-home-content h3 {
  color: #0f1723 !important;
}

.seo-auto-expanded a,
.seo-page-content a,
.seo-page-content-extra a,
.seo-home-content a {
  color: #0b61c9 !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-auto-expanded ul,
.seo-page-content ul,
.seo-page-content-extra ul,
.seo-home-content ul {
  padding-left: 20px;
}

/* Shared Site Footer */
.site-footer {
  background: #161d29;
  color: #f2f6ff;
  padding: 44px 0 20px;
}

.site-footer .container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

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

.site-footer h3 {
  margin: 0 0 14px;
  font-family: Poppins, sans-serif;
  font-size: 1.95rem;
  font-weight: 700;
  color: #ffffff;
}

.site-footer p {
  margin: 0 0 9px;
  font-family: Poppins, sans-serif;
  font-size: 1.28rem;
  line-height: 1.45;
  color: #f2f6ff;
}

.footer-link {
  display: inline-block;
  margin-top: 10px;
  color: #ffffff;
  font-family: Poppins, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-link:hover {
  color: #cfd9ea;
}

.footer-bottom {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  margin: 0;
  font-size: 1.12rem;
  color: rgba(242, 246, 255, 0.9);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.socials a {
  color: #f2f6ff;
  font-family: Poppins, sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  text-decoration: none;
}

.socials a:hover {
  color: #cfd9ea;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Unified UI for all repair-price pages */
body[data-page-file-name$="reparations-priser.html"] .u-section-3 {
  background:
    radial-gradient(980px 480px at 50% -10%, rgba(191, 17, 38, 0.18), transparent 64%),
    linear-gradient(160deg, #f5f7fb 0%, #eef2f9 100%) !important;
  padding: clamp(46px, 8vw, 92px) 0 74px !important;
}

body[data-page-file-name$="reparations-priser.html"] .u-section-3 .u-sheet-1,
body[data-page-file-name$="reparations-priser.html"] .seo-content-sheet {
  width: min(1160px, calc(100% - 36px)) !important;
  margin: 0 auto !important;
}

body[data-page-file-name$="reparations-priser.html"] .u-section-3 .u-text-1 {
  margin: 0 auto !important;
  max-width: 860px;
  color: #0f1728 !important;
  font-size: clamp(2.05rem, 1.55rem + 1.75vw, 3.15rem) !important;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

body[data-page-file-name$="reparations-priser.html"] .u-section-3 .u-text-2 {
  margin: 18px auto 0 !important;
  max-width: 840px;
  color: #3d4a60 !important;
  font-size: clamp(1.02rem, 0.9rem + 0.36vw, 1.24rem) !important;
  line-height: 1.65;
}

body[data-page-file-name$="reparations-priser.html"] .pricing-hero-block {
  margin-top: 34px;
}

body[data-page-file-name$="reparations-priser.html"] .pricing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 18px;
}

body[data-page-file-name$="reparations-priser.html"] .pricing-hero-main,
body[data-page-file-name$="reparations-priser.html"] .pricing-hero-side,
body[data-page-file-name$="reparations-priser.html"] .u-section-3 .u-table-1,
body[data-page-file-name$="reparations-priser.html"] .seo-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 40, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(12, 18, 32, 0.08);
}

body[data-page-file-name$="reparations-priser.html"] .pricing-hero-main,
body[data-page-file-name$="reparations-priser.html"] .pricing-hero-side {
  padding: 24px 24px 22px;
}

body[data-page-file-name$="reparations-priser.html"] .pricing-hero-main h2,
body[data-page-file-name$="reparations-priser.html"] .pricing-hero-side h3,
body[data-page-file-name$="reparations-priser.html"] .pricing-table-heading h2 {
  margin: 0;
  color: #111a2d !important;
  font-size: clamp(1.28rem, 1.08rem + 0.65vw, 1.78rem);
  line-height: 1.25;
}

body[data-page-file-name$="reparations-priser.html"] .pricing-hero-main p,
body[data-page-file-name$="reparations-priser.html"] .pricing-table-heading p,
body[data-page-file-name$="reparations-priser.html"] .seo-content-sheet p,
body[data-page-file-name$="reparations-priser.html"] .seo-content-sheet li {
  color: #405069;
  line-height: 1.64;
}

body[data-page-file-name$="reparations-priser.html"] .pricing-hero-list,
body[data-page-file-name$="reparations-priser.html"] .pricing-hero-steps {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

body[data-page-file-name$="reparations-priser.html"] .pricing-hero-list li,
body[data-page-file-name$="reparations-priser.html"] .pricing-hero-steps li {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  min-width: 0;
  grid-template-columns: none;
  align-items: initial;
  margin: 0;
  padding: 12px 14px 12px 36px;
  border: 1px solid #d8e0eb;
  border-radius: 12px;
  background: #f9fbff;
  color: #22314b;
  line-height: 1.55;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  text-align: left;
}

body[data-page-file-name$="reparations-priser.html"] .pricing-hero-list li::before,
body[data-page-file-name$="reparations-priser.html"] .pricing-hero-steps li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 1.02em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(130deg, #bf1126, #e34a5d);
  box-shadow: 0 0 0 3px rgba(191, 17, 38, 0.14);
  transform: translateY(-50%);
}

body[data-page-file-name$="reparations-priser.html"] .pricing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

body[data-page-file-name$="reparations-priser.html"] .pricing-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 11px;
  border: 1px solid rgba(15, 23, 40, 0.14);
  background: #fff;
  color: #132039 !important;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 180ms var(--site-ease), box-shadow 180ms var(--site-ease);
}

body[data-page-file-name$="reparations-priser.html"] .pricing-hero-btn--primary {
  border-color: #bf1126;
  background: linear-gradient(130deg, #bf1126, #dd364c);
  color: #fff !important;
}

body[data-page-file-name$="reparations-priser.html"] .pricing-hero-btn:hover,
body[data-page-file-name$="reparations-priser.html"] .pricing-hero-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(12, 18, 32, 0.14);
}

body[data-page-file-name$="reparations-priser.html"] .pricing-table-heading {
  margin-top: 26px;
}

body[data-page-file-name$="reparations-priser.html"] .pricing-table-heading p {
  margin-top: 10px;
}

body[data-page-file-name$="reparations-priser.html"] .u-section-3 .u-table-1 {
  margin-top: 16px !important;
  overflow: hidden;
}

body[data-page-file-name$="reparations-priser.html"] .u-section-3 .u-table-entity-1 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

body[data-page-file-name$="reparations-priser.html"] .price-table-caption {
  padding: 12px 16px;
  color: #5a6781;
  font-size: 0.95rem;
  text-align: left;
}

body[data-page-file-name$="reparations-priser.html"] .u-section-3 .u-table-header-1 th {
  background: #1c273e !important;
  color: #f4f7ff !important;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-color: rgba(255, 255, 255, 0.16) !important;
}

body[data-page-file-name$="reparations-priser.html"] .u-section-3 .u-table-body-1 td {
  color: #22314a !important;
  border-color: #d8deeb !important;
  background: #fff !important;
  white-space: nowrap;
}

body[data-page-file-name$="reparations-priser.html"] .u-section-3 .u-table-body-1 tr:nth-child(even) td {
  background: #f8faff !important;
}

body[data-page-file-name$="reparations-priser.html"] .u-section-3 .u-table-body-1 td:first-child {
  white-space: normal;
  font-weight: 700;
  min-width: 168px;
}

body[data-page-file-name$="reparations-priser.html"] .seo-content-section {
  padding: 64px 0 84px;
  background: linear-gradient(180deg, #f2f5fb 0%, #eef3fa 100%);
}

body[data-page-file-name$="reparations-priser.html"] .seo-content-sheet h2,
body[data-page-file-name$="reparations-priser.html"] .seo-content-sheet h3,
body[data-page-file-name$="reparations-priser.html"] .seo-content-sheet summary {
  color: #10192b;
}

body[data-page-file-name$="reparations-priser.html"] .seo-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 16px 0 24px;
}

body[data-page-file-name$="reparations-priser.html"] .seo-card {
  padding: 20px 20px 18px;
}

body[data-page-file-name$="reparations-priser.html"] .seo-card ul {
  margin: 12px 0 0;
}

body[data-page-file-name$="reparations-priser.html"] .seo-faq-list {
  display: grid;
  gap: 12px;
}

body[data-page-file-name$="reparations-priser.html"] .seo-faq-list details {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 40, 0.09);
  border-radius: 12px;
  padding: 10px 14px;
}

body[data-page-file-name$="reparations-priser.html"] .seo-faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

body[data-page-file-name$="reparations-priser.html"] .seo-faq-list summary::-webkit-details-marker {
  display: none;
}

body[data-page-file-name$="reparations-priser.html"] .seo-faq-list p {
  margin: 10px 0 4px;
}

@media (max-width: 991px) {
  body[data-page-file-name$="reparations-priser.html"] .pricing-hero-grid,
  body[data-page-file-name$="reparations-priser.html"] .seo-content-grid {
    grid-template-columns: 1fr;
  }

  body[data-page-file-name$="reparations-priser.html"] .u-section-3 .u-table-1 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  body[data-page-file-name$="reparations-priser.html"] .u-section-3 .u-table-entity-1 {
    min-width: 940px;
  }
}

@media (max-width: 767px) {
  body[data-page-file-name$="reparations-priser.html"] .u-section-3 .u-sheet-1,
  body[data-page-file-name$="reparations-priser.html"] .seo-content-sheet {
    width: min(1160px, calc(100% - 24px)) !important;
  }

  body[data-page-file-name$="reparations-priser.html"] .pricing-hero-main,
  body[data-page-file-name$="reparations-priser.html"] .pricing-hero-side,
  body[data-page-file-name$="reparations-priser.html"] .seo-card {
    padding: 18px 16px 16px;
  }

  body[data-page-file-name$="reparations-priser.html"] .pricing-hero-actions {
    flex-direction: column;
  }

  body[data-page-file-name$="reparations-priser.html"] .pricing-hero-btn {
    width: 100%;
  }

  body[data-page-file-name$="reparations-priser.html"] .seo-content-section {
    padding: 52px 0 70px;
  }
}

/* Shared price calculator + hero layout across all price pages */
body[data-page-file-name$="priser.html"] .price-calculator {
  display: block !important;
  width: min(100%, 980px) !important;
  max-width: 100% !important;
  margin: 20px auto 28px !important;
  padding: 22px !important;
  border: 1px solid #dfe4eb !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  box-shadow: 0 14px 34px rgba(10, 18, 30, 0.08) !important;
  overflow: visible !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__head {
  border: 0 !important;
  padding: 0 !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__steps {
  margin: 14px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
  display: grid !important;
  gap: 8px !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__steps li {
  margin: 0 !important;
  padding: 10px 12px 10px 34px !important;
  border: 1px solid #d8e0eb !important;
  border-radius: 12px !important;
  background: #f9fbff !important;
  color: #22314b !important;
  line-height: 1.5 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  position: relative !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__steps li::before {
  content: "" !important;
  position: absolute !important;
  left: 13px !important;
  top: 1.02em !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 999px !important;
  background: linear-gradient(130deg, #bf1126, #e34a5d) !important;
  box-shadow: 0 0 0 3px rgba(191, 17, 38, 0.14) !important;
  transform: translateY(-50%) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__layout {
  display: grid !important;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr) !important;
  gap: 18px !important;
  margin-top: 18px !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__layout > .price-calculator__field {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__field--model {
  position: relative !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__search-shell {
  position: relative !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__search-results {
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  z-index: auto !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__summary {
  position: static !important;
  top: auto !important;
  align-self: stretch !important;
  margin-top: 16px !important;
  padding: 14px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: linear-gradient(135deg, #11151d 0%, #1d2733 65%, #273443 100%) !important;
  color: #eef3f8 !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__actions {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__action {
  min-height: 40px !important;
  border-radius: 999px !important;
}

body[data-page-file-name$="reparations-priser.html"] .pricing-hero-list li,
body[data-page-file-name$="reparations-priser.html"] .pricing-hero-steps li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  padding: 12px 14px !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}

body[data-page-file-name$="reparations-priser.html"] .pricing-hero-list li::before,
body[data-page-file-name$="reparations-priser.html"] .pricing-hero-steps li::before {
  position: static !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  width: 10px !important;
  height: 10px !important;
  flex: 0 0 10px !important;
  margin-top: 0.5em !important;
}

@media (max-width: 991px) {
  body[data-page-file-name$="priser.html"] .price-calculator__layout {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 767px) {
  body[data-page-file-name$="priser.html"] .price-calculator {
    margin-top: 14px !important;
    padding: 16px !important;
    border-radius: 14px !important;
  }
}

/* Price calculator visual refresh across all price pages */
body[data-page-file-name$="priser.html"] .price-calculator {
  --calc-accent: #bf1126;
  --calc-accent-strong: #e23f53;
  --calc-accent-soft: rgba(191, 17, 38, 0.12);
  --calc-ink: #111a2d;
  --calc-muted: #52627a;
  --calc-line: rgba(17, 26, 45, 0.1);
  position: relative !important;
  width: min(100%, 1100px) !important;
  margin: 28px auto 38px !important;
  padding: 24px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.36fr) minmax(320px, 0.84fr) !important;
  grid-template-areas:
    "head head"
    "layout summary"
    "links links"
    "admin admin" !important;
  gap: 20px !important;
  border: 1px solid rgba(15, 23, 40, 0.08) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(900px 360px at -8% -14%, rgba(191, 17, 38, 0.12), transparent 58%),
    radial-gradient(460px 220px at 108% 4%, rgba(17, 24, 39, 0.08), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.98)) !important;
  box-shadow: 0 30px 80px rgba(12, 18, 32, 0.12) !important;
  overflow: visible !important;
  isolation: isolate !important;
}

body[data-page-file-name$="priser.html"] .price-calculator::after {
  content: "" !important;
  position: absolute !important;
  left: 24px !important;
  right: 24px !important;
  top: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, rgba(191, 17, 38, 0), rgba(191, 17, 38, 0.36), rgba(191, 17, 38, 0)) !important;
  pointer-events: none !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__head {
  grid-area: head !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr) !important;
  gap: 18px !important;
  border: 0 !important;
  padding: 0 !important;
  align-items: stretch !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__intro,
body[data-page-file-name$="priser.html"] .price-calculator__steps {
  border-radius: 22px !important;
  border: 1px solid rgba(15, 23, 40, 0.08) !important;
  box-shadow: 0 14px 32px rgba(12, 18, 32, 0.06) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__intro {
  padding: 22px 22px 20px !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.96)),
    linear-gradient(135deg, rgba(191, 17, 38, 0.06), rgba(191, 17, 38, 0)) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 32px !important;
  padding: 0 13px !important;
  border-radius: 999px !important;
  background: rgba(191, 17, 38, 0.1) !important;
  color: #a60f23 !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__head h3 {
  margin: 14px 0 0 !important;
  color: #111a2d !important;
  font-size: clamp(1.6rem, 1.28rem + 1vw, 2.08rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__head p {
  margin: 12px 0 0 !important;
  max-width: 62ch !important;
  color: #45556d !important;
  font-size: 0.98rem !important;
  line-height: 1.7 !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__trust {
  margin-top: 16px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__trust span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 34px !important;
  padding: 0 13px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(15, 23, 40, 0.08) !important;
  background: rgba(255, 255, 255, 0.88) !important;
  color: #1e2b41 !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__steps {
  counter-reset: calc-step !important;
  margin: 0 !important;
  padding: 16px !important;
  list-style: none !important;
  display: grid !important;
  gap: 10px !important;
  background: linear-gradient(180deg, rgba(249, 251, 255, 0.96), rgba(243, 247, 253, 0.96)) !important;
  align-content: start !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__steps li {
  margin: 0 !important;
  padding: 14px 16px 14px 52px !important;
  border: 1px solid #dbe3ef !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: #22314b !important;
  line-height: 1.58 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  position: relative !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__steps li::before {
  content: counter(calc-step) !important;
  counter-increment: calc-step !important;
  position: absolute !important;
  left: 14px !important;
  top: 14px !important;
  width: 26px !important;
  height: 26px !important;
  border-radius: 10px !important;
  display: grid !important;
  place-items: center !important;
  background: linear-gradient(135deg, var(--calc-accent), var(--calc-accent-strong)) !important;
  box-shadow: 0 10px 20px rgba(191, 17, 38, 0.22) !important;
  color: #ffffff !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  transform: none !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__layout {
  grid-area: layout !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
  margin-top: 0 !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__layout > .price-calculator__field,
body[data-page-file-name$="priser.html"] .price-calculator__field {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  min-width: 0 !important;
  padding: 20px !important;
  border: 1px solid rgba(15, 23, 40, 0.08) !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 14px 32px rgba(12, 18, 32, 0.06) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__field-head {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__field-step {
  width: 32px !important;
  height: 32px !important;
  flex: 0 0 32px !important;
  border-radius: 11px !important;
  display: grid !important;
  place-items: center !important;
  background: linear-gradient(135deg, var(--calc-accent), var(--calc-accent-strong)) !important;
  box-shadow: 0 10px 22px rgba(191, 17, 38, 0.22) !important;
  color: #ffffff !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__field-title {
  color: var(--calc-ink) !important;
  font-size: 1.02rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__field-help {
  margin: 0 !important;
  color: var(--calc-muted) !important;
  font-size: 0.89rem !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__field--model {
  position: relative !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__search,
body[data-page-file-name$="priser.html"] .price-calculator__select {
  width: 100% !important;
  min-height: 54px !important;
  border-radius: 16px !important;
  border: 1px solid #d7dfeb !important;
  background-color: #ffffff !important;
  color: #111a2d !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 8px 20px rgba(12, 18, 32, 0.04) !important;
  transition:
    border-color 180ms var(--site-ease),
    box-shadow 180ms var(--site-ease),
    transform 180ms var(--site-ease) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__field--model .price-calculator__search {
  padding: 0 16px 0 46px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23586981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 16px 50% !important;
  background-size: 18px 18px !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__admin .price-calculator__search {
  padding: 0 16px !important;
  background-image: none !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__select {
  appearance: none !important;
  padding: 0 44px 0 16px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23586981' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 16px) 50% !important;
  background-size: 14px 14px !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__search:hover,
body[data-page-file-name$="priser.html"] .price-calculator__search:focus,
body[data-page-file-name$="priser.html"] .price-calculator__select:hover,
body[data-page-file-name$="priser.html"] .price-calculator__select:focus {
  border-color: rgba(191, 17, 38, 0.38) !important;
  box-shadow:
    0 0 0 4px rgba(191, 17, 38, 0.1),
    0 18px 30px rgba(12, 18, 32, 0.08) !important;
  transform: translateY(-1px) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__search-results {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: calc(100% + 10px) !important;
  z-index: 40 !important;
  display: grid !important;
  gap: 6px !important;
  max-height: 280px !important;
  overflow-y: auto !important;
  padding: 8px !important;
  margin-top: 0 !important;
  border: 1px solid rgba(15, 23, 40, 0.08) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: 0 24px 44px rgba(12, 18, 32, 0.14) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__search-item {
  appearance: none !important;
  border: 0 !important;
  border-radius: 13px !important;
  background: #ffffff !important;
  color: #111a2d !important;
  text-align: left !important;
  padding: 12px 14px !important;
  font-size: 0.94rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition:
    transform 160ms var(--site-ease),
    background-color 160ms var(--site-ease),
    box-shadow 160ms var(--site-ease) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__search-item:hover,
body[data-page-file-name$="priser.html"] .price-calculator__search-item:focus-visible {
  background: #f5f8fd !important;
  box-shadow: inset 0 0 0 1px rgba(191, 17, 38, 0.12) !important;
  transform: translateX(2px) !important;
  outline: none !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__issues {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__issue {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: flex-start !important;
  min-height: 94px !important;
  padding: 16px !important;
  border: 1px solid #dde5f0 !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, #ffffff, #f8fbff) !important;
  box-shadow: 0 10px 22px rgba(12, 18, 32, 0.04) !important;
  cursor: pointer !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__issue::after {
  content: "" !important;
  position: absolute !important;
  left: 16px !important;
  right: 16px !important;
  bottom: 0 !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, var(--calc-accent), var(--calc-accent-strong)) !important;
  opacity: 0 !important;
  transform: scaleX(0.32) !important;
  transform-origin: left center !important;
  transition:
    opacity 180ms var(--site-ease),
    transform 180ms var(--site-ease) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__issue:hover {
  border-color: rgba(191, 17, 38, 0.18) !important;
  box-shadow: 0 18px 28px rgba(12, 18, 32, 0.08) !important;
  transform: translateY(-2px) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__issue.is-selected {
  border-color: rgba(191, 17, 38, 0.28) !important;
  background: linear-gradient(180deg, #fff6f7, #ffffff) !important;
  box-shadow: 0 20px 34px rgba(191, 17, 38, 0.12) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__issue.is-selected::after {
  opacity: 1 !important;
  transform: scaleX(1) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__issue.is-disabled {
  opacity: 0.56 !important;
  background: #f5f7fb !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__check {
  width: 22px !important;
  height: 22px !important;
  margin-top: 2px !important;
  accent-color: var(--calc-accent) !important;
  cursor: pointer !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__issue.is-disabled .price-calculator__check {
  cursor: not-allowed !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__issue-text {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__issue-name {
  color: #172134 !important;
  font-size: 0.96rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__issue-price {
  color: #bf1126 !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__placeholder {
  margin: 0 !important;
  padding: 18px !important;
  border-radius: 18px !important;
  border: 1px dashed #d5deea !important;
  background: linear-gradient(180deg, #f9fbff, #f4f7fc) !important;
  color: #53637c !important;
  font-size: 0.93rem !important;
  line-height: 1.7 !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__summary {
  grid-area: summary !important;
  position: sticky !important;
  top: calc(var(--fixed-header-offset, 92px) + 18px) !important;
  align-self: start !important;
  margin-top: 0 !important;
  padding: 20px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background:
    radial-gradient(280px 120px at 100% 0%, rgba(255, 255, 255, 0.14), transparent 60%),
    linear-gradient(160deg, #0f1727 0%, #172234 56%, #1f3045 100%) !important;
  color: #eef3f8 !important;
  box-shadow: 0 28px 52px rgba(10, 18, 30, 0.28) !important;
  overflow: hidden !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__summary::before {
  content: "" !important;
  position: absolute !important;
  left: 20px !important;
  right: 20px !important;
  top: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0)) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__summary-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__summary-kicker {
  color: #cdd7e5 !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__summary-status {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 32px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #f6fbff !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__summary[data-summary-state="ready"] .price-calculator__summary-status {
  color: #d8fff0 !important;
  border-color: rgba(15, 125, 63, 0.3) !important;
  background: rgba(15, 125, 63, 0.2) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__summary[data-summary-state="manual"] .price-calculator__summary-status {
  color: #fff0c2 !important;
  border-color: rgba(234, 179, 8, 0.3) !important;
  background: rgba(234, 179, 8, 0.18) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__summary[data-summary-state="waiting"] .price-calculator__summary-status,
body[data-page-file-name$="priser.html"] .price-calculator__summary[data-summary-state="idle"] .price-calculator__summary-status {
  color: #d9e4f2 !important;
  border-color: rgba(148, 163, 184, 0.2) !important;
  background: rgba(148, 163, 184, 0.14) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__total-row {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 6px !important;
  padding: 16px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__total-row span {
  color: #d5e0ee !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__total-row strong {
  font-size: clamp(2rem, 1.52rem + 1.3vw, 2.5rem) !important;
  line-height: 1 !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__hint {
  margin: 14px 0 0 !important;
  padding: 13px 14px !important;
  border-radius: 15px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #d8e4f1 !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__selected {
  margin: 16px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
  display: grid !important;
  gap: 10px !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__selected:empty::before {
  content: "Inga val ännu. Välj reparationer för att bygga din prisöversikt." !important;
  display: block !important;
  padding: 14px !important;
  border-radius: 15px !important;
  border: 1px dashed rgba(255, 255, 255, 0.16) !important;
  color: #cdd7e5 !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__selected li {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 12px 14px !important;
  border-radius: 15px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__selected-label {
  color: #ffffff !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__selected-value {
  color: #ffd9de !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  text-align: right !important;
  line-height: 1.45 !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__actions {
  margin-top: 18px !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__action {
  appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  padding: 10px 16px !important;
  border-radius: 15px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__action--primary {
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--calc-accent), var(--calc-accent-strong)) !important;
  box-shadow: 0 16px 28px rgba(191, 17, 38, 0.34) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__action--admin {
  grid-column: 1 / -1 !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: #d9e4f2 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__action:hover,
body[data-page-file-name$="priser.html"] .price-calculator__action:focus-visible {
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 28px rgba(10, 18, 30, 0.24) !important;
  outline: none !important;
}

/* Public price pages should not show the old embedded admin entry. */
.price-calculator__action--admin {
  display: none !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__model-links {
  grid-area: links !important;
  padding: 20px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(15, 23, 40, 0.08) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 14px 32px rgba(12, 18, 32, 0.06) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__model-links-head {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__model-links-kicker {
  display: inline-flex !important;
  align-items: center !important;
  align-self: flex-start !important;
  min-height: 30px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  background: rgba(191, 17, 38, 0.1) !important;
  color: #a60f23 !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__model-links h4 {
  margin: 0 !important;
  color: #111a2d !important;
  font-size: 1.2rem !important;
  line-height: 1.15 !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__model-links p {
  margin: 0 !important;
  color: #52627a !important;
  font-size: 0.94rem !important;
  line-height: 1.6 !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__model-links-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
  gap: 10px !important;
  margin-top: 16px !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__model-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  padding: 10px 14px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(15, 23, 40, 0.08) !important;
  background: linear-gradient(180deg, #ffffff, #f7faff) !important;
  color: #162033 !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  text-decoration: none !important;
  transition:
    transform 160ms var(--site-ease),
    border-color 160ms var(--site-ease),
    box-shadow 160ms var(--site-ease),
    color 160ms var(--site-ease),
    background-color 160ms var(--site-ease) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__model-link:hover,
body[data-page-file-name$="priser.html"] .price-calculator__model-link:focus-visible {
  border-color: rgba(191, 17, 38, 0.22) !important;
  color: #a60f23 !important;
  box-shadow: 0 14px 26px rgba(12, 18, 32, 0.08) !important;
  transform: translateY(-2px) !important;
  outline: none !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__model-link.is-active,
body[data-page-file-name$="priser.html"] .price-calculator__model-link[aria-current="page"] {
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--calc-accent), var(--calc-accent-strong)) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 32px rgba(191, 17, 38, 0.24) !important;
}

body[data-page-file-name$="priser.html"] .price-calculator__admin {
  grid-area: admin !important;
  margin-top: 0 !important;
  padding: 18px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(15, 23, 40, 0.08) !important;
  background: rgba(247, 249, 252, 0.96) !important;
  box-shadow: 0 14px 32px rgba(12, 18, 32, 0.05) !important;
}

@media (max-width: 1100px) {
  body[data-page-file-name$="priser.html"] .price-calculator {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "head"
      "layout"
      "summary"
      "links"
      "admin" !important;
  }

  body[data-page-file-name$="priser.html"] .price-calculator__summary {
    position: static !important;
    top: auto !important;
  }
}

@media (max-width: 991px) {
  body[data-page-file-name$="priser.html"] .price-calculator__head {
    grid-template-columns: 1fr !important;
  }

  body[data-page-file-name$="priser.html"] .price-calculator__issues {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 767px) {
  body[data-page-file-name$="priser.html"] .price-calculator {
    padding: 16px !important;
    border-radius: 22px !important;
    gap: 16px !important;
  }

  body[data-page-file-name$="priser.html"] .price-calculator__intro,
  body[data-page-file-name$="priser.html"] .price-calculator__steps,
  body[data-page-file-name$="priser.html"] .price-calculator__field,
  body[data-page-file-name$="priser.html"] .price-calculator__summary,
  body[data-page-file-name$="priser.html"] .price-calculator__model-links,
  body[data-page-file-name$="priser.html"] .price-calculator__admin {
    border-radius: 18px !important;
  }

  body[data-page-file-name$="priser.html"] .price-calculator__intro,
  body[data-page-file-name$="priser.html"] .price-calculator__field,
  body[data-page-file-name$="priser.html"] .price-calculator__summary,
  body[data-page-file-name$="priser.html"] .price-calculator__model-links {
    padding: 16px !important;
  }

  body[data-page-file-name$="priser.html"] .price-calculator__steps {
    padding: 14px !important;
  }

  body[data-page-file-name$="priser.html"] .price-calculator__steps li {
    padding: 14px 14px 14px 50px !important;
  }

  body[data-page-file-name$="priser.html"] .price-calculator__search,
  body[data-page-file-name$="priser.html"] .price-calculator__select {
    min-height: 52px !important;
    font-size: 16px !important;
  }

  body[data-page-file-name$="priser.html"] .price-calculator__actions {
    grid-template-columns: 1fr !important;
  }

  body[data-page-file-name$="priser.html"] .price-calculator__model-links-grid {
    grid-template-columns: 1fr !important;
  }

  body[data-page-file-name$="priser.html"] .price-calculator__selected li {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
}

