/*
Theme Name: HaltiStelle
Theme URI: https://haltistelle.com
Author: HaltiStelle
Description: Clean WooCommerce product theme for HALTI.
Version: 1.0.51
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 8.1
Text Domain: haltistelle
*/

:root {
  --halti-lime: #a8d63f;
  --halti-green: #183a24;
  --halti-green-deep: #12351f;
  --halti-orange: #f59a2e;
  --halti-purple: #7438f2;
  --halti-blue: #2f6bea;
  --halti-red: #e92b2b;
  --background: #f6f8fa;
  --surface: #ffffff;
  --surface-soft: #eef4ea;
  --text: #0f172a;
  --muted: #64748b;
  --line: #dce5dd;
  --line-strong: #c4d0c7;
  --success: #1f7a4d;
  --warning: #a85e08;
  --shadow-soft: 0 18px 55px rgba(15, 23, 42, 0.09);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.07);
  --radius-button: 16px;
  --radius-card: 24px;
  --radius-small: 14px;
  --content: 1180px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-rounded, "SF Pro Rounded", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-overflow-scrolling: touch;
}

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

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

a:hover {
  color: var(--halti-green);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(168, 214, 63, 0.72);
  outline-offset: 4px;
}

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

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.section-anchor--target {
  display: block;
  height: 0;
  overflow: hidden;
}

.section {
  padding: 88px 0;
}

.section--white {
  background: var(--surface);
}

.section--green {
  background: var(--halti-green-deep);
  color: #ffffff;
}

.section__inner {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
}

.section__header {
  max-width: 760px;
  margin: 0 0 34px;
}

.section__header--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: none;
}

.section__header--light p,
.section--green .section__header p {
  color: rgba(255, 255, 255, 0.76);
}

.section__header h2,
.page-title,
.woocommerce-products-header__title,
.woocommerce div.product .product_title {
  margin: 10px 0 14px;
  color: var(--text);
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
}

.section--green .section__header h2 {
  color: #ffffff;
}

.section__header p,
.hero__text,
.hero__claim {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.eyebrow,
.badge,
.halti-product-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(24, 58, 36, 0.12);
  border-radius: 999px;
  background: rgba(168, 214, 63, 0.2);
  color: var(--halti-green-deep);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

.eyebrow--light {
  background: rgba(168, 214, 63, 0.16);
  border-color: rgba(168, 214, 63, 0.22);
  color: #dff6a5;
}

.badge--lime {
  background: var(--halti-lime);
  color: var(--halti-green-deep);
}

.badge--blue {
  background: var(--halti-blue);
  border-color: rgba(47, 107, 234, 0.88);
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 8px 0;
  background: rgba(246, 248, 250, 0.78);
  border-bottom: 1px solid rgba(220, 229, 221, 0.72);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(246, 248, 250, 0.9);
  border-bottom-color: rgba(196, 208, 199, 0.86);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.1);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(100% - 40px, var(--content));
  min-height: 64px;
  padding: 8px 10px 8px 14px;
  margin: 0 auto;
  border: 1px solid rgba(220, 229, 221, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled .site-header__inner {
  border-color: rgba(196, 208, 199, 0.9);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 46px rgba(15, 23, 42, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 116px;
  min-height: 44px;
  padding: 4px 8px 4px 4px;
  border-radius: 999px;
  transition: opacity 160ms ease, transform 160ms ease;
}

.brand:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.brand img {
  width: 118px;
  max-height: 40px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  width: fit-content;
  max-width: 100%;
  justify-self: center;
  padding: 4px;
  border: 1px solid rgba(220, 229, 221, 0.78);
  border-radius: 999px;
  background: rgba(246, 248, 250, 0.78);
  font-size: 14px;
  font-weight: 760;
}

.nav a,
.mobile-nav a {
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #1f2937;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.nav a:hover,
.nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
  background: var(--halti-orange);
  color: #2f1600;
  box-shadow: 0 9px 22px rgba(245, 154, 46, 0.24);
}

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

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  justify-self: end;
}

.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-height: 44px;
  border: 1px solid rgba(220, 229, 221, 0.9);
  border-radius: 999px;
  background: #ffffff;
  color: var(--halti-green-deep);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.header-cart:hover,
.header-cart.is-active {
  border-color: var(--halti-orange);
  background: var(--halti-orange);
  color: #2f1600;
  box-shadow: 0 12px 28px rgba(245, 154, 46, 0.22);
  transform: translateY(-1px);
}

.header-cart__icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.header-cart__count {
  position: absolute;
  top: -4px;
  right: -4px;
  display: grid;
  min-width: 21px;
  height: 21px;
  padding: 0 6px;
  place-items: center;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--halti-green-deep);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.mobile-nav {
  display: none;
  position: relative;
  width: 48px;
}

.mobile-nav summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-height: 44px;
  padding: 0;
  border: 1px solid rgba(220, 229, 221, 0.9);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.mobile-nav[open] summary {
  border-color: var(--halti-orange);
  background: var(--halti-orange);
  box-shadow: 0 12px 28px rgba(245, 154, 46, 0.22);
}

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

.burger-icon {
  position: relative;
  display: inline-flex;
  width: 22px;
  height: 16px;
}

.burger-icon span {
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--halti-green-deep);
  transform-origin: center;
  transition: transform 180ms ease, opacity 140ms ease, top 180ms ease;
}

.mobile-nav[open] .burger-icon span {
  background: #2f1600;
}

.burger-icon span:nth-child(1) {
  top: 0;
}

.burger-icon span:nth-child(2) {
  top: 7px;
}

.burger-icon span:nth-child(3) {
  top: 14px;
}

.mobile-nav[open] .burger-icon span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.mobile-nav[open] .burger-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.mobile-nav[open] .burger-icon span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  display: grid;
  width: 300px;
  max-width: calc(100vw - 28px);
  padding: 8px;
  border: 1px solid rgba(220, 229, 221, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 58px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(18px);
}

.mobile-nav nav a {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
}

.mobile-nav:not([open]) nav {
  display: none;
}

.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  transform: translateY(-1px);
}

.button--primary,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--halti-green-deep);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(18, 53, 31, 0.16);
}

.button--primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--halti-lime);
  color: var(--halti-green-deep);
  border-color: var(--halti-lime);
}

.button--secondary {
  background: var(--surface);
  border-color: var(--line-strong);
  color: var(--halti-green-deep);
}

.button--secondary:hover {
  border-color: var(--halti-lime);
  background: rgba(168, 214, 63, 0.13);
  color: var(--halti-green-deep);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.26);
  color: #ffffff;
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--halti-green-deep);
}

