/* ============================================================================
   HYRESKALKYLATOR – MAIN WIDGET STYLES
   Sammanfogad från:
   - hk-calculator-widget.css
   - hk-preloader-styles.css
   - hk-style.css
   ============================================================================ */

/* ============================================================================
   HKE ESTIMATE WIDGET – NORLI EDITION
   ============================================================================ */

.hke-wrap {
  --hke-wrap-radius: 34px;
  --hke-price-radius: 28px;

  --hke-price-base-a: rgba(246, 248, 255, 0.94);
  --hke-price-base-b: rgba(240, 236, 255, 0.88);
  --hke-price-border: rgba(255, 255, 255, 0.42);
  --hke-price-inner: rgba(255, 255, 255, 0.6);

  --hke-dark-border: rgba(255, 255, 255, 0.12);
  --hke-dark-shadow: 0 34px 88px rgba(0, 0, 0, 0.46),
    0 14px 34px rgba(0, 0, 0, 0.28);

  --hke-aurora-purple: rgba(111, 89, 247, 0.26);
  --hke-aurora-indigo: rgba(89, 64, 217, 0.2);
  --hke-aurora-blue: rgba(96, 165, 250, 0.13);
  --hke-aurora-violet: rgba(139, 92, 246, 0.12);

  --hke-purple-glow: rgba(111, 89, 247, 0.22);

  --hke-price-lift-white: rgba(255, 255, 255, 0.45);
  --hke-price-lift-purple: rgba(111, 89, 247, 0.08);
}

/* Säkerställ Inter Tight i hela estimate-widgeten */
.elementor-widget-hk-estimate .hke-wrap,
.elementor-widget-hk-estimate .hke-wrap *,
.elementor-widget-hk-estimate .hke-wrap *::before,
.elementor-widget-hk-estimate .hke-wrap *::after {
  font-family: "Inter Tight", sans-serif !important;
}

.hke-wrap {
  position: relative;
  background:
    radial-gradient(
      120% 90% at 18% 12%,
      rgba(111, 89, 247, 0.16) 0%,
      transparent 55%
    ),
    radial-gradient(
      90% 80% at 84% 18%,
      rgba(96, 165, 250, 0.1) 0%,
      transparent 58%
    ),
    radial-gradient(
      110% 90% at 60% 110%,
      rgba(89, 64, 217, 0.08) 0%,
      transparent 60%
    ),
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.04) 45%,
      rgba(255, 255, 255, 0.028) 100%
    );
  border: 1px solid var(--hke-dark-border);
  box-shadow:
    var(--hke-dark-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px) saturate(175%);
  -webkit-backdrop-filter: blur(24px) saturate(175%);
  transform: translateZ(0);
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hke-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 55% at 12% 10%,
      var(--hke-aurora-purple) 0%,
      transparent 64%
    ),
    radial-gradient(
      ellipse 65% 55% at 88% 16%,
      var(--hke-aurora-indigo) 0%,
      transparent 66%
    ),
    radial-gradient(
      ellipse 65% 55% at 78% 62%,
      var(--hke-aurora-blue) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 85% 65% at 42% 120%,
      var(--hke-aurora-violet) 0%,
      transparent 70%
    );
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hke-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 30%,
    rgba(255, 255, 255, 0.34) 50%,
    rgba(255, 255, 255, 0.22) 70%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

@media (hover: hover) {
  .hke-wrap:hover {
    transform: translateY(-5px) scale(1.003);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
      0 48px 110px rgba(0, 0, 0, 0.54),
      0 20px 48px rgba(0, 0, 0, 0.34),
      0 0 72px var(--hke-purple-glow),
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  }
}

.hke-wrap > * {
  position: relative;
  z-index: 1;
}

/* Prisblocket */
.hke-price-block {
  position: relative;
  z-index: 1;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--hke-price-base-a) 0%,
    var(--hke-price-base-b) 100%
  );
  border: 1.2px solid var(--hke-price-border);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.26),
    0 10px 24px rgba(17, 23, 34, 0.14),
    inset 0 1px 0 var(--hke-price-inner),
    inset 0 -18px 40px rgba(111, 89, 247, 0.06);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.hke-price-block::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 120% 70% at 50% -10%,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.3) 30%,
      transparent 68%
    ),
    radial-gradient(
      ellipse 70% 60% at 18% 18%,
      rgba(111, 89, 247, 0.2) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 70% 60% at 82% 22%,
      rgba(89, 64, 217, 0.14) 0%,
      transparent 62%
    ),
    radial-gradient(
      ellipse 65% 60% at 70% 62%,
      rgba(96, 165, 250, 0.1) 0%,
      transparent 64%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.08) 30%,
      rgba(255, 255, 255, 0.14) 55%,
      rgba(255, 255, 255, 0.06) 100%
    );
  opacity: 1;
}

.hke-price-block::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.76) 0%,
    rgba(255, 255, 255, 0.14) 22%,
    rgba(255, 255, 255, 0.06) 60%,
    rgba(255, 255, 255, 0.24) 100%
  );
  opacity: 0.5;
  mix-blend-mode: soft-light;
}

.hke-price-block > * {
  position: relative;
  z-index: 1;
}

@media (hover: hover) {
  .hke-price-block:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.52);
    box-shadow:
      0 26px 62px rgba(0, 0, 0, 0.32),
      0 14px 30px rgba(17, 23, 34, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.62),
      inset 0 -18px 40px rgba(111, 89, 247, 0.08);
  }
}

.hke-price-row {
  display: block !important;
  width: 100%;
  margin: 0;
  padding: 0;
  white-space: normal;
}

.hke-price-row--monthly {
  padding-top: 22px;
  border-top: 1.5px solid rgba(111, 89, 247, 0.12);
}

.hke-price-label-before--nightly,
.hke-price-label-after--nightly,
.hke-price-label-before--monthly,
.hke-price-label-after--monthly {
  display: inline !important;
  white-space: normal !important;
}

.hke-price-amount--nightly,
.hke-price-amount--monthly {
  display: inline !important;
  white-space: nowrap !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "tnum" 1;
  text-shadow:
    0 1px 0 var(--hke-price-lift-white),
    0 2px 0 rgba(0, 0, 0, 0.08),
    0 6px 14px rgba(0, 0, 0, 0.1);
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.25))
    drop-shadow(0 8px 18px var(--hke-price-lift-purple));
}

.hke-price-label-after--nightly {
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.32),
    0 2px 0 rgba(0, 0, 0, 0.08),
    0 6px 14px rgba(0, 0, 0, 0.08);
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.18))
    drop-shadow(0 8px 18px rgba(111, 89, 247, 0.05));
}

.hke-price-label-after--monthly,
.hke-price-label-before--monthly,
.hke-price-label-before--nightly {
  text-shadow: none !important;
  filter: none !important;
}

.hke-context,
.hke-disclaimer {
  position: relative;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hke-context-type {
  display: inline;
}

.hke-context-address,
.hke-context-bedrooms,
.hke-context-guests {
  display: inline;
  filter: drop-shadow(0 0 4px rgba(111, 89, 247, 0.32));
}

/* ============================================================================
   TILLVALSBLOCK – INUTI PRISBLOCKET
   ============================================================================ */

.hke-addons {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1.5px solid rgba(111, 89, 247, 0.1);
  text-align: left;
}

.hke-addons-title {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.5;
  -webkit-font-smoothing: antialiased;
}

.hke-addons-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hke-addon-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  background: rgba(111, 89, 247, 0.08);
  border: 1px solid rgba(111, 89, 247, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hke-addon-label {
  font-size: 13px;
  line-height: 1.2;
  opacity: 0.82;
  -webkit-font-smoothing: antialiased;
}

.hke-addon-value {
  display: none !important;
}

.hke-vacancy {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(111, 89, 247, 0.08);
  font-size: 12px;
  opacity: 0.7;
  letter-spacing: 0.01em;
  text-align: left;
}

/* ============================================================================
   BELÄGGNINGSBLOCK
   ============================================================================ */

.hke-occupancy {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(111, 89, 247, 0.08);
  text-align: left;
}

.hke-occ-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.46;
  margin-bottom: 12px;
  -webkit-font-smoothing: antialiased;
}

.hke-occ-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hke-occ-row {
  display: grid;
  grid-template-columns: 72px 1fr 40px;
  align-items: center;
  gap: 10px;
}

.hke-occ-label {
  font-size: 12px;
  opacity: 0.52;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
}

.hke-occ-bar-wrap {
  height: 5px;
  background: rgba(111, 89, 247, 0.1);
  overflow: hidden;
}

.hke-occ-bar-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(111, 89, 247, 0.55) 0%,
    rgba(96, 165, 250, 0.75) 100%
  );
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.hke-occ-row--avg .hke-occ-bar-fill {
  background: linear-gradient(
    90deg,
    rgba(111, 89, 247, 0.78) 0%,
    rgba(96, 165, 250, 0.88) 100%
  );
}