.woocommerce button.button.disabled,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.wc-variation-selection-needed,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled] {
  border-color: var(--line-strong) !important;
  background: #e1e7e2 !important;
  color: #5f6f64 !important;
  cursor: not-allowed;
  opacity: 1 !important;
  transform: none !important;
  box-shadow: none !important;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(780px, calc(100vh - var(--header-height)));
  overflow: hidden;
  background: #10251a;
  color: #ffffff;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 28%, rgba(168, 214, 63, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(12, 26, 18, 0.9), rgba(12, 26, 18, 0.58) 47%, rgba(12, 26, 18, 0.18) 80%);
}

.route-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.route-map::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 18%;
  bottom: 68px;
  height: 2px;
  background: rgba(168, 214, 63, 0.56);
}

.route-map span {
  position: absolute;
  bottom: 58px;
  width: 22px;
  height: 22px;
  border: 4px solid rgba(168, 214, 63, 0.82);
  border-radius: 50%;
  background: rgba(18, 53, 31, 0.72);
}

.route-map span:nth-child(1) {
  left: 18%;
}

.route-map span:nth-child(2) {
  left: 45%;
}

.route-map span:nth-child(3) {
  right: 20%;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 380px);
  align-items: end;
  gap: 42px;
  padding: 126px 0 86px;
}

.hero__copy h1 {
  margin: 22px 0 8px;
  color: #ffffff;
  font-size: 86px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__claim {
  max-width: 660px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 850;
  line-height: 1.18;
}

.hero__text {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.hero__actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span {
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 650;
}

.departure-card,
.info-card,
.feature-card,
.audience-card,
.form-card,
.woocommerce ul.products li.product,
.woocommerce div.product .woocommerce-tabs,
.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout-review-order,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: 1px solid rgba(196, 208, 199, 0.72);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.departure-card--float {
  align-self: end;
  padding: 18px;
  color: var(--text);
  backdrop-filter: blur(16px);
}

.departure-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 780;
}

.departure-card__top > span:last-child {
  color: var(--halti-green-deep);
}

.live-dot {
  position: relative;
  display: inline-flex;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--halti-lime);
  box-shadow: 0 0 0 6px rgba(168, 214, 63, 0.16);
}

.departure-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.departure-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid rgba(220, 229, 221, 0.78);
  border-radius: 18px;
  background: rgba(246, 248, 250, 0.9);
}

.departure-list strong {
  color: var(--halti-green-deep);
  font-weight: 900;
  white-space: nowrap;
}

.line-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.line-badge--purple {
  background: var(--halti-purple);
}

.line-badge--orange {
  background: var(--halti-orange);
  color: #301600;
}

.line-badge--blue {
  background: var(--halti-blue);
}

.line-badge--red {
  background: var(--halti-red);
}

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

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.morning-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.morning-timeline::before {
  content: "";
  position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--halti-lime), var(--halti-orange), var(--halti-purple));
}

.timeline-moment {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.timeline-moment__time {
  width: fit-content;
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid rgba(168, 214, 63, 0.34);
  border-radius: 999px;
  background: #f5f9ee;
  color: var(--halti-green-deep);
  font-size: 13px;
  font-weight: 900;
}

.timeline-moment__marker {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 4px solid var(--background);
  border-radius: 50%;
  background: var(--halti-green-deep);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 0 0 4px rgba(168, 214, 63, 0.18);
}

.timeline-moment__card {
  justify-self: stretch;
  min-height: 172px;
  padding: 24px;
  border: 1px solid rgba(196, 208, 199, 0.72);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.timeline-moment__card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.25;
}

.timeline-moment__card p {
  margin: 0;
  color: var(--muted);
}

.info-card,
.feature-card,
.audience-card {
  padding: 26px;
}

.info-card:hover,
.feature-card:hover,
.audience-card:hover,
.woocommerce ul.products li.product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.info-card,
.feature-card,
.audience-card,
.woocommerce ul.products li.product {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--halti-green-deep);
  font-size: 13px;
  font-weight: 900;
}

.info-card h3,
.feature-card h3,
.audience-card h3,
.step h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.25;
}

.info-card p,
.feature-card p,
.audience-card p,
.step p {
  margin: 0;
  color: var(--muted);
}

.split-layout,
.prototype-layout,
.early-access-panel,
.app-download__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 44px;
  align-items: center;
}

.prototype-layout {
  grid-template-areas: "gallery copy";
}

.prototype-copy {
  grid-area: copy;
  min-width: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.solution-stage {
  display: grid;
  gap: 26px;
}

.solution-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px minmax(0, 1fr);
  align-items: stretch;
  gap: 20px;
}