.hke-occ-row--avg .hke-occ-bar-wrap {
  height: 6px;
}

.hke-occ-value {
  font-size: 12px;
  font-weight: 600;
  text-align: right;
  letter-spacing: -0.01em;
  opacity: 0.62;
  -webkit-font-smoothing: antialiased;
}

.hke-occ-row--high .hke-occ-value,
.hke-occ-row--low .hke-occ-value {
  opacity: 0.58;
  font-weight: 600;
}

/* Trust */
.hke-trust-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.hke-wrap[style*="text-align: center"] .hke-trust-list,
.hke-wrap[style*="text-align:center"] .hke-trust-list {
  margin-left: auto;
  margin-right: auto;
}

.hke-trust-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--hke-trust-gap, 13px);
  padding: 9px 15px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

@media (hover: hover) {
  .hke-trust-item:hover {
    background: rgba(111, 89, 247, 0.16);
    border-color: rgba(111, 89, 247, 0.3);
    box-shadow: 0 4px 18px rgba(111, 89, 247, 0.16);
    transform: translateX(5px);
  }
}

.hke-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.2em;
  line-height: 1;
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .hke-trust-item:hover .hke-trust-icon {
    transform: scale(1.12) rotate(-5deg);
  }
}

.hke-trust-icon i {
  display: inline-block;
  line-height: 1;
}

.hke-trust-icon svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.hke-trust-text {
  text-align: left;
  flex: 1;
}

/* ==========================================================================
   HK – GLOBAL STYLE
   ========================================================================== */

.elementor-section,
.elementor-container,
.e-con,
.e-con-inner {
  box-sizing: border-box;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

.hk-field {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  margin-bottom: 0;
  transition: margin-bottom 200ms ease;
}

.hk-field.is-error {
  margin-bottom: 24px;
}

:root {
  --hk-error-color: #B91C1C;
  --hk-error-muted: rgba(185, 28, 28, 0.70);
}

/* Globala error-regler — gäller contact-widget och övriga HK-widgets.
   Calculator-widgeten (hk-calculator) överstyr dessa via
   .elementor-widget-hk-calculator .hk-field.is-error med !important. */
.hk-error-msg {
  display: none;
  color: var(--hk-error-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  position: absolute;
  top: 100%;
  left: 4px;
  margin-top: 6px;
  z-index: 2;
  pointer-events: none;
}

.hk-field.is-error .hk-error-msg {
  display: block;
}

.hk-field.is-error input,
.hk-field.is-error select {
  color: var(--hk-error-color) !important;
  caret-color: var(--hk-error-color) !important;
}

.hk-field.is-error input::placeholder,
.hk-field.is-error select.hk-placeholder {
  color: var(--hk-error-muted) !important;
  opacity: 1 !important;
}

.hk-field.is-error .hk-icon {
  color: var(--hk-error-color) !important;
  opacity: 1 !important;
  filter: none !important;
}

.hk-field.is-error .hk-select-wrap::after {
  background-color: var(--hk-error-color) !important;
  opacity: 1 !important;
}

.hk-field.is-error .hk-address-wrap,
.hk-field.is-error .hk-select-wrap,
.hk-field.is-error .hk-input-wrap {
  border-color: var(--hk-error-color) !important;
  border-width: 1.5px !important;
  animation: hk-flash-border 0.55s ease-out 1;
}

@keyframes hk-flash-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(185, 28, 28, 0); }
  40% { box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.22); }
}

.elementor-widget-hk-contact .hk-consent-wrapper .hk-error-msg {
  position: static;
  margin-top: 4px;
}

.hk-form .hk-icon,
.elementor-widget-hk-contact .hk-icon,
.elementor-widget-hk-estimate .hk-icon,
.elementor-widget-hk-calculator .hk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.hk-form .hk-icon svg,
.elementor-widget-hk-contact .hk-icon svg,
.elementor-widget-hk-estimate .hk-icon svg,
.elementor-widget-hk-calculator .hk-icon svg {
  display: block;
  width: 1em;
  height: 1em;
  overflow: visible;
}

.hk-contact-widget .hk-lead-form input[type="text"]:-webkit-autofill,
.hk-contact-widget .hk-lead-form input[type="email"]:-webkit-autofill,
.hk-contact-widget .hk-lead-form input[type="tel"]:-webkit-autofill,
.hk-contact-widget .hk-lead-form input[type="text"]:-webkit-autofill:hover,
.hk-contact-widget .hk-lead-form input[type="email"]:-webkit-autofill:hover,
.hk-contact-widget .hk-lead-form input[type="tel"]:-webkit-autofill:hover,
.hk-contact-widget .hk-lead-form input[type="text"]:-webkit-autofill:focus,
.hk-contact-widget .hk-lead-form input[type="email"]:-webkit-autofill:focus,
.hk-contact-widget .hk-lead-form input[type="tel"]:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--hk-text) !important;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  background-color: transparent !important;
  background-image: none !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

.hk-contact-widget .hk-lead-form input[type="text"]:-moz-autofill,
.hk-contact-widget .hk-lead-form input[type="email"]:-moz-autofill,
.hk-contact-widget .hk-lead-form input[type="tel"]:-moz-autofill {
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

.hk-contact-widget .hk-disclaimer-above-button {
  padding: 0 16px !important;
}

.hk-contact-widget .hk-disclaimer-above-button p {
  font-size: 14px !important;
  line-height: 1.5 !important;
}

/* ============================================================================
   HYRESKALKYLATOR – PREMIUM PRELOADER STYLES
   ============================================================================ */

.hk-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(139, 92, 246, 0.08);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.hk-progress-bar.is-active {
  opacity: 1;
}

.hk-progress-bar__fill {
  position: relative;
  height: 100%;
  width: 0;
  background: linear-gradient(
    90deg,
    rgba(139, 92, 246, 0.3) 0%,
    rgba(139, 92, 246, 1) 50%,
    rgba(107, 76, 174, 1) 100%
  );
  box-shadow:
    0 0 12px rgba(139, 92, 246, 0.6),
    0 0 24px rgba(139, 92, 246, 0.4);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: hkProgressGlow 1.5s ease-in-out infinite;
}

@keyframes hkProgressGlow {
  0%, 100% {
    box-shadow:
      0 0 12px rgba(139, 92, 246, 0.6),
      0 0 24px rgba(139, 92, 246, 0.4);
  }
  50% {
    box-shadow:
      0 0 20px rgba(139, 92, 246, 0.8),
      0 0 36px rgba(139, 92, 246, 0.6);
  }
}

.hk-progress-bar__fill::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 120px;
  height: 120px;
  transform: translate(50%, -50%);
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
  animation: hkParticleTrail 0.8s ease-out infinite;
  pointer-events: none;
}

@keyframes hkParticleTrail {
  0% {
    opacity: 1;
    transform: translate(50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(50%, -50%) scale(1.8);
  }
}

/* ============================================================================
   KNAPP-LOADING – behåll shimmer, ta bort spinner/ripple
   ============================================================================ */

.hk-btn {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  overflow: hidden !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Texten ska alltid ligga över shimmer-effekten */
.hk-btn__label,
.hk-btn__spinner {
  position: relative;
  z-index: 3;
}

/* Knapp — låst typografi så Elementors reset inte kan ta över */
.elementor-widget-hk-calculator .hk-btn .hk-btn__label {
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* Spinnern används inte längre */
.hk-btn__spinner {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  animation: none !important;
  flex: 0 0 0 !important;
  transform: none !important;
}

/* Visa aldrig spinnern */
.hk-btn.is-loading .hk-btn__spinner {
  display: none !important;
}

/* Ta bort gamla ripple-ringen */
.hk-btn.is-loading::before {
  content: none !important;
}

/* Behåll vänster -> höger-glimring i knappen */
.hk-btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 35%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.06) 65%,
    transparent 100%
  );
  transform: translateX(-120%);
  opacity: 0;
}

.hk-btn.is-loading::after {
  opacity: 1 !important;
  animation: hkShimmer 1.1s ease-in-out infinite;
}