.solution-device {
  position: relative;
  isolation: isolate;
  min-height: 360px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(196, 208, 199, 0.72);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.solution-device::before {
  content: "";
  position: absolute;
  inset: auto -70px -95px auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(168, 214, 63, 0.18);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  z-index: 0;
}

.solution-device > * {
  position: relative;
  z-index: 1;
}

.solution-device--app {
  background: linear-gradient(145deg, #ffffff, #f5f9ee);
}

.solution-device--app:hover,
.solution-device--app:focus-within,
.solution-device--app.is-selected,
.solution-device--app.is-pressing {
  transform: translateY(-4px);
  border-color: rgba(245, 154, 46, 0.58);
  background: linear-gradient(145deg, #ffffff, #fff7eb);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12), 0 0 0 4px rgba(245, 154, 46, 0.12);
}

.solution-device--app:hover::before,
.solution-device--app:focus-within::before,
.solution-device--app.is-selected::before,
.solution-device--app.is-pressing::before {
  background: rgba(245, 154, 46, 0.2);
  transform: scale(1.08);
}

.solution-device--display {
  background: #10100e;
  color: var(--halti-orange);
}

.solution-device__label {
  display: inline-flex;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(168, 214, 63, 0.2);
  color: var(--halti-green-deep);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.solution-device--display .solution-device__label {
  background: rgba(245, 154, 46, 0.14);
  color: #ffb35f;
}

.solution-device h3 {
  position: relative;
  margin: 18px 0 20px;
  color: inherit;
  font-size: 30px;
  line-height: 1.12;
}

.solution-app-card {
  position: relative;
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
  padding: 18px;
  border: 1px solid rgba(196, 208, 199, 0.78);
  border-radius: 22px;
  background: #ffffff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.solution-app-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

.solution-app-card strong {
  color: var(--halti-green-deep);
  font-size: 25px;
  line-height: 1.1;
}

.solution-app-card--city {
  margin-bottom: 12px;
}

.solution-device--app:hover .solution-app-card--city,
.solution-device--app:focus-within .solution-app-card--city,
.solution-app-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 154, 46, 0.46);
  background: #fffaf2;
  box-shadow: 0 12px 28px rgba(245, 154, 46, 0.12);
}

.solution-device--app:hover .solution-app-card--city strong,
.solution-device--app:focus-within .solution-app-card--city strong {
  color: var(--halti-orange);
}

.station-picker {
  position: relative;
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
  padding: 18px;
  border: 1px solid rgba(196, 208, 199, 0.78);
  border-radius: 22px;
  background: #ffffff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.station-picker:hover,
.station-picker:focus-within,
.station-picker.is-selected,
.station-picker.is-pressing {
  transform: translateY(-2px);
  border-color: rgba(245, 154, 46, 0.52);
  background: #fffaf2;
  box-shadow: 0 14px 34px rgba(245, 154, 46, 0.13);
}

.station-picker > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

.station-picker__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.station-picker button {
  position: relative;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--background);
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
  touch-action: manipulation;
}

.station-picker button:hover,
.station-picker button:focus-visible,
.station-picker button.is-pressing {
  transform: translateY(-1px);
  border-color: rgba(245, 154, 46, 0.62);
  background: #fff0db;
  color: #2f1600;
  box-shadow: 0 8px 18px rgba(245, 154, 46, 0.14);
}

.station-picker button:active {
  transform: translateY(0) scale(0.98);
}

.station-picker button.is-active {
  border-color: rgba(245, 154, 46, 0.72);
  background: var(--halti-orange);
  color: #2f1600;
  box-shadow: 0 10px 24px rgba(245, 154, 46, 0.24);
}

.solution-route-list {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-route-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 9px 11px;
  border: 1px solid rgba(220, 229, 221, 0.78);
  border-radius: 16px;
  background: rgba(246, 248, 250, 0.9);
  color: var(--text);
  font-weight: 760;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.solution-device--app:hover .solution-route-list li,
.solution-device--app:focus-within .solution-route-list li,
.solution-device--app.is-selected .solution-route-list li {
  border-color: rgba(245, 154, 46, 0.22);
  background: rgba(255, 250, 242, 0.92);
}

.solution-route-list li:hover {
  transform: translateX(3px);
  border-color: rgba(245, 154, 46, 0.46);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.solution-sync {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  place-items: center;
  color: var(--halti-green-deep);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-sync span {
  width: 3px;
  height: 100%;
  min-height: 88px;
  border-radius: 999px;
  background: linear-gradient(var(--halti-lime), var(--halti-orange));
}

.solution-sync strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(168, 214, 63, 0.42);
  border-radius: 50%;
  background: #f5f9ee;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.halti-display-screen {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(245, 154, 46, 0.34);
  border-radius: 22px;
  background: #050505;
  box-shadow: inset 0 0 0 1px rgba(245, 154, 46, 0.08), 0 24px 46px rgba(0, 0, 0, 0.24);
}

.halti-display-screen__head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(245, 154, 46, 0.68);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.solution-device--display .departure-list {
  position: relative;
  gap: 8px;
}

.solution-device--display .departure-list li {
  grid-template-columns: 58px minmax(0, 1fr) auto;
  min-height: 44px;
  padding: 8px 0;
  border: 0;
  border-top: 1px solid rgba(245, 154, 46, 0.16);
  border-radius: 0;
  background: transparent;
}

.solution-device--display .departure-list span:not(.line-badge),
.solution-device--display .departure-list strong {
  color: var(--halti-orange);
}

.solution-device--display .line-badge {
  justify-self: start;
  min-width: 38px;
  height: 26px;
  border: 1px solid rgba(245, 154, 46, 0.45);
  background: rgba(245, 154, 46, 0.1);
  color: var(--halti-orange);
}

.solution-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-points li {
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f8faf7;
}

.solution-points strong {
  color: var(--halti-green-deep);
}

.solution-points span {
  color: var(--muted);
  font-size: 14px;
}

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

.step {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.07);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: var(--halti-lime);
  color: var(--halti-green-deep);
  font-weight: 900;
}

.step h3 {
  color: #ffffff;
}

.step p {
  color: rgba(255, 255, 255, 0.72);
}

.app-download__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: 46px;
}

.app-download__left {
  display: grid;
  gap: 34px;
  min-width: 0;
}

.app-download__content {
  display: grid;
  gap: 0;
}

.app-download__layout .section__header {
  margin: 0;
}

.app-coming-soon {
  display: grid;
  gap: 18px;
}

.app-coming-soon__status {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.app-coming-soon__status p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.app-coming-soon__badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(245, 154, 46, 0.18);
  color: #7a3a00;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.app-coming-soon__platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.app-coming-soon__platform {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 76px;
  padding: 16px;
  border: 1px solid rgba(196, 208, 199, 0.82);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.app-coming-soon__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 14px;
}

.app-coming-soon__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.app-coming-soon__icon--ios {
  background: #eff2f5;
  color: #111827;
}

.app-coming-soon__icon--android {
  background: rgba(61, 220, 132, 0.18);
  color: #14824c;
}

.app-coming-soon__platform-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.app-coming-soon__platform-copy strong {
  color: var(--halti-green-deep);
  font-size: 17px;
  line-height: 1.2;
}

.app-coming-soon__platform-copy > span {
  color: var(--muted);
  font-size: 13px;
}

.app-preview {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  justify-items: center;
  margin: 0;
}

.app-preview__phone {
  position: relative;
  width: min(100%, 320px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 48px;
  background: linear-gradient(145deg, #202427, #070809);
  box-shadow: 0 30px 80px rgba(18, 53, 31, 0.25), 0 14px 34px rgba(15, 23, 42, 0.18);
}

.app-preview__phone::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 86px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(-50%);
}

.app-preview__screen {
  overflow: hidden;
  border-radius: 38px;
  background: #ffffff;
  aspect-ratio: 415 / 900;
}

.app-preview__screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.early-access-panel {
  align-items: stretch;
  padding: 42px;
  border-radius: 32px;
  background: var(--halti-green-deep);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.early-access-panel h2 {
  margin: 14px 0;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.1;
}

.early-access-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.form-card {
  padding: 22px;
  color: var(--text);
}

.early-access-form,
.contact-form {
  display: grid;
  gap: 14px;
}

.early-access-form--compact {
  gap: 12px;
}

.early-access-form label,
.contact-form label,
.woocommerce form .form-row label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 780;
}

.early-access-form input[type="text"],
.early-access-form input[type="email"],
.early-access-form textarea,
.contact-form input,
.contact-form textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce form .form-row .select2-selection,
.input-text,
select {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-button);
  background: var(--surface);
  color: var(--text);
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.early-access-form input:focus,
.early-access-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.input-text:focus,
select:focus {
  border-color: var(--halti-lime);
  box-shadow: 0 0 0 4px rgba(168, 214, 63, 0.18);
  outline: none;
}

.early-access-form textarea,
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.halti-select-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.halti-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.halti-color-swatch {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 9px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.halti-color-swatch:hover {
  border-color: var(--halti-lime);
  background: rgba(168, 214, 63, 0.1);
  transform: translateY(-1px);
}

.halti-color-swatch.is-active,
.halti-color-swatch[aria-pressed="true"] {
  border-color: var(--halti-green-deep);
  box-shadow: 0 0 0 4px rgba(168, 214, 63, 0.2);
}

.halti-color-swatch__dot {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.2);
}

.halti-color-swatches--static {
  margin-top: 0;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

#muster-widerrufsformular {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.early-access-panel .form-note {
  color: var(--muted);
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.timeline span {
  position: relative;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(168, 214, 63, 0.17);
  color: var(--halti-green-deep);
  font-size: 14px;
  font-weight: 850;
}

.development-gallery {
  display: grid;
  grid-area: gallery;
  gap: 12px;
  min-width: 0;
}

.development-gallery__viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid #29342d;
  border-radius: 8px;
  background: #111812;
  box-shadow: var(--shadow-soft);
  touch-action: pan-y;
}

.development-gallery__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease;
}

.development-gallery__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.development-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.development-gallery__slide--portrait img {
  object-fit: cover;
}

.development-gallery__meta {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.development-gallery__caption {
  min-width: 0;
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.4;
}

.development-gallery__controls {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: 40px 58px 40px;
  align-items: center;
  gap: 6px;
}

.development-gallery__arrow {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #ffffff;
  color: var(--halti-green-deep);
  cursor: pointer;
  font: inherit;
  font-size: 21px;
  line-height: 1;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.development-gallery__arrow:hover,
.development-gallery__arrow:focus-visible {
  border-color: var(--halti-green-deep);
  background: var(--halti-green-deep);
  color: #ffffff;
}

.development-gallery__arrow:focus-visible,
.development-gallery__thumbnail:focus-visible {
  outline: 3px solid rgba(47, 107, 234, 0.32);
  outline-offset: 2px;
}

.development-gallery__counter {
  color: var(--muted);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 850;
  text-align: center;
}

.development-gallery__thumbnails {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  overflow-x: auto;
  padding: 3px;
  scrollbar-width: thin;
}

.development-gallery__thumbnail {
  overflow: hidden;
  min-width: 0;
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #111812;
  cursor: pointer;
  opacity: 0.62;
  transition: border-color 160ms ease, opacity 160ms ease;
}

.development-gallery__thumbnail:hover,
.development-gallery__thumbnail.is-active {
  border-color: var(--halti-orange);
  opacity: 1;
}

.development-gallery__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-preview .woocommerce {
  width: 100%;
}

.halti-shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
  gap: 44px;
  align-items: center;
}

.halti-shop-hero__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.halti-shop-hero__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.halti-shop-hero__content {
  display: grid;
  align-content: center;
}

.halti-shop-hero__content h1 {
  margin: 12px 0 14px;
  color: var(--text);
  font-size: 54px;
  line-height: 1.02;
}

.halti-shop-hero__lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 19px;
}

.halti-shop-price {
  color: var(--halti-green-deep);
  font-size: 30px;
  font-weight: 950;
}

.halti-shop-status {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 28px;
}

.halti-shop-status span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(168, 214, 63, 0.16);
  color: var(--halti-green-deep);
  font-size: 13px;
  font-weight: 850;
}

.halti-shop-colors {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.halti-shop-colors h2 {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 20px;
}

.halti-shop-colors p {
  margin: 0 0 14px;
  color: var(--muted);
}

.halti-shop-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.halti-shop-details .info-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.halti-shop-details .info-card p {
  margin: 0;
  color: var(--muted);
}

.post-type-archive-product .woocommerce-products-header,
.post-type-archive-product .woocommerce-result-count,
.post-type-archive-product .woocommerce-ordering {
  display: none;
}

.woocommerce ul.products li.product .woocommerce-price-suffix,
.woocommerce ul.products li.product .wc-gzd-additional-info,
.shop-preview .woocommerce-price-suffix,
.shop-preview .wc-gzd-additional-info {
  display: none;
}

.site-footer {
  background: #0d2516;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(150px, 0.6fr) minmax(170px, 0.65fr) minmax(210px, 0.75fr);
  gap: 36px;
  padding: 48px 0 28px;
  align-items: start;
}

.footer-brand img {
  width: 142px;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.footer-route {
  position: relative;
  width: min(100%, 280px);
  height: 26px;
  margin-top: 20px;
}

.footer-route::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 12px;
  height: 2px;
  background: rgba(168, 214, 63, 0.5);
}

.footer-route span {
  position: absolute;
  top: 5px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--halti-lime);
  border-radius: 50%;
  background: #0d2516;
}

.footer-route span:nth-child(1) {
  left: 0;
}

.footer-route span:nth-child(2) {
  left: 48%;
}

.footer-route span:nth-child(3) {
  right: 0;
}

.footer-group h2,
.footer-connect h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  font-weight: 400;
}

.footer-links a,
.footer-links a:link,
.footer-links a:active,
.footer-links a:focus,
.footer-links button {
  appearance: none;
  width: fit-content;
  border: 0;
  padding: 0;
  background: transparent;
  color: #ffffff !important;
  font: inherit;
  font-weight: 400;
  pointer-events: auto;
  cursor: pointer;
  text-align: left;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links a:visited {
  color: #ffffff !important;
}

footer.site-footer .footer-links a,
footer.site-footer .footer-links a:link,
footer.site-footer .footer-links a:visited,
footer.site-footer .footer-links a:active,
footer.site-footer .footer-links a:focus {
  color: #ffffff !important;
}

.footer-links button {
  cursor: pointer;
}

.footer-links a:hover,
.footer-links a:visited:hover,
.footer-links button:hover {
  color: var(--halti-lime);
  transform: translateX(2px);
}

.footer-connect {
  display: grid;
  align-content: start;
  gap: 14px;
}

.social-links {
  display: grid;
  gap: 10px;
}

.halti-cookie-consent[hidden] {
  display: none;
}

.halti-cookie-consent {
  position: fixed;
  z-index: 9999;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.halti-cookie-consent.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.halti-cookie-consent__panel {
  display: grid;
  width: min(100%, 1040px);
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(24, 58, 36, 0.14);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 64px rgba(15, 23, 42, 0.18);
  color: var(--text);
  pointer-events: auto;
}

.halti-cookie-consent__copy {
  min-width: 0;
}

.halti-cookie-consent__copy h2 {
  margin: 4px 0 8px;
  color: var(--halti-green-deep);
  font-size: 22px;
  line-height: 1.15;
}

.halti-cookie-consent__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.halti-cookie-consent__copy a {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  color: var(--halti-purple);
  font-size: 14px;
  font-weight: 850;
}

.halti-cookie-consent__choices {
  display: grid;
  gap: 10px;
}

.halti-cookie-choice {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(24, 58, 36, 0.12);
  border-radius: 8px;
  padding: 11px;
  background: #f8faf8;
  cursor: pointer;
}

.halti-cookie-choice--required {
  cursor: default;
}

.halti-cookie-choice input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--halti-purple);
}

.halti-cookie-choice strong,
.halti-cookie-choice small {
  display: block;
}

.halti-cookie-choice strong {
  color: var(--halti-green-deep);
  font-size: 14px;
  line-height: 1.25;
}

.halti-cookie-choice small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.halti-cookie-consent__actions {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.halti-cookie-consent__actions .button {
  min-height: 46px;
  justify-content: center;
  text-align: center;
}

.halti-cookie-consent__actions .button--secondary {
  border-color: rgba(24, 58, 36, 0.22);
  background: #ffffff;
  color: var(--halti-green-deep);
  box-shadow: none;
}

.halti-cookie-consent__actions .button--secondary:hover {
  border-color: rgba(24, 58, 36, 0.34);
  background: #edf5e2;
  color: var(--halti-green-deep);
}

.halti-cookie-consent__actions .button--ghost {
  border-color: rgba(116, 56, 242, 0.32);
  background: #f4f0ff;
  color: var(--halti-purple);
  box-shadow: none;
}

.halti-cookie-consent__actions .button--ghost:hover {
  border-color: rgba(116, 56, 242, 0.5);
  background: var(--halti-purple);
  color: #ffffff;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-weight: 820;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.social-link:hover {
  border-color: rgba(245, 154, 46, 0.72);
  background: var(--halti-orange);
  color: #2f1600;
  transform: translateY(-1px);
}

.social-link--disabled {
  cursor: default;
  opacity: 0.58;
}

.social-link--disabled:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transform: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.notice,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  position: relative;
  padding: 16px 18px 16px 58px;
  margin: 0 0 22px;
  line-height: 1.45;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  left: 21px;
}

.woocommerce-message::before,
.woocommerce-info::before {
  top: 50%;
  transform: translateY(-50%);
}

.woocommerce-error::before {
  top: 20px;
}

.woocommerce-message .button {
  margin-left: 12px;
}

.notice--success,
.woocommerce-message {
  border-color: rgba(31, 122, 77, 0.28);
  background: #eff9ee;
}

.notice--error,
.woocommerce-error {
  border-color: rgba(233, 43, 43, 0.24);
  background: #fff2f2;
}

.notice--early-access {
  display: grid;
  gap: 4px;
  margin: 18px 0;
  background: #f5f9ee;
}

.notice__link {
  width: fit-content;
  margin-top: 8px;
  color: var(--halti-green-deep);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.woocommerce-page main.site-main,
.page-template-default main.site-main,
.single-product main.site-main {
  width: min(100% - 40px, var(--content));
  margin: 0 auto;
  padding: 70px 0 88px;
}

.page-content {
  max-width: 860px;
}

.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

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

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

.woocommerce ul.products li.product {
  position: relative;
  width: auto !important;
  margin: 0 !important;
  padding: 18px !important;
  overflow: hidden;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1;
  margin: 0 0 16px !important;
  border: 1px solid var(--line);
  border-radius: 20px;
  object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0;
  margin: 0 0 8px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.22;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
  color: var(--halti-green-deep);
  font-size: 22px;
  font-weight: 900;
}

.woocommerce-price-suffix,
.wc-gzd-additional-info {
  display: none !important;
}

.single-product .summary .woocommerce-price-suffix,
.single-product .summary .legal-price-info,
.single-product .summary > .wc-gzd-additional-info {
  display: none !important;
}

.halti-product-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;
  background: var(--halti-blue);
  border-color: rgba(47, 107, 234, 0.88);
  color: #ffffff;
}

.woocommerce ul.products li.product .button {
  width: 100%;
  margin-top: 14px;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  color: var(--muted);
  font-size: 14px;
}

.woocommerce .woocommerce-ordering select {
  min-height: 42px;
  padding: 9px 12px;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  gap: 48px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  width: auto !important;
  float: none !important;
}

.woocommerce div.product div.images img {
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.woocommerce div.product div.summary {
  padding: 8px 0;
}

.woocommerce div.product form.cart {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.woocommerce div.product form.cart .variations {
  margin-bottom: 0;
}

.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
  display: block;
  padding: 0 0 8px;
  text-align: left;
}

.woocommerce div.product form.cart .variations label {
  color: var(--text);
  font-weight: 850;
}

.woocommerce div.product form.cart .variations select {
  min-width: min(100%, 270px);
}

.woocommerce div.product form.cart div.quantity {
  margin-right: 0;
}

.single-product .summary .halti-product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 2px;
}

.single-product .summary .halti-product-actions .quantity {
  display: none !important;
}

.single-product .summary .halti-product-actions .halti-buy-now {
  order: 1;
  width: 100%;
  border-color: rgba(116, 56, 242, 0.34) !important;
  background: var(--halti-purple) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(116, 56, 242, 0.22) !important;
}

.single-product .summary .halti-product-actions .halti-buy-now:hover {
  border-color: rgba(116, 56, 242, 0.58) !important;
  background: #5f2fdb !important;
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(116, 56, 242, 0.28) !important;
}

.single-product .summary .halti-product-actions .halti-buy-now.is-ready:not(:disabled) {
  border-color: rgba(116, 56, 242, 0.42) !important;
  background: var(--halti-purple) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(116, 56, 242, 0.22) !important;
}

.single-product .summary .halti-product-actions .halti-buy-now.is-ready:not(:disabled):hover {
  border-color: rgba(116, 56, 242, 0.58) !important;
  background: #5f2fdb !important;
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(116, 56, 242, 0.28) !important;
}

.single-product .summary .halti-product-actions .single_add_to_cart_button {
  order: 2;
  width: 100%;
  border-color: rgba(24, 58, 36, 0.22) !important;
  background: #ffffff !important;
  color: var(--halti-green-deep) !important;
  box-shadow: none !important;
}

.single-product .summary .halti-product-actions .single_add_to_cart_button:hover {
  border-color: rgba(245, 154, 46, 0.58) !important;
  background: #fff7eb !important;
  color: #2f1600 !important;
  box-shadow: 0 12px 28px rgba(245, 154, 46, 0.16) !important;
}

.single-product .summary .wc-stripe-payment-request-wrapper,
.single-product .summary #wc-stripe-payment-request-wrapper,
.single-product .summary #wc-stripe-payment-request-button-separator,
.single-product .summary .wc-stripe-payment-request-button-separator,
.single-product .summary .wc-stripe-product-checkout-container,
.single-product .summary .wcpay-payment-request-wrapper,
.single-product .summary .wcpay-express-checkout-wrapper,
.single-product .summary .wcpay-payment-request-button-separator,
.single-product .summary .ppc-button-wrapper,
.single-product .summary .ppcp-messages,
.single-product .summary .paypal-buttons,
.single-product .summary #ppc-button-ppcp-gateway,
.post-type-archive-product .wc-stripe-payment-request-wrapper,
.post-type-archive-product #wc-stripe-payment-request-wrapper,
.post-type-archive-product .wcpay-express-checkout-wrapper,
.post-type-archive-product .ppc-button-wrapper,
.woocommerce-cart .wc-stripe-payment-request-wrapper,
.woocommerce-cart #wc-stripe-payment-request-wrapper,
.woocommerce-cart #wc-stripe-payment-request-button-separator,
.woocommerce-cart .wc-stripe-payment-request-button-separator,
.woocommerce-cart .wc-stripe-cart-checkout-container,
.woocommerce-cart .wc-stripe-cart-or,
.woocommerce-cart .wcpay-payment-request-wrapper,
.woocommerce-cart .wcpay-express-checkout-wrapper,
.woocommerce-cart .wcpay-payment-request-button-separator,
.woocommerce-cart .ppc-button-wrapper,
.woocommerce-cart .ppcp-messages,
.woocommerce-cart .paypal-buttons,
.woocommerce-cart #ppc-button-ppcp-gateway,
.woocommerce-cart .wc-block-components-express-payment,
.woocommerce-cart .wc-block-components-express-payment__content,
.woocommerce-cart .wc-block-components-express-payment__event-buttons,
.woocommerce-cart .wc-block-cart__payment-options {
  display: none !important;
}

.woocommerce-cart .halti-cart-shipping-hidden,
.woocommerce-cart .wp-block-woocommerce-cart-order-summary-shipping-block,
.woocommerce-cart .wc-block-components-totals-shipping,
.woocommerce-cart .wc-block-components-shipping-rates-control,
.woocommerce-cart .wc-block-components-shipping-calculator,
.woocommerce-cart .woocommerce-shipping-totals,
.woocommerce-cart tr.shipping,
.woocommerce-cart .cart_totals .shipping,
.woocommerce-cart .shipping-calculator-button,
.woocommerce-cart .wc-block-components-totals-wrapper:has(.wc-block-components-totals-shipping),
.woocommerce-cart .wc-block-components-totals-wrapper:has(.wp-block-woocommerce-cart-order-summary-shipping-block) {
  display: none !important;
}

.woocommerce-checkout .halti-payment-option--express {
  display: revert !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.woocommerce-checkout .wp-block-woocommerce-checkout-express-payment-block,
.woocommerce-checkout .wc-block-components-express-payment,
.woocommerce-checkout .wc-block-components-express-payment__content,
.woocommerce-checkout .wc-block-components-express-payment__button-container,
.woocommerce-checkout .wcpay-express-checkout-wrapper,
.woocommerce-checkout .wcpay-payment-request-wrapper,
.woocommerce-checkout .wc-stripe-payment-request-wrapper,
.woocommerce-checkout #wc-stripe-payment-request-wrapper,
.woocommerce-checkout .wc-stripe-checkout-container,
.woocommerce-checkout .ppc-button-wrapper,
.woocommerce-checkout .paypal-buttons {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.woocommerce-checkout .wc-block-components-express-payment__event-buttons {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  visibility: visible !important;
  opacity: 1 !important;
}

.woocommerce-checkout .halti-woo-express-checkout {
  display: grid !important;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.woocommerce-checkout .halti-woo-express-checkout .wc-block-components-express-payment__event-buttons {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.woocommerce-checkout .halti-woo-express-checkout .wc-block-components-express-payment__content,
.woocommerce-checkout .halti-woo-express-checkout .wc-block-components-express-payment__button-container,
.woocommerce-checkout .halti-woo-express-checkout .wcpay-express-checkout-wrapper,
.woocommerce-checkout .halti-woo-express-checkout .wcpay-payment-request-wrapper,
.woocommerce-checkout .halti-woo-express-checkout .ppc-button-wrapper,
.woocommerce-checkout .halti-woo-express-checkout .paypal-buttons {
  display: block !important;
}

.woocommerce-checkout .halti-woo-express-checkout button,
.woocommerce-checkout .halti-woo-express-checkout iframe,
.woocommerce-checkout .halti-woo-express-checkout .wc-block-components-express-payment__button {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 52px !important;
  border-radius: 8px !important;
}

.woocommerce-checkout .halti-checkout-express-continue {
  display: none !important;
}

.woocommerce-checkout .halti-checkout-anchor-artifact {
  display: none !important;
}

.woocommerce-checkout .wc-block-components-express-payment-continue-rule,
.woocommerce-checkout .wc-block-components-express-payment__separator,
.woocommerce-checkout .wc-block-components-express-payment__separator-text {
  display: none !important;
}

.woocommerce-checkout .halti-checkout-legal-link,
.woocommerce-checkout a[href*="/agb"],
.woocommerce-checkout a[href*="/widerruf"] {
  color: var(--halti-green-deep) !important;
  font-weight: 900;
  pointer-events: auto !important;
  cursor: pointer;
  text-decoration: none;
}

.woocommerce-checkout .halti-checkout-legal-link:hover,
.woocommerce-checkout a[href*="/agb"]:hover,
.woocommerce-checkout a[href*="/widerruf"]:hover {
  color: var(--halti-orange) !important;
}

.woocommerce-checkout .wc-block-components-checkout-place-order-button:not(:disabled),
.woocommerce-checkout button.wc-block-components-checkout-place-order-button:not(:disabled),
.woocommerce-checkout #place_order:not(:disabled) {
  border-color: rgba(116, 56, 242, 0.42) !important;
  background: var(--halti-purple) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(116, 56, 242, 0.22) !important;
}

.woocommerce-checkout .wc-block-components-checkout-place-order-button:not(:disabled):hover,
.woocommerce-checkout button.wc-block-components-checkout-place-order-button:not(:disabled):hover,
.woocommerce-checkout #place_order:not(:disabled):hover {
  border-color: rgba(116, 56, 242, 0.58) !important;
  background: #5f2fdb !important;
  color: #ffffff !important;
}

.woocommerce-cart .wc-block-cart__submit-container .wc-block-components-button,
.woocommerce-cart .wc-block-cart__submit-button,
.woocommerce-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  border-color: var(--halti-lime) !important;
  background: var(--halti-lime) !important;
  color: var(--halti-green-deep) !important;
  box-shadow: 0 12px 26px rgba(168, 214, 63, 0.28) !important;
}

.woocommerce-cart .wc-block-cart__submit-container .wc-block-components-button:hover,
.woocommerce-cart .wc-block-cart__submit-button:hover,
.woocommerce-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  border-color: #b9e555 !important;
  background: #b9e555 !important;
  color: var(--halti-green-deep) !important;
  box-shadow: 0 14px 30px rgba(168, 214, 63, 0.34) !important;
}

.woocommerce-cart .wc-block-components-totals-wrapper:has(.wc-block-components-express-payment) {
  display: none !important;
}

.halti-klarna-hidden,
.single-product klarna-placement,
.post-type-archive-product klarna-placement,
.woocommerce-shop klarna-placement,
.woocommerce-cart klarna-placement,
.wp-block-woocommerce-cart klarna-placement,
.wc-block-cart klarna-placement,
.single-product .klarna-placement,
.post-type-archive-product .klarna-placement,
.woocommerce-shop .klarna-placement,
.woocommerce-cart .klarna-placement,
.wp-block-woocommerce-cart .klarna-placement,
.wc-block-cart .klarna-placement,
.single-product [class*="klarna" i],
.post-type-archive-product [class*="klarna" i],
.woocommerce-shop [class*="klarna" i],
.woocommerce-cart [class*="klarna" i],
.wp-block-woocommerce-cart [class*="klarna" i],
.wc-block-cart [class*="klarna" i],
.single-product [id*="klarna" i],
.post-type-archive-product [id*="klarna" i],
.woocommerce-shop [id*="klarna" i],
.woocommerce-cart [id*="klarna" i],
.wp-block-woocommerce-cart [id*="klarna" i],
.wc-block-cart [id*="klarna" i],
.single-product [data-testid*="klarna" i],
.post-type-archive-product [data-testid*="klarna" i],
.woocommerce-shop [data-testid*="klarna" i],
.woocommerce-cart [data-testid*="klarna" i],
.wp-block-woocommerce-cart [data-testid*="klarna" i],
.wc-block-cart [data-testid*="klarna" i],
.single-product [data-key*="klarna" i],
.post-type-archive-product [data-key*="klarna" i],
.woocommerce-shop [data-key*="klarna" i],
.woocommerce-cart [data-key*="klarna" i],
.wp-block-woocommerce-cart [data-key*="klarna" i],
.wc-block-cart [data-key*="klarna" i],
.single-product iframe[src*="klarna" i],
.post-type-archive-product iframe[src*="klarna" i],
.woocommerce-shop iframe[src*="klarna" i],
.woocommerce-cart iframe[src*="klarna" i],
.wp-block-woocommerce-cart iframe[src*="klarna" i],
.wc-block-cart iframe[src*="klarna" i] {
  display: none !important;
}

.woocommerce .quantity .qty {
  width: 64px;
  min-height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
}

.product_meta {
  display: none;
}

.single-product .summary .halti-product-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 10px 0 18px;
}

.halti-rating-stars {
  float: none !important;
  width: 5.8em !important;
  height: 1em;
  margin: 0 !important;
  color: var(--halti-orange);
  font-size: 18px;
  letter-spacing: 0;
}

.halti-rating-stars::before {
  color: #d6dee3;
}

.halti-rating-stars span {
  color: var(--halti-orange);
}

.halti-product-rating a {
  color: var(--halti-green-deep);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.halti-product-rating a:hover {
  text-decoration: underline;
}

.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1;
  padding: 24px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px !important;
  padding: 8px !important;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--background);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
  content: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px !important;
  border-radius: 12px;
  color: var(--text) !important;
  font-weight: 850;
  line-height: 1.1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  background: var(--halti-orange);
  color: #2f1600 !important;
  box-shadow: 0 9px 22px rgba(245, 154, 46, 0.2);
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0 !important;
  padding: 4px 2px 0 !important;
}

.woocommerce div.product .woocommerce-tabs .panel > h2 {
  display: none;
}

.halti-product-reviews {
  display: grid;
  gap: 24px;
}

.halti-product-reviews__heading h2,
.halti-review-form h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 24px;
}

.halti-product-reviews__heading p,
.halti-product-reviews__access {
  margin: 0;
  color: var(--muted);
}

.halti-product-reviews__list {
  display: grid;
  gap: 14px;
}