@keyframes hkShimmer {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

.hk-btn.is-loading {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.95;
  filter: saturate(1.05);
}

.hk-result-skeleton {
  padding: 20px 0;
  animation: hkSkeletonFadeIn 0.3s ease-out;
}

@keyframes hkSkeletonFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hk-skeleton-line {
  height: 20px;
  background: linear-gradient(
    90deg,
    rgba(139, 92, 246, 0.06) 0%,
    rgba(139, 92, 246, 0.12) 50%,
    rgba(139, 92, 246, 0.06) 100%
  );
  background-size: 200% 100%;
  margin: 8px 0;
  animation: hkSkeletonShimmer 1.8s ease-in-out infinite;
}

.hk-skeleton-title {
  width: 60%;
  height: 16px;
}

.hk-skeleton-value {
  width: 100%;
  height: 32px;
  margin: 12px 0;
}

.hk-skeleton-subtitle {
  width: 40%;
  height: 14px;
}

@keyframes hkSkeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 1024px) {
  .hke-wrap {
    backdrop-filter: blur(20px) saturate(165%);
    -webkit-backdrop-filter: blur(20px) saturate(165%);
  }

  .hk-progress-bar {
    height: 2.5px;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .hk-field.is-error {
    margin-bottom: 22px;
  }
}

@media (max-width: 767px) {
  .hke-wrap {
    backdrop-filter: blur(16px) saturate(155%);
    -webkit-backdrop-filter: blur(16px) saturate(155%);
  }

  .hke-price-row--monthly {
    padding-top: 18px;
  }

  .hke-addons {
    margin-top: 16px;
    padding-top: 16px;
  }

  .hke-addons-list {
    gap: 8px;
  }

  .hke-addon-item {
    min-height: 32px;
    padding: 7px 11px;
  }

  .hke-addon-label {
    font-size: 12px;
  }

  .hke-trust-list {
    gap: 9px;
  }

  .hke-trust-item {
    padding: 7px 13px;
  }

  .hke-occ-row {
    grid-template-columns: 64px 1fr 38px;
    gap: 8px;
  }

  .hke-occ-label {
    font-size: 11px;
  }

  .hke-occ-value {
    font-size: 11px;
  }

  .hk-progress-bar {
    height: 2px;
  }

  .hk-skeleton-value {
    height: 28px;
  }

  .hk-result-skeleton {
    padding: 16px 0;
  }

  .hk-field.is-error {
    margin-bottom: 20px;
  }

  .hk-contact-widget .hk-lead-form input[type="text"],
  .hk-contact-widget .hk-lead-form input[type="email"],
  .hk-contact-widget .hk-lead-form input[type="tel"] {
    padding-left: calc(12px + 40px) !important;
  }

  .hk-contact-widget .hk-lead-form input::placeholder {
    opacity: 0.9 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hke-wrap,
  .hke-wrap *,
  .hke-wrap *::before,
  .hke-wrap *::after,
  .hk-progress-bar__fill,
  .hk-btn__spinner,
  .hk-skeleton-line {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hk-btn.is-loading::after,
  .hk-progress-bar__fill::after {
    animation: none !important;
  }
}

.hk-btn:focus-visible {
  outline: 2px solid rgba(139, 92, 246, 0.6);
  outline-offset: 2px;
}

/* ============================================================================
   PERFORMANCE / COMPATIBILITY
   ============================================================================ */

.hk-progress-bar__fill,
.hk-btn__spinner,
.hk-skeleton-line,
.hk-btn.is-loading::after {
  will-change: transform, opacity;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hk-progress-bar {
  contain: layout style paint;
}

.hk-result-skeleton {
  contain: layout style;
}

.elementor-widget-container .hk-btn,
.hk-form .hk-btn {
  display: inline-flex !important;
}

.elementor-widget-container .hk-btn__spinner,
.hk-form .hk-btn__spinner,
.elementor-widget-container .hk-btn.is-loading .hk-btn__spinner,
.hk-form .hk-btn.is-loading .hk-btn__spinner {
  display: none !important;
}






/* Ta bort oönskad dekorlinje i kalkylatorn utan att påverka progressbaren högst upp */
.elementor-widget-hk-calculator .hk-form::before,
.elementor-widget-hk-calculator .hk-form::after {
  content: none !important;
  display: none !important;
}



/* ==========================================================================
   HK DESIGN TOKENS - globala fallbacks
   Krävs eftersom loading/done-screen flyttas till document.body via JS
   ========================================================================== */
:root {
  --hk-font: 'Inter', -apple-system, sans-serif;
  --hk-placeholder: #9CA3AF;
  --hk-icon: #6B4CAE;
  --hk-ui-bg: #FFFFFF;
  --hk-ui-fg: #4B5563;
  --hk-size-xs: 12px; --hk-size-sm: 13px; --hk-size-base: 15px;
  --hk-size-md: 16px; --hk-size-lg: 17px;
  --hk-w-normal: 400; --hk-w-medium: 500; --hk-w-semi: 600; --hk-w-bold: 700;
  --hk-lh-tight: 1.25; --hk-lh-normal: 1.4; --hk-lh-loose: 1.55;
  --hk-c-purple: #6B4CAE;
  --hk-c-purple-soft: rgba(107,76,174,0.08);
  --hk-c-purple-mid: rgba(107,76,174,0.18);
  --hk-c-text-strong: #1F2937; --hk-c-text: #4B5563;
  --hk-c-text-sub: #6B7280; --hk-c-text-dim: #9CA3AF;
  /* Success — mörkare, mer premium, synkat med estimate */
  --hk-c-success: #16A34A;
  --hk-c-success-soft: rgba(22,163,74,0.10);
  --hk-c-success-border: rgba(22,163,74,0.28);
  /* Error — premium burgundy */
  --hk-c-error: #B91C1C;
  --hk-c-error-soft: rgba(185,28,28,0.08);
  --hk-c-error-border: rgba(185,28,28,0.25);
  --hk-c-error-text: rgba(185,28,28,0.75);
  --hk-c-error-placeholder: rgba(185,28,28,0.55);
  --hk-r-field: 18px; --hk-r-popup: 18px; --hk-r-inner: 18px;
}


/* ==========================================================================
   NORLI HYRESKALKYLATOR - CLEAN PREMIUM v5.2.0
   ========================================================================== */

.elementor-widget-hk-calculator {
  width: 100% !important; max-width: 100% !important;
  display: block !important;
  overflow: visible !important; overflow-x: hidden !important;
  --hk-local-shadow: 0 4px 16px rgba(17,23,34,.08), 0 1px 4px rgba(17,23,34,.05);
  --hk-local-shadow-hover: 0 8px 24px rgba(17,23,34,.12), 0 2px 8px rgba(17,23,34,.07);
  --hk-local-purple: rgba(107,76,174,1);
  --hk-local-error: var(--hk-c-error);
  --hk-local-error-text: var(--hk-c-error-text);
  --hk-local-error-placeholder: var(--hk-c-error-placeholder);
  --hk-placeholder: #9CA3AF;
  --hk-icon: #6B4CAE;
  --hk-ui-bg: #FFFFFF;
  --hk-ui-fg: #4B5563;
}
.elementor-widget-hk-calculator *,
.elementor-widget-hk-calculator *::before,
.elementor-widget-hk-calculator *::after { box-sizing: border-box; }
.elementor-widget-hk-calculator .elementor-widget-container {
  width: 100% !important; max-width: 100% !important;
  overflow-x: hidden !important; overflow-y: visible !important;
}
.elementor-widget-hk-calculator .hk-form {
  width: 100% !important; max-width: 100% !important;
  margin-left: 0 !important; margin-right: 0 !important;
  overflow: visible !important; position: relative !important;
}

/* PROGRESS BAR */
#hk-global-progress.hk-progress-bar {
  position: fixed !important; left: 0 !important; top: 0 !important;
  width: 100% !important; height: 3px !important; z-index: 2147483647 !important;
  background: rgba(255,255,255,.18) !important; opacity: 0 !important;
  pointer-events: none !important; transform: translateY(-6px) !important;
  transition: opacity 160ms ease, transform 160ms ease !important;
}
#hk-global-progress.hk-progress-bar.is-active { opacity: 1 !important; transform: translateY(0) !important; }
#hk-global-progress .hk-progress-bar__fill {
  height: 100% !important; width: 0;
  background: linear-gradient(90deg, rgba(139,92,246,.95), rgba(96,165,250,.95), rgba(139,92,246,.95)) !important;
  transition: width 180ms ease !important;
}

/* FÄLT WRAPPERS */
.elementor-widget-hk-calculator .hk-address-wrap,
.elementor-widget-hk-calculator .hk-select-wrap {
  border-radius: var(--hk-r-field, 18px) !important;
  position: relative !important; z-index: 1 !important; overflow: visible !important;
  background: var(--hk-ui-bg, #F8FAFC) !important;
  border: 1.5px solid rgba(31,41,55,.12) !important;
  box-shadow: var(--hk-local-shadow) !important;
  height: var(--hk-row-fields, 56px) !important; min-height: var(--hk-row-fields, 56px) !important;
  transition: box-shadow 150ms ease-out, transform 120ms ease-out, border-color 150ms ease-out !important;
  display: flex !important; align-items: center !important; outline: none !important;
}
.elementor-widget-hk-calculator .hk-address-wrap::before,
.elementor-widget-hk-calculator .hk-select-wrap::before {
  display: none !important;
  content: none !important;
}
.elementor-widget-hk-calculator .hk-address-wrap:focus-within,
.elementor-widget-hk-calculator .hk-select-wrap:focus-within {
  outline: none !important; box-shadow: var(--hk-local-shadow) !important;
}
@media (hover: hover) and (min-width: 1025px) {
  .elementor-widget-hk-calculator .hk-address-wrap:hover,
  .elementor-widget-hk-calculator .hk-select-wrap:hover {
    border-color: rgba(139,92,246,.16) !important;
  }
}

/* INPUT */
.elementor-widget-hk-calculator .hk-address-wrap input {
  color: var(--hk-placeholder) !important; -webkit-text-fill-color: var(--hk-placeholder) !important;
  flex: 1 1 auto !important; min-width: 0 !important; height: 100% !important;
  line-height: var(--hk-row-fields, 56px) !important;
  padding-top: 0 !important; padding-bottom: 0 !important;
  padding-left: 10px !important; padding-right: 8px !important;
  display: block !important; background: transparent !important;
  border: 0 !important; outline: 0 !important; box-shadow: none !important;
  position: relative !important; z-index: 1 !important;
  -webkit-appearance: none !important; appearance: none !important;
}
.elementor-widget-hk-calculator .hk-address-wrap input:not(.hk-with-icon) { padding-left: 18px !important; }
.elementor-widget-hk-calculator .hk-address-wrap input::placeholder { color: var(--hk-placeholder) !important; -webkit-text-fill-color: var(--hk-placeholder) !important; opacity: 1 !important; }
.elementor-widget-hk-calculator .hk-address-wrap input:not(:placeholder-shown) {
  color: var(--hk-active, #4B5563) !important;
  -webkit-text-fill-color: var(--hk-active, #4B5563) !important;
}
.elementor-widget-hk-calculator .hk-address-wrap input:-webkit-autofill,
.elementor-widget-hk-calculator .hk-address-wrap input:-webkit-autofill:hover,
.elementor-widget-hk-calculator .hk-address-wrap input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--hk-active, #4B5563) !important;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  background-color: transparent !important; background-image: none !important;
  transition: background-color 5000s ease-in-out 0s !important;
}
.elementor-widget-hk-calculator .hk-address-wrap input::-webkit-search-cancel-button,
.elementor-widget-hk-calculator .hk-address-wrap input::-webkit-search-decoration,
.elementor-widget-hk-calculator .hk-address-wrap input::-ms-clear,
.elementor-widget-hk-calculator .hk-address-wrap input::-ms-reveal {
  display: none !important; width: 0 !important; height: 0 !important;
  -webkit-appearance: none !important; appearance: none !important;
}

/* SELECT FACE */
.elementor-widget-hk-calculator .hk-select-face {
  position: absolute !important; top: 0 !important; left: 0 !important;
  right: 40px !important; bottom: 0 !important;
  display: flex !important; align-items: center !important; padding-left: 18px !important;
  pointer-events: none !important; z-index: 1 !important;
  font-size: inherit !important; font-family: inherit !important; line-height: 1.2 !important;
  white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important;
  color: var(--hk-placeholder) !important;
}
.elementor-widget-hk-calculator .hk-select-wrap.is-selected .hk-select-face {
  color: var(--hk-active, #4B5563) !important;
}

/* SELECT */
.elementor-widget-hk-calculator .hk-select-wrap select {
  flex: 1 1 auto !important; min-width: 0 !important; height: 100% !important; width: 100% !important;
  -webkit-appearance: none !important; appearance: none !important;
  border: 0 !important; outline: 0 !important; background: transparent !important; box-shadow: none !important;
  line-height: 1.2 !important; padding-top: 0 !important; padding-bottom: 0 !important;
  padding-left: 18px !important; padding-right: 50px !important; margin: 0 !important;
  display: block !important; position: relative !important; z-index: 1 !important;
  color: transparent !important; -webkit-text-fill-color: transparent !important; opacity: 1 !important;
}
.elementor-widget-hk-calculator .hk-select-wrap select:focus,
.elementor-widget-hk-calculator .hk-select-wrap select:focus-visible {
  outline: none !important; box-shadow: none !important; border: 0 !important;
}
.elementor-widget-hk-calculator .hk-select-wrap select::-ms-expand { display: none !important; }
.elementor-widget-hk-calculator .hk-select-wrap select.hk-native {
  position: absolute !important; top: 0 !important; left: 0 !important;
  width: 100% !important; height: 100% !important; opacity: 0 !important;
  cursor: pointer !important; z-index: 2 !important; pointer-events: none !important;
}

/* IKONER */
.elementor-widget-hk-calculator .hk-icon {
  filter: none !important; flex-shrink: 0 !important; position: relative !important; z-index: 2 !important;
  display: inline-flex !important; align-items: center !important; justify-content: center !important;
  color: var(--hk-local-purple) !important; opacity: 1 !important;
  width: 22px !important; height: 22px !important; font-size: 22px !important;
}
/* Adressikon — nedtonad, matchar placeholder-känslan */
.elementor-widget-hk-calculator .hk-icon--address {
  color: #8A6CCE !important; opacity: 1 !important;
}
.elementor-widget-hk-calculator .hk-address-wrap .hk-icon,
.elementor-widget-hk-calculator .hk-select-wrap .hk-icon { margin-left: 14px !important; margin-right: 2px !important; }
.elementor-widget-hk-calculator .hk-address-wrap .hk-icon { margin-left: 12px !important; margin-right: -4px !important; }
.elementor-widget-hk-calculator .hk-icon i,
.elementor-widget-hk-calculator .hk-icon i::before { color: currentColor !important; opacity: 1 !important; font-size: inherit !important; }
.elementor-widget-hk-calculator .hk-icon svg { width: 22px !important; height: 22px !important; display: block !important; }
.elementor-widget-hk-calculator .hk-icon svg.e-font-icon-svg,
.elementor-widget-hk-calculator .hk-icon svg[class*="e-font-icon-svg"] { fill: currentColor !important; stroke: none !important; }
.elementor-widget-hk-calculator .hk-icon svg:not(.e-font-icon-svg):not([class*="e-font-icon-svg"]) {
  fill: none !important; stroke: currentColor !important; stroke-width: 2px !important;
  stroke-linecap: round !important; stroke-linejoin: round !important;
  vector-effect: non-scaling-stroke !important; overflow: visible !important;
}

/* CHEVRON */
.elementor-widget-hk-calculator .hk-select-wrap::after {
  content: "" !important; position: absolute !important; right: 16px !important; top: 50% !important;
  transform: translateY(-50%) !important; width: 13px !important; height: 8px !important;
  pointer-events: none !important; z-index: 2 !important;
  background-color: #8A6CCE !important; opacity: 1 !important;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 8'%3E%3Cpath d='M1 1l5.5 5.5L12 1' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") !important;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 8'%3E%3Cpath d='M1 1l5.5 5.5L12 1' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") !important;
  -webkit-mask-size: contain !important; mask-size: contain !important;
  -webkit-mask-repeat: no-repeat !important; mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important; mask-position: center !important;
}

/* CLEAR */
.elementor-widget-hk-calculator .hk-clear {
  flex-shrink: 0 !important; position: relative !important; z-index: 3 !important;
  display: inline-flex !important; align-items: center !important; justify-content: center !important;
  width: 28px !important; height: 28px !important; margin-right: 12px !important;
  cursor: pointer !important; color: rgba(17,23,34,.45) !important;
  transition: color 120ms ease, background 120ms ease, opacity 120ms ease, transform 120ms ease !important;
  font-size: 0 !important; line-height: 0 !important;
}
.elementor-widget-hk-calculator .hk-clear svg { width: 16px !important; height: 16px !important; stroke: currentColor !important; fill: none !important; display: block !important; }
.elementor-widget-hk-calculator .hk-address-wrap input:placeholder-shown ~ .hk-clear,
.elementor-widget-hk-calculator .hk-clear[aria-hidden="true"] { opacity: 0 !important; pointer-events: none !important; transform: scale(.92) !important; }
@media (hover: hover) {
  .elementor-widget-hk-calculator .hk-clear:hover { color: rgba(17,23,34,.75) !important; background: rgba(17,23,34,.07) !important; }
}

/* SOFT WARNING */
.elementor-widget-hk-calculator .hk-soft-warning,
.elementor-widget-hk-calculator .hk-soft-warning.is-soft-warning-visible {
  display: none !important; visibility: hidden !important; opacity: 0 !important;
  pointer-events: none !important; width: 0 !important; height: 0 !important; overflow: hidden !important;
}

/* DROPDOWN MENY */
.elementor-widget-hk-calculator .hk-custom-menu,
body .hk-custom-menu {
  background: var(--hk-ui-bg, #FFFFFF) !important;
  border: 1.5px solid rgba(31,41,55,.12) !important;
  border-radius: var(--hk-r-field, 18px) !important;
  box-shadow: 0 24px 70px rgba(17,23,34,.16), 0 8px 22px rgba(17,23,34,.10) !important;
  padding: 8px !important; z-index: 2147483647 !important;
}
.elementor-widget-hk-calculator .hk-custom-menu .hk-opt,
body .hk-custom-menu .hk-opt {
  padding: 10px 14px !important; cursor: pointer !important;
  border-radius: 12px !important;
  font-size: 15px !important; line-height: 1.3 !important; color: rgba(17,23,34,.85) !important;
  transition: background 100ms ease !important;
}
.elementor-widget-hk-calculator .hk-custom-menu .hk-opt:hover,
.elementor-widget-hk-calculator .hk-custom-menu .hk-opt.is-focused,
body .hk-custom-menu .hk-opt:hover,
body .hk-custom-menu .hk-opt.is-focused { background: rgba(107,76,174,.10) !important; color: rgba(107,76,174,1) !important; border-radius: 12px !important; }
.elementor-widget-hk-calculator .hk-custom-menu .hk-opt.is-selected,
body .hk-custom-menu .hk-opt.is-selected { font-weight: 600 !important; color: rgba(107,76,174,1) !important; }
body .pac-container {
  background: var(--hk-ui-bg, #FFFFFF) !important;
  border: 1.5px solid rgba(31,41,55,.12) !important;
  border-radius: var(--hk-r-field, 18px) !important;
  box-shadow: 0 24px 70px rgba(17,23,34,.16), 0 8px 22px rgba(17,23,34,.10) !important;
  overflow: hidden !important; z-index: 2147483647 !important;
}
body .pac-container .pac-item {
  padding: 10px 16px !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  color: rgba(17,23,34,.80) !important;
  border-top: 1px solid rgba(17,23,34,.05) !important;
}
body .pac-container .pac-item:first-child { border-top: none !important; }
body .pac-container .pac-item .pac-item-query {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: rgba(17,23,34,.88) !important;
}
body .pac-container .pac-item:hover,
body .pac-container .pac-item-selected {
  background: rgba(107,76,174,.10) !important;
  color: rgba(107,76,174,1) !important;
}
body .pac-container:after { display: none !important; }

/* BUTTON */
.elementor-widget-hk-calculator .hk-btn {
  border-radius: 18px !important;
  position: relative; z-index: 1; overflow: hidden;
  display: flex !important; align-items: center !important; justify-content: center !important; text-align: center !important;
  background: linear-gradient(170deg, #8A6CCE 0%, #7559C0 100%) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  height: 56px !important;
  min-height: 56px !important;
  box-shadow: 0 2px 8px rgba(107,76,174,.10) !important;
  padding: 0 24px !important; white-space: nowrap !important; color: #fff !important;
  transform: none !important;
  transition: background 180ms ease, box-shadow 180ms ease !important;
}
/* Satin-reflex — väldigt subtil, inte glossy */
.elementor-widget-hk-calculator .hk-btn::before {
  content: "" !important; display: block !important;
  position: absolute; left: 0; right: 0; top: 0; height: 50%;
  pointer-events: none; z-index: 2;
  background: linear-gradient(180deg, rgba(255,255,255,.09) 0%, rgba(255,255,255,0) 100%);
  border-radius: 18px 18px 0 0;
}
.elementor-widget-hk-calculator .hk-btn .hk-btn__label {
  color: #fff !important; position: relative !important; z-index: 3 !important;
}
/* Desktop: samma familj, något mer kompakt */
@media (min-width: 1025px) {
  .elementor-widget-hk-calculator .hk-btn {
    height: 52px !important;
    min-height: 52px !important;
    padding: 0 20px !important;
  }
}
@media (hover: hover) and (min-width: 1025px) {
  .elementor-widget-hk-calculator .hk-form .hk-btn:hover,
  .elementor-widget-hk-calculator .hk-btn:hover {
    background: linear-gradient(170deg, #9275D4 0%, #7F63C8 100%) !important;
    box-shadow: 0 4px 12px rgba(107,76,174,.16) !important;
    transform: none !important;
  }
}
.elementor-widget-hk-calculator .hk-btn:active {
  filter: brightness(0.96) !important;
  box-shadow: 0 1px 6px rgba(107,76,174,.09) !important;
}
.elementor-widget-hk-calculator .hk-btn:focus-visible {
  outline: none !important;
  box-shadow: 0 2px 8px rgba(107,76,174,.10), 0 0 0 3px rgba(138,108,206,.22) !important;
}

/* ERRORS */
.elementor-widget-hk-calculator .hk-field { position: relative !important; margin: 0 !important; }
.elementor-widget-hk-calculator .hk-field.is-error .hk-error-msg { display: none !important; }
.elementor-widget-hk-calculator .hk-field.is-error .hk-address-wrap,
.elementor-widget-hk-calculator .hk-field.is-error .hk-select-wrap { border-color: var(--hk-local-error) !important; border-width: 2px !important; background: #FFFFFF !important; box-shadow: none !important; animation: hkCalcFlash .55s ease-out 1; }
.elementor-widget-hk-calculator .hk-field.is-error .hk-icon,
.elementor-widget-hk-calculator .hk-field.is-error .hk-icon i,
.elementor-widget-hk-calculator .hk-field.is-error .hk-icon i::before,
.elementor-widget-hk-calculator .hk-field.is-error .hk-icon svg,
.elementor-widget-hk-calculator .hk-field.is-error .hk-icon svg.e-font-icon-svg,
.elementor-widget-hk-calculator .hk-field.is-error .hk-icon svg[class*="e-font-icon-svg"] { color: var(--hk-local-purple) !important; fill: currentColor !important; stroke: currentColor !important; opacity: 1 !important; }
.elementor-widget-hk-calculator .hk-field.is-error input,
.elementor-widget-hk-calculator .hk-field.is-error .hk-address-wrap input,
.elementor-widget-hk-calculator .hk-field.is-error input:not(:placeholder-shown) { color: var(--hk-local-error-text) !important; -webkit-text-fill-color: var(--hk-local-error-text) !important; caret-color: var(--hk-local-error) !important; }
.elementor-widget-hk-calculator .hk-field.is-error input::placeholder,
.elementor-widget-hk-calculator .hk-field.is-error .hk-address-wrap input::placeholder,
.elementor-widget-hk-calculator .hk-field.is-error .hk-address-wrap input::-webkit-input-placeholder { color: var(--hk-local-error-placeholder) !important; -webkit-text-fill-color: var(--hk-local-error-placeholder) !important; opacity: 1 !important; }
.elementor-widget-hk-calculator .hk-field.is-error .hk-select-face { color: var(--hk-local-error-placeholder) !important; }
.elementor-widget-hk-calculator .hk-field.is-error .hk-select-wrap::after { background-color: var(--hk-local-error) !important; }
@keyframes hkCalcFlash {
  0%, 100% { box-shadow: var(--hk-local-shadow); }
  40%      { box-shadow: 0 0 0 3px rgba(185,28,28,.12), var(--hk-local-shadow-hover); }
}

/* SPINNERS */
.elementor-widget-hk-calculator .hk-btn .hk-spinner,
.elementor-widget-hk-calculator .hk-btn .hk-loader,
.elementor-widget-hk-calculator .hk-btn .elementor-button-icon { display: none !important; visibility: hidden !important; opacity: 0 !important; }

/* DISCLAIMER */
.elementor-widget-hk-calculator .hk-disclaimer-v1 {
  margin: 12px 0 0 !important; padding: 0 !important;
  font-style: italic !important;
  font-weight: 600 !important;
  color: #4B5563 !important;
  letter-spacing: 0.01em !important;
  line-height: 1.45 !important;
  font-size: 15px !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
}

/* HERO-TITEL */
.elementor-widget-hk-calculator .hk-form .hk-field--address > label {
  color: #4B5563 !important; letter-spacing: 0.01em !important; font-weight: 600 !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
  padding-left: 12px !important; margin-bottom: 6px !important; transform: translateY(-4px) !important;
}
@media (min-width: 1025px) {
  .elementor-widget-hk-calculator .hk-form .hk-field--address > label { font-size: 18px !important; line-height: 1.15 !important; }
}
@media (max-width: 767px) {
  .elementor-widget-hk-calculator .hk-form .hk-field--address > label { font-size: 18px !important; margin-bottom: 6px !important; transform: translateY(-3px) !important; }
}

/* TOUCH */
.elementor-widget-hk-calculator .hk-address-wrap input,
.elementor-widget-hk-calculator .hk-select-wrap select,
.elementor-widget-hk-calculator .hk-btn {
  border-radius: var(--hk-r-field, 18px) !important; touch-action: manipulation !important; }

/* ADRESSFÖRSLAG */
@media (max-width: 767px) {
  body .hk-suggest { box-sizing: border-box !important; padding: 8px 10px !important; max-height: 260px !important; }
  body .hk-suggest .hk-sug-item { padding-top: 8px !important; padding-bottom: 8px !important; }
  body .pac-container .pac-item { padding: 8px 14px !important; }
}

/* COMPLETION-BOX */
.elementor-widget-hk-calculator .hk-addr-complete { top: calc(100% + 2px) !important; outline: none !important; }
.elementor-widget-hk-calculator .hk-addr-complete__input,
.elementor-widget-hk-calculator .hk-addr-complete__btn { height: var(--hk-row-fields, 56px) !important; }
@media (max-width: 1024px) {
  .elementor-widget-hk-calculator .hk-addr-complete { top: calc(100% + 2px) !important; }
  .elementor-widget-hk-calculator .hk-addr-complete__input,
  .elementor-widget-hk-calculator .hk-addr-complete__btn { height: 52px !important; }
}

/* CALLOUT – matchar fältens styling, ligger tätt mot adressfältet */
/* Dölj pilen (::after) som PHP renderar */
.elementor-widget-hk-calculator .hk-addr-callout::after,
.hk-addr-callout-portal::after {
  display: none !important;
}

/* FEATURE ROW */
.elementor-widget-hk-calculator .hk-field--features { margin: 0 !important; padding: 0 !important; }
.elementor-widget-hk-calculator .hk-field--features .hk-feature-options { width: 100% !important; }
.elementor-widget-hk-calculator .hk-feature-option {
  display: inline-flex !important; align-items: center !important; gap: 5px !important;
  margin: 0 !important; cursor: pointer !important; position: relative !important;
}
.elementor-widget-hk-calculator .hk-feature-option__label {
  font-size: 13px !important; line-height: 1.15 !important; font-weight: 400 !important;
  color: #4B5563 !important; white-space: nowrap !important; letter-spacing: 0.01em !important;
}
.elementor-widget-hk-calculator .hk-feature-option input[type="checkbox"] {
  position: absolute !important; opacity: 0 !important; inset: 0 auto auto 0 !important;
  width: 18px !important; height: 18px !important; margin: 0 !important; pointer-events: none !important; accent-color: #7559C0 !important;
}

/* ============================================================
   Tillval – CHECKBOX-RUTOR (alla enheter)
   Moderniserad i Norlis nya ljusa lila-skala (#8A6CCE / #7559C0)
   ============================================================ */

/* Unchecked — mjuk vit med subtil lila border */
.elementor-widget-hk-calculator .hk-feature-option__box {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  border-radius: 6px !important;
  border: 1.5px solid rgba(31,41,55,.12) !important;
  background: rgba(255,255,255,0.95) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    0 1px 3px rgba(107,76,174,.10),
    0 2px 8px rgba(47,58,79,.05) !important;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 120ms ease !important;
  position: relative !important;
}

@media (hover: hover) {
  .elementor-widget-hk-calculator .hk-feature-option:hover .hk-feature-option__box {
    border-color: rgba(31,41,55,.20) !important;
    background: rgba(255,255,255,1) !important;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.7),
      0 2px 6px rgba(107,76,174,.14),
      0 4px 12px rgba(47,58,79,.06) !important;
  }
}

.elementor-widget-hk-calculator .hk-feature-option input[type="checkbox"]:checked + .hk-feature-option__box {
  background: linear-gradient(170deg, #8A6CCE 0%, #7559C0 100%) !important;
  border-color: #7559C0 !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.28),
    0 2px 8px rgba(117,89,192,.28),
    0 4px 14px rgba(107,76,174,.18) !important;
}

/* Bocken ritas proportionellt mot boxens storlek via % och transform
   så den ser skarp och centrerad ut oavsett boxstorlek (15px desktop,
   20px mobil). */
.elementor-widget-hk-calculator .hk-feature-option input[type="checkbox"]:checked + .hk-feature-option__box::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 48% !important;
  width: 28% !important;
  height: 58% !important;
  border-right: 2px solid #fff !important;
  border-bottom: 2px solid #fff !important;
  transform: translate(-50%, -50%) rotate(45deg) !important;
  box-sizing: border-box !important;
}

.elementor-widget-hk-calculator .hk-feature-option input[type="checkbox"]:focus-visible + .hk-feature-option__box {
  outline: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    0 0 0 3px rgba(138,108,206,.25),
    0 2px 8px rgba(107,76,174,.14) !important;
}

/* DESKTOP LAYOUT - styrs av PHP focus_css och HK CARD */
@media (min-width: 1025px) {
  .elementor-widget-hk-calculator,
  .elementor-widget-hk-calculator .elementor-widget-container,
  .elementor-widget-hk-calculator .hk-form,
  .elementor-widget-hk-calculator .hk-field--btn { overflow: visible !important; }
  .elementor-widget-hk-calculator .hk-field > label { display: none !important; }
  .elementor-widget-hk-calculator .hk-field--address > label { display: block !important; }
}

/* TABLET LAYOUT - styrs av PHP focus_css och HK CARD */
@media (min-width: 768px) and (max-width: 1024px) {
}

/* TABLET + MOBIL HEIGHT */
@media (max-width: 1024px) {
  .elementor-widget-hk-calculator .hk-address-wrap,
  .elementor-widget-hk-calculator .hk-select-wrap,
  .elementor-widget-hk-calculator .hk-btn {
  border-radius: var(--hk-r-field, 18px) !important; height: 52px !important; min-height: 52px !important; }
  .elementor-widget-hk-calculator .hk-address-wrap input { line-height: 52px !important; font-size: 16px !important; -webkit-text-size-adjust: 100% !important; }
  .elementor-widget-hk-calculator .hk-select-wrap select { font-size: 16px !important; -webkit-text-size-adjust: 100% !important; line-height: 1.2 !important; transform: translateY(-1px) !important; }
  .elementor-widget-hk-calculator .hk-select-face { font-size: 16px !important; }
  .elementor-widget-hk-calculator .hk-btn {
  border-radius: var(--hk-r-field, 18px) !important; width: 100% !important; }
}

/* MOBIL LAYOUT - styrs av PHP focus_css och HK CARD */
@media (max-width: 767px) {
}

/* ==========================================================================
   HK CARD + GROUPED INPUT
   ========================================================================== */

/* Kortet */
.elementor-widget-hk-calculator .hk-card {
  background: #FFFFFF;
  border: 1px solid rgba(47,58,79,0.08);
  box-shadow: 0 16px 40px rgba(47,58,79,0.10);
  border-radius: 22px;
  padding: 18px 12px 18px 12px;
  box-sizing: border-box;
  width: 100% !important;
  max-width: 100% !important;
  display: flow-root;
}

/* Dölj disclaimer */
.elementor-widget-hk-calculator .hk-disclaimer-v1 {
  display: none !important;
}

/* Grouped input — ta bort bas-CSS border/shadow på wraps inuti kort */
.elementor-widget-hk-calculator .hk-card .hk-address-wrap,
.elementor-widget-hk-calculator .hk-card .hk-select-wrap {
  box-shadow: none !important;
}

/* Höjd på mobil */
@media (max-width: 1024px) {
  .elementor-widget-hk-calculator .hk-card .hk-address-wrap,
  .elementor-widget-hk-calculator .hk-card .hk-field--type .hk-select-wrap,
  .elementor-widget-hk-calculator .hk-card .hk-field--bedrooms .hk-select-wrap {
    height: 52px !important;
    min-height: 52px !important;
  }
}

/* Desktop: max 560px */
@media (min-width: 1025px) {
  .elementor-widget-hk-calculator .hk-form {
    max-width: 560px !important;
  }
  .elementor-widget-hk-calculator .hk-card {
    border-radius: 24px !important;
    padding: 24px !important;
    display: flow-root !important;
  }
  .elementor-widget-hk-calculator .hk-card .hk-address-wrap,
  .elementor-widget-hk-calculator .hk-card .hk-field--type .hk-select-wrap,
  .elementor-widget-hk-calculator .hk-card .hk-field--bedrooms .hk-select-wrap {
    height: 56px !important;
    min-height: 56px !important;
  }
  .elementor-widget-hk-calculator .hk-card .hk-field--address { float: none !important; }
  .elementor-widget-hk-calculator .hk-card .hk-field--type,
  .elementor-widget-hk-calculator .hk-card .hk-field--bedrooms { float: left !important; width: 50% !important; }
  .elementor-widget-hk-calculator .hk-card .hk-field--type { padding-right: 4px !important; }
  .elementor-widget-hk-calculator .hk-card .hk-field--bedrooms { padding-left: 4px !important; }
  .elementor-widget-hk-calculator .hk-card .hk-field--features .hk-feature-options { flex-wrap:nowrap !important; gap:8px 20px !important; }
  .elementor-widget-hk-calculator .hk-card .hk-field--bedrooms .hk-select-wrap {
    border: 1.5px solid rgba(31,41,55,.12) !important;
    box-sizing: border-box !important;
  }
  .elementor-widget-hk-calculator .hk-card .hk-field--type .hk-select-wrap {
    border: 1.5px solid rgba(31,41,55,.12) !important;
    box-sizing: border-box !important;
  }
  .elementor-widget-hk-calculator .hk-card .hk-field--btn,
  .elementor-widget-hk-calculator .hk-card .hk-field--features { clear: both !important; }
}

/* ============================================================================
   HKE ESTIMATE — LJUST TEMA (NORLI PREMIUM)
   Skriver över det mörka aurora-temat med Norlis ljusa designspråk.
   Ladda efter hk-calculator-widget.css.
   ============================================================================ */

/* ── Design-tokens ─────────────────────────────────────────── */
.elementor-widget-hk-estimate .hke-wrap,
.hke-wrap {
  --hke-purple:        #8A6CCE;
  --hke-purple-soft:   rgba(138,108,206,0.07);
  --hke-purple-mid:    rgba(138,108,206,0.18);
  --hke-purple-bd:     rgba(138,108,206,0.16);
  --hke-green:         #16A34A;
  --hke-green-soft:    #DCFCE7;
  --hke-text:          #4B5563;
  --hke-text-strong:   #2F3A4F;
  --hke-text-sub:      #6B7280;
  --hke-text-dim:      #9CA3AF;
  --hke-border:        rgba(47,58,79,0.10);
  --hke-bg:            #F7F8FC;
  --hke-bg-raised:     #FFFFFF;
  --hke-cta-bg:        #FFFFFF;
  /* Ljusa pris-variabler */
  --hke-price-base-a:  rgba(255,255,255,0.98);
  --hke-price-base-b:  rgba(247,248,252,0.96);
  --hke-price-border:  rgba(47,58,79,0.10);
  --hke-price-inner:   rgba(255,255,255,0.80);
  --hke-price-lift-white:  rgba(255,255,255,0.60);
  --hke-price-lift-purple: rgba(138,108,206,0.06);
  --hke-aurora-purple: rgba(138,108,206,0.06);
  --hke-aurora-indigo: rgba(138,108,206,0.04);
  --hke-aurora-blue:   rgba(138,108,206,0.03);
  --hke-aurora-violet: rgba(138,108,206,0.04);
  --hke-purple-glow:   rgba(138,108,206,0.10);
  --hke-dark-shadow:   0 8px 32px rgba(47,58,79,0.10), 0 2px 8px rgba(47,58,79,0.06);
  --hke-dark-border:   rgba(47,58,79,0.08);
}

/* ── Wrap — ljus bakgrund ───────────────────────────────────── */
.hke-wrap {
  background: #FFFFFF !important;
  border: 1px solid rgba(47,58,79,0.08) !important;
  box-shadow: 0 8px 32px rgba(47,58,79,0.10), 0 2px 8px rgba(47,58,79,0.06) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hke-wrap::before {
  background: none !important;
  opacity: 0 !important;
}

.hke-wrap::after {
  background: none !important;
}

@media (hover: hover) {
  .hke-wrap:hover {
    transform: none !important;
    box-shadow: 0 12px 40px rgba(47,58,79,0.12), 0 4px 12px rgba(47,58,79,0.07) !important;
    border-color: rgba(138,108,206,0.16) !important;
  }
}

/* ── Pris-block — vitt kort ─────────────────────────────────── */
.hke-price-block {
  background: #FFFFFF !important;
  border: 1px solid rgba(47,58,79,0.08) !important;
  box-shadow: 0 4px 16px rgba(47,58,79,0.07), 0 1px 4px rgba(47,58,79,0.04) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hke-price-block::before,
.hke-price-block::after {
  opacity: 0 !important;
}

@media (hover: hover) {
  .hke-price-block:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(138,108,206,0.16) !important;
    box-shadow: 0 8px 24px rgba(47,58,79,0.09), 0 2px 8px rgba(47,58,79,0.05) !important;
  }
}

/* Avdelare i prisblock */
.hke-price-row--monthly {
  border-top-color: rgba(47,58,79,0.08) !important;
}

/* ── CTA-kort — ljust premiumkort ───────────────────────────── */
.elementor-widget-hk-estimate .hke-cta-card,
.hke-cta-card {
  background: linear-gradient(160deg,
    rgba(247,248,252,1) 0%,
    rgba(243,240,255,0.60) 55%,
    #FFFFFF 100%
  ) !important;
  border: 1px solid rgba(138,108,206,0.18) !important;
  box-shadow: 0 4px 16px rgba(47,58,79,0.07), 0 1px 4px rgba(47,58,79,0.04) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  color: #2F3A4F !important;
}

.elementor-widget-hk-estimate .hke-cta-card::before {
  content: none !important;
}

@media (hover: hover) {
  .elementor-widget-hk-estimate .hke-cta-card:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(138,108,206,0.28) !important;
    box-shadow: 0 8px 24px rgba(47,58,79,0.09), 0 2px 8px rgba(47,58,79,0.05) !important;
  }
}

/* CTA-kortets texter — mörk text på ljus bakgrund */
.hke-cta-card__title {
  color: #2F3A4F !important;
}

.hke-cta-card__sub {
  color: #4B5563 !important;
}

/* Benefits-lista */
.hke-cta-benefit {
  color: #4B5563 !important;
}

.hke-cta-benefit svg {
  color: #16A34A !important;
}

.hke-benefit-link {
  color: #4B5563 !important;
}

.hke-benefit-link:hover {
  color: #2F3A4F !important;
}

/* Trust micro */
.hke-trust-micro-item {
  color: #4B5563 !important;
}

.hke-trust-micro-item svg {
  color: #16A34A !important;
}

.hke-trust-micro-item a {
  color: #4B5563 !important;
}

/* Trust foot */
.hke-trust-foot__item {
  color: #6B7280 !important;
}

.hke-trust-foot__sep {
  color: rgba(47,58,79,0.25) !important;
}

.hke-trust-foot__link {
  color: #6B7280 !important;
}

/* ── Property card — adressraden ────────────────────────────── */
.hke-property-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(138,108,206,0.16) !important;
  box-shadow: 0 1px 4px rgba(47,58,79,0.06) !important;
}

.hke-property-card__icon {
  color: #8A6CCE !important;
}

.hke-property-card__address {
  color: #8A6CCE !important;
}

.hke-property-card__meta {
  color: #8A6CCE !important;
}

/* ── Chips ──────────────────────────────────────────────────── */
.hke-chip {
  background: rgba(138,108,206,.04) !important;
  border: 1px solid rgba(138,108,206,.13) !important;
  color: #7559C0 !important;
  box-shadow: 0 1px 3px rgba(107,76,174,0.08) !important;
}

.hke-chip svg {
  color: #8A6CCE !important;
}

/* ── Lock hint — "Lämna din e-post…" ───────────────────────── */
.hke-lock-hint {
  background: linear-gradient(135deg,
    rgba(138,108,206,0.08) 0%,
    rgba(117,89,192,0.05) 100%
  ) !important;
  border: 1.5px solid rgba(138,108,206,0.22) !important;
  box-shadow: 0 2px 8px rgba(107,76,174,0.08), 0 1px 3px rgba(107,76,174,0.05) !important;
  color: #7559C0 !important;
}

.hke-lock-hint svg {
  color: #8A6CCE !important;
}

/* ── Locked rows ────────────────────────────────────────────── */
.hke-locked-row {
  background: #FFFFFF !important;
  border-color: rgba(47,58,79,0.09) !important;
}

.is-unlocked .hke-locked-row {
  background: rgba(138,108,206,0.05) !important;
  border-color: rgba(138,108,206,0.16) !important;
}

/* ── Upplåst: värde-färger ─────────────────────────────────── */
.is-unlocked .hke-locked-row__value--high {
  color: #7559C0 !important;
}

.is-unlocked .hke-locked-row__value--mid {
  color: #8A6CCE !important;
}

/* ── Analysis block ─────────────────────────────────────────── */
.hke-analysis-block {
  background: linear-gradient(180deg,
    rgba(247,248,252,0.98) 0%,
    rgba(243,240,255,0.60) 100%
  ) !important;
  border-color: rgba(138,108,206,0.12) !important;
}

.hke-analysis-divider {
  border-top-color: rgba(138,108,206,0.08) !important;
}

/* ── Success banner ─────────────────────────────────────────── */
.hke-success-banner {
  background: rgba(74,222,128,0.07) !important;
  border-color: rgba(74,222,128,0.35) !important;
  color: #166534 !important;
}

/* ── Trust items (gamla widgeten) ───────────────────────────── */
.hke-trust-item {
  background: rgba(138,108,206,0.05) !important;
  border-color: rgba(138,108,206,0.12) !important;
}

@media (hover: hover) {
  .hke-trust-item:hover {
    background: rgba(138,108,206,0.09) !important;
    border-color: rgba(138,108,206,0.22) !important;
    box-shadow: 0 4px 12px rgba(138,108,206,0.10) !important;
  }
}

/* ── Occ-bars ───────────────────────────────────────────────── */
.hke-occ-bar-wrap {
  background: rgba(138,108,206,0.08) !important;
}

.hke-occ-bar-fill {
  background: linear-gradient(90deg, #8A6CCE 0%, #7559C0 100%) !important;
}

.hke-occ-row--avg .hke-occ-bar-fill {
  background: linear-gradient(90deg, #8A6CCE 0%, #7559C0 100%) !important;
}

/* ── Addon items ────────────────────────────────────────────── */
.hke-addon-item {
  background: rgba(138,108,206,0.06) !important;
  border-color: rgba(138,108,206,0.12) !important;
}

/* ── Dividers ───────────────────────────────────────────────── */
.hke-addons {
  border-top-color: rgba(47,58,79,0.08) !important;
}

.hke-occupancy {
  border-top-color: rgba(47,58,79,0.08) !important;
}

.hke-vacancy {
  border-top-color: rgba(47,58,79,0.07) !important;
}

/* ── Context text-glows — ta bort lila glow på ljus bakgrund ── */
.hke-context-address,
.hke-context-bedrooms,
.hke-context-guests {
  filter: none !important;
}

/* ── Price amount shadows — anpassa till ljus bakgrund ─────── */
.hke-price-amount--nightly,
.hke-price-amount--monthly {
  text-shadow: none !important;
  filter: none !important;
}

/* ============================================================================
   HKE ESTIMATE — LJUST TEMA OMGÅNG 2
   Knappar, e-postfält, säsongsfärger, feat-block, ikoner
   ============================================================================ */

/* ── CTA-knapp — exakt kalkylator-stilen ───────────────────── */
.elementor-widget-hk-estimate .hke-cta-btn {
  background: linear-gradient(170deg, #8A6CCE 0%, #7559C0 100%) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 18px !important;
  box-shadow: 0 2px 8px rgba(107,76,174,.10) !important;
  color: #fff !important;
  font-weight: 600 !important;
  text-shadow: none !important;
  transition: background 180ms ease, box-shadow 180ms ease !important;
  overflow: hidden;
}

/* Satin-highlight på knappen */
.elementor-widget-hk-estimate .hke-cta-btn::before {
  background: linear-gradient(180deg, rgba(255,255,255,.09) 0%, rgba(255,255,255,0) 100%) !important;
  border-radius: 18px 18px 0 0 !important;
  opacity: 1 !important;
}

@media (hover: hover) {
  .elementor-widget-hk-estimate .hke-cta-btn:hover:not(:disabled) {
    background: linear-gradient(170deg, #9275D4 0%, #7F63C8 100%) !important;
    box-shadow: 0 4px 14px rgba(107,76,174,.18) !important;
    transform: translateY(-1px) !important;
  }
}

.elementor-widget-hk-estimate .hke-cta-btn:active:not(:disabled) {
  filter: brightness(0.96) !important;
  transform: translateY(0) !important;
}

/* ── E-postfält — matchar kalkylatorns fältstil ────────────── */
.elementor-widget-hk-estimate .hke-email-field {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(252,252,253,1) 100%) !important;
  border: 1.5px solid rgba(47,58,79,.12) !important;
  box-shadow: 0 4px 16px rgba(47,58,79,.07), 0 1px 4px rgba(47,58,79,.04) !important;
}

.elementor-widget-hk-estimate .hke-email-field:focus-within {
  border-color: rgba(138,108,206,.45) !important;
  box-shadow: 0 4px 16px rgba(47,58,79,.07), 0 0 0 3px rgba(138,108,206,.10) !important;
}

.elementor-widget-hk-estimate .hke-email-field svg {
  color: #8A6CCE !important;
}

/* ── Säsongsvärden — konsekvent lila skala ──────────────────── */
.elementor-widget-hk-estimate .is-unlocked .hke-locked-row__value--high {
  color: #7559C0 !important;
}

.elementor-widget-hk-estimate .is-unlocked .hke-locked-row__value--mid {
  color: #8A6CCE !important;
}

.elementor-widget-hk-estimate .is-unlocked .hke-locked-row__value--low {
  color: #9B8AC4 !important;
}

/* ── Feat-block (Så mycket höjer dina tillval) ──────────────── */
.elementor-widget-hk-estimate .hke-feat-block {
  background: rgba(138,108,206,.04) !important;
  border-color: rgba(138,108,206,.14) !important;
}

.elementor-widget-hk-estimate .hke-feat-row {
  background: transparent !important;
  border-bottom-color: rgba(138,108,206,.10) !important;
}

.elementor-widget-hk-estimate .hke-feat-row__icon {
  color: #8A6CCE !important;
  opacity: 0.7 !important;
}

.elementor-widget-hk-estimate .hke-feat-row__value {
  color: #7559C0 !important;
}

.elementor-widget-hk-estimate .hke-feat-total {
  background: rgba(138,108,206,.04) !important;
  border-top-color: rgba(138,108,206,.14) !important;
}

.elementor-widget-hk-estimate .hke-feat-total__label {
  color: #2F3A4F !important;
}

.elementor-widget-hk-estimate .hke-feat-total__value {
  color: #7559C0 !important;
}

/* Unlocked feat-block */
.elementor-widget-hk-estimate .is-unlocked .hke-feat-block {
  background: rgba(138,108,206,.04) !important;
  border-color: rgba(138,108,206,.18) !important;
}

.elementor-widget-hk-estimate .is-unlocked .hke-feat-row {
  border-bottom-color: rgba(138,108,206,.12) !important;
}

.elementor-widget-hk-estimate .is-unlocked .hke-feat-total {
  background: rgba(138,108,206,.09) !important;
  border-top-color: rgba(138,108,206,.13) !important;
}

.elementor-widget-hk-estimate .is-unlocked .hke-feat-total__label {
  color: #7559C0 !important;
}

.elementor-widget-hk-estimate .is-unlocked .hke-feat-row__value,
.elementor-widget-hk-estimate .is-unlocked .hke-feat-total__value {
  color: #7559C0 !important;
}

/* ── Impact rows (Vad påverkar) ikoner ──────────────────────── */
.elementor-widget-hk-estimate .hke-impact-row svg {
  color: #8A6CCE !important;
  opacity: 0.65 !important;
}

.elementor-widget-hk-estimate .hke-impact-row {
  border-bottom-color: rgba(47,58,79,.07) !important;
}

/* ── Trust foot (länkarna under knappen) ────────────────────── */
.elementor-widget-hk-estimate .hke-trust-foot__item {
  color: #6B7280 !important;
}

.elementor-widget-hk-estimate .hke-trust-foot__link {
  color: #6B7280 !important;
}

/* ── Val-error ───────────────────────────────────────────────── */
.elementor-widget-hk-estimate .hke-val-err {
  color: #7559C0 !important;
  border-color: rgba(47,58,79,.12) !important;
}

/* ── Tillval-rad: en rad på desktop + tablet ─────────────────── */
@media (min-width: 768px) {
  .hk-feature-options {
    flex-wrap: nowrap !important;
    gap: 4px 24px !important;
  }
}

/* ============================================================
   Hyreskalkylator – MOBIL
   Transparent kort runt fält + knapp (luftig default-look)
   Tillvals-rutans vita box styrs från PHP direkt (class-hk-widget.php)
   eftersom PHP:s ID-selector (#hk-xxxxx) har högre CSS-specificitet
   än vi kan matcha från extern stylesheet.
   ============================================================ */
@media (max-width: 767px) {
  .elementor-widget-hk-calculator .hk-card {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }
}