.halti-product-review {
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1fr);
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.halti-product-review__meta {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 7px;
}

.halti-product-review__meta strong {
  color: var(--text);
  font-size: 16px;
}

.halti-product-review__meta time {
  color: var(--muted);
  font-size: 13px;
}

.halti-product-review__content {
  color: var(--muted);
  line-height: 1.65;
}

.halti-product-review__content p {
  margin: 0;
}

.halti-review-form {
  display: grid;
  gap: 16px;
  max-width: 680px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--background);
}

.halti-review-form > label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.halti-review-form input[type="text"],
.halti-review-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
}

.halti-review-form input[type="text"] {
  min-height: 46px;
  padding: 10px 12px;
}

.halti-review-form textarea {
  min-height: 130px;
  padding: 12px;
  resize: vertical;
}

.halti-review-form__rating {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.halti-review-form__rating legend {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.halti-review-form__stars {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 2px;
  width: fit-content;
}

.halti-review-form__stars input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  opacity: 0;
}

.halti-review-form__stars label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #d6dee3;
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
  transition: color 160ms ease, transform 160ms ease;
}

.halti-review-form__stars input:checked ~ label,
.halti-review-form__stars label:hover,
.halti-review-form__stars label:hover ~ label {
  color: var(--halti-orange);
}

.halti-review-form__stars label:hover {
  transform: translateY(-1px);
}

.halti-review-form__stars input:focus-visible + label {
  outline: 3px solid rgba(168, 214, 63, 0.72);
  outline-offset: 2px;
  border-radius: 4px;
}

.woocommerce #reviews #comments ol.commentlist {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
}

.woocommerce #reviews #comments ol.commentlist li {
  margin: 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  min-height: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p {
  margin-bottom: 0;
}

.woocommerce #reviews #comments .star-rating {
  color: var(--halti-orange);
}

.woocommerce #reviews #review_form_wrapper {
  padding-top: 8px;
}

.woocommerce #reviews #reply-title {
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
}

.halti-product-tab h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 30px;
  line-height: 1.14;
}

.halti-product-tab > p {
  max-width: 780px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
}

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

.halti-tab-grid article,
.halti-detail-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.halti-tab-grid h3 {
  margin: 0 0 8px;
  color: var(--halti-green-deep);
  font-size: 18px;
}

.halti-tab-grid p {
  margin: 0;
  color: var(--muted);
}

.halti-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.halti-detail-list div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.halti-detail-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.halti-detail-list div:first-child dt {
  text-transform: none;
}

.halti-detail-list dd {
  margin: 0;
  color: var(--text);
  font-weight: 760;
  line-height: 1.55;
}

.halti-shipping-materials-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.halti-detail-list__items {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 18px;
}

.woocommerce table.shop_table,
.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout-review-order {
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
}

.woocommerce table.shop_table {
  border-radius: 20px;
}

.woocommerce table.shop_table th {
  color: var(--text);
}

.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout-review-order {
  padding: 20px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  width: 100%;
  float: none;
}

.woocommerce form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
  gap: 28px;
}

.woocommerce form.checkout #customer_details,
.woocommerce form.checkout #order_review,
.woocommerce form.checkout #order_review_heading {
  width: auto;
}

.woocommerce form.checkout #order_review_heading {
  margin-top: 0;
}

.wp-block-woocommerce-empty-cart-block {
  max-width: 980px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title,
.wp-block-woocommerce-empty-cart-block .wp-block-heading {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: var(--text);
  text-align: left !important;
}

.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title {
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}

.wp-block-woocommerce-empty-cart-block .wc-block-cart__empty-cart__title::after {
  content: "Wähle dein HALTI Display aus oder stöbere später durch weitere Produkte, sobald der Shop wächst.";
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

.wp-block-woocommerce-empty-cart-block .wp-block-heading:not(.wc-block-cart__empty-cart__title) {
  margin-top: 28px;
  font-size: 22px;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 16px;
  padding: 0;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product {
  max-width: none;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--background);
  text-align: left;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title {
  color: var(--text);
  font-weight: 850;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link {
  border-radius: 999px;
  background: var(--halti-green-deep);
  color: #ffffff;
}

@media (prefers-reduced-motion: no-preference) {
  .live-dot::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(168, 214, 63, 0.58);
    border-radius: 50%;
    animation: halti-pulse 1.8s ease-out infinite;
  }

  .reveal {
    animation: halti-fade-in 520ms ease-out both;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@keyframes halti-pulse {
  0% {
    transform: scale(0.72);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

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

@media (max-width: 1060px) {
  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
  }

  .nav--desktop {
    display: none;
  }

  .mobile-nav {
    display: block;
    justify-self: end;
  }

  .hero__grid,
  .split-layout,
  .prototype-layout,
  .early-access-panel,
  .app-download__layout,
  .solution-flow,
  .halti-shop-hero,
  .woocommerce div.product,
  .woocommerce form.checkout {
    grid-template-columns: 1fr;
  }

  .prototype-layout {
    grid-template-areas:
      "copy"
      "gallery";
  }

  .solution-sync {
    grid-template-rows: none;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .solution-sync span {
    width: 100%;
    height: 3px;
    min-height: 0;
  }

  .departure-card--float {
    max-width: 520px;
  }

  .app-download__content,
  .app-preview,
  .app-coming-soon {
    grid-column: 1;
    grid-row: auto;
  }

  .app-download__left {
    display: contents;
  }

  .app-download__content {
    order: 1;
  }

  .app-preview {
    order: 2;
  }

  .app-coming-soon {
    order: 3;
  }

  .card-grid--four,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 82px;
  }

  .site-header {
    padding: 8px 0;
  }

  .site-header__inner {
    min-height: 58px;
    padding: 6px 7px 6px 10px;
  }

  .brand {
    min-width: 104px;
    min-height: 40px;
    padding-right: 6px;
  }

  .brand img {
    width: 108px;
    max-height: 36px;
  }

  .mobile-nav summary {
    width: 46px;
    min-height: 42px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-cart {
    width: 46px;
    min-height: 42px;
  }

  .mobile-nav {
    width: 46px;
  }

  .mobile-nav nav {
    position: fixed;
    top: calc(var(--header-height) - 1px);
    right: 14px;
    left: 14px;
    width: auto;
    max-width: none;
  }

  .section {
    padding: 64px 0;
  }

  .section__inner,
  .site-header__inner,
  .woocommerce-page main.site-main,
  .page-template-default main.site-main,
  .single-product main.site-main {
    width: min(100% - 28px, var(--content));
  }

  .section__header h2,
  .page-title,
  .woocommerce-products-header__title,
  .woocommerce div.product .product_title,
  .early-access-panel h2 {
    font-size: 34px;
  }

  .section__header--row {
    align-items: start;
    flex-direction: column;
  }

  .hero {
    min-height: 760px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(12, 26, 18, 0.92), rgba(12, 26, 18, 0.56) 58%, rgba(12, 26, 18, 0.18));
  }

  .hero__bg img {
    object-position: 62% center;
  }

  .hero__grid {
    gap: 24px;
    padding: 104px 0 72px;
  }

  .hero__copy h1 {
    font-size: 56px;
  }

  .development-gallery__thumbnails {
    grid-auto-columns: 64px;
    grid-auto-flow: column;
    grid-template-columns: none;
    scroll-snap-type: x proximity;
  }

  .development-gallery__thumbnail {
    scroll-snap-align: start;
  }

  .hero__claim {
    font-size: 27px;
  }

  .hero__text,
  .section__header p {
    font-size: 17px;
  }

  .app-preview__phone {
    width: min(82vw, 300px);
    padding: 10px;
    border-radius: 42px;
  }

  .app-preview__screen {
    border-radius: 32px;
  }

  .hero__actions .button,
  .inline-actions .button {
    width: 100%;
  }

  .route-map::before,
  .route-map span {
    display: none;
  }

  .departure-list li {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .card-grid--three,
  .card-grid--four,
  .app-coming-soon__platforms,
  .feature-list,
  .halti-tab-grid,
  .halti-detail-list,
  .halti-product-review,
  .solution-points,
  .steps,
  .woocommerce ul.products,
  .halti-shop-details,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .morning-timeline {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
  }

  .morning-timeline::before {
    top: 12px;
    bottom: 12px;
    left: 21px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .timeline-moment {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 8px 12px;
  }

  .timeline-moment__time {
    grid-column: 2;
    justify-self: start;
  }

  .timeline-moment__marker {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    justify-self: start;
  }

  .timeline-moment__card {
    grid-column: 2;
    min-height: auto;
    padding: 20px;
  }

  .solution-stage {
    gap: 22px;
  }

  .solution-device {
    min-height: auto;
    padding: 22px;
    border-radius: 26px;
  }

  .solution-device h3 {
    font-size: 26px;
  }

  .early-access-panel {
    padding: 26px;
    border-radius: 26px;
  }

  .app-coming-soon__status {
    align-items: flex-start;
    flex-direction: column;
  }

  .single-product .summary .halti-product-actions {
    grid-template-columns: 1fr;
  }

  .halti-cookie-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .halti-cookie-consent__panel {
    max-height: calc(100vh - 20px);
    overflow: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }

  .halti-cookie-consent__actions {
    grid-template-columns: 1fr;
  }

  .halti-cookie-consent__actions .button {
    width: 100%;
  }

  .woocommerce-checkout .halti-woo-express-checkout .wc-block-components-express-payment__event-buttons {
    grid-template-columns: 1fr;
  }

	  .site-footer__inner {
	    gap: 24px;
	  }

	  .footer-links {
	    grid-template-columns: 1fr;
	  }

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

@media (max-width: 430px) {
  .site-header__inner {
    width: min(100% - 18px, var(--content));
  }

  .brand {
    min-width: 98px;
  }

  .brand img {
    width: 102px;
  }

  .mobile-nav nav {
    right: 9px;
    left: 9px;
  }

  .departure-card--float {
    padding: 14px;
  }

  .departure-list li {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .departure-list strong {
    grid-column: 2;
  }

  .development-gallery__meta {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .development-gallery__controls {
    align-self: flex-end;
  }
}
