:root {
  --element-primary: #009fe3;
  --element-blue: #0b4f8a;
  --element-blue-dark: #073b6f;
  --element-deep: #111827;
  --element-ink: #102f38;
  --element-muted: #667781;
  --element-line: #dce6ea;
  --element-light: #f3f4f6;
  --element-white: #ffffff;
  --element-shadow: 0 18px 44px rgba(8, 43, 53, 0.09);
}

html {
  scroll-behavior: smooth;
}

body.element-layout-page {
  background: #f9fafb;
  color: var(--element-ink);
  font-family: Inter, Arial, "Helvetica Neue", Helvetica, sans-serif;
}

body.element-layout-page a:focus-visible,
body.element-layout-page button:focus-visible,
body.element-layout-page input:focus-visible,
body.element-layout-page select:focus-visible,
body.element-layout-page textarea:focus-visible,
body.element-layout-page summary:focus-visible {
  outline: 3px solid rgba(0, 159, 227, 0.34);
  outline-offset: 3px;
}

.element-shell {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.element-site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  color: var(--element-ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 79, 138, 0.28);
  box-shadow: 0 2px 12px rgba(17, 24, 39, 0.05);
  backdrop-filter: blur(18px);
}

.element-header-inner {
  display: grid;
  grid-template-columns: minmax(250px, auto) minmax(360px, 1fr) auto;
  align-items: center;
  gap: 34px;
  min-height: 124px;
}

.element-brand {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: end;
  column-gap: 12px;
  color: var(--element-ink);
  text-decoration: none;
}

.element-brand-mark {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--element-blue);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.element-brand-globe {
  grid-column: 2;
  grid-row: 1;
  display: block;
  width: 102px;
  height: auto;
  margin: 0 0 -2px -10px;
}

.element-brand-copy {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.05;
}

.element-brand-copy strong {
  color: var(--element-ink);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.075em;
  white-space: nowrap;
}

.element-brand-copy small {
  margin-top: 5px;
  color: #597078;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.element-header-center {
  display: grid;
  min-width: 0;
  align-content: center;
  justify-items: center;
  gap: 14px;
}

.element-site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 30px);
}

.element-site-nav a {
  position: relative;
  color: var(--element-blue);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.element-site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--element-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.element-site-nav a:hover::after,
.element-site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.element-header-search {
  position: relative;
  width: min(390px, 100%);
}

.element-header-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.element-header-search input {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 42px 6px 15px;
  color: var(--element-ink);
  background: #fff;
  border: 1px solid #aabdc3;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
}

.element-header-search button {
  position: absolute;
  top: 3px;
  right: 3px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  color: #fff;
  background: var(--element-blue);
  border: 0;
  border-radius: 50%;
  font-size: 17px;
  font-weight: 900;
}

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

.element-contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--element-blue);
  background: #f8fafc;
  border: 1px solid var(--element-line);
  text-decoration: none;
}

.element-contact-icon svg {
  width: 21px;
  height: 21px;
}

.element-contact-icon.element-dhl {
  background: #ffcc00;
  border-color: #e5b700;
}

.element-contact-icon.element-dhl img {
  width: 33px;
  height: auto;
}

.element-header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #fff;
  background: var(--element-blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

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

body.element-layout-page > main.shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px 32px 96px;
}

body.element-layout-page .topbar {
  display: none;
}

body.element-layout-page .hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(38px, 5vw, 68px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 18, 38, 0.98) 0%, rgba(3, 27, 57, 0.92) 42%, rgba(3, 31, 65, 0.42) 74%, rgba(3, 18, 38, 0.34) 100%),
    url("./hero-materialanalyse.webp") center / cover no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: 0 24px 64px rgba(3, 18, 38, 0.19);
}

body.element-layout-page .hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 159, 227, 0.24), transparent 32%),
    radial-gradient(circle at 18% 100%, rgba(59, 130, 246, 0.16), transparent 36%);
}

body.element-layout-page .hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  grid-template-areas:
    "copy panel"
    "ticker ticker"
    "actions actions";
  gap: 26px 46px;
}

body.element-layout-page .hero-copy {
  grid-area: copy;
  align-self: center;
  padding: 0;
  overflow: visible;
  color: #fff;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.element-layout-page .hero-copy::before,
body.element-layout-page .hero-copy::after {
  display: none;
}

body.element-layout-page .hero-copy h1 {
  max-width: 760px;
  margin: 18px 0 20px;
  color: #fff;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 720;
  line-height: 1.01;
  letter-spacing: -0.052em;
}

body.element-layout-page .hero-title-line,
body.element-layout-page .hero-title-main,
body.element-layout-page .hero-title-action,
body.element-layout-page .hero-title-accent {
  color: inherit;
}

body.element-layout-page .hero-title-action {
  display: block;
  margin-top: 8px;
  font-size: 0.56em;
  font-weight: 550;
  line-height: 1.17;
  letter-spacing: -0.03em;
}

body.element-layout-page .hero-title-accent {
  display: block;
  margin-top: 9px;
  color: #7dd3fc;
  font-size: 0.42em;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.018em;
}

body.element-layout-page .hero-copy > p {
  max-width: 620px;
  color: #e5f1f5;
  font-size: 17px;
  line-height: 1.65;
}

body.element-layout-page .hero-copy > p strong {
  color: #fff;
}

body.element-layout-page .live-pill {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.26);
}

body.element-layout-page .live-dot {
  background: var(--element-primary);
}

body.element-layout-page .live-course-chart .chart-axis {
  stroke: rgba(255, 255, 255, 0.22);
}

body.element-layout-page .live-course-chart .chart-line {
  stroke: #7dd3fc;
}

body.element-layout-page .hero-contact-strip {
  margin-top: 28px;
  color: #e9f5f8;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

body.element-layout-page .hero-contact-label,
body.element-layout-page .hero-contact-link {
  color: #fff;
}

body.element-layout-page .hero-contact-link {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.22);
}

body.element-layout-page .hero-contact-link.whatsapp {
  background: #176b45;
  border-color: #267d58;
}

body.element-layout-page .market-panel {
  grid-area: panel;
  align-self: center;
  color: var(--element-ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

body.element-layout-page .market-head {
  color: var(--element-ink);
  background: transparent;
}

body.element-layout-page .market-head strong,
body.element-layout-page .market-step-title,
body.element-layout-page .market-steps,
body.element-layout-page .market-step-points {
  color: var(--element-ink);
}

body.element-layout-page .hero-ticker-row {
  grid-area: ticker;
  margin-top: 4px;
  overflow: hidden;
  background: var(--element-blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

body.element-layout-page .hero-actions {
  grid-area: actions;
}

body.element-layout-page .shipping-strip {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

body.element-layout-page .btn.primary,
body.element-layout-page .summary-actions .btn:first-child {
  background: var(--element-blue);
}

body.element-layout-page .main-grid {
  gap: 26px;
  margin-top: 34px;
}

body.element-layout-page .toolbar,
body.element-layout-page .category-panel,
body.element-layout-page .wishlist,
body.element-layout-page .seo-note,
body.element-layout-page .trust-info-card {
  border-color: var(--element-line);
  border-radius: 20px;
  box-shadow: var(--element-shadow);
}

body.element-layout-page .toolbar,
body.element-layout-page .category-panel,
body.element-layout-page .wishlist,
body.element-layout-page .trust-info-card {
  background: #fff;
}

body.element-layout-page .toolbar,
body.element-layout-page .category-title,
body.element-layout-page .wishlist-head {
  border-color: var(--element-line);
}

body.element-layout-page .category-title h2,
body.element-layout-page .wishlist-head strong,
body.element-layout-page .trust-info-card h3 {
  color: var(--element-ink);
}

body.element-layout-page .material-row {
  border-color: #e5e7eb;
}

body.element-layout-page .material-row:hover {
  border-color: rgba(0, 159, 227, 0.44);
  box-shadow: 0 10px 28px rgba(11, 79, 138, 0.08);
}

body.element-layout-page #materials-area,
body.element-layout-page .wishlist,
body.element-layout-page .trust-info-grid {
  scroll-margin-top: 146px;
}

.element-site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 159, 227, 0.18), transparent 32%),
    radial-gradient(circle at 18% 100%, rgba(59, 130, 246, 0.12), transparent 36%),
    var(--element-deep);
}

.element-footer-cta {
  padding: 76px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.element-footer-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
}

.element-footer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.element-footer-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--element-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(0, 159, 227, 0.12);
}

.element-footer-cta h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.element-footer-cta p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #c7d6dc;
  font-size: 16px;
  line-height: 1.65;
}

.element-footer-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #fff;
  background: var(--element-blue);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.element-footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.08fr 1.16fr;
  gap: 48px;
  padding: 62px 0;
}

.element-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.element-footer-brand .element-brand-mark {
  flex: 0 0 42px;
}

.element-footer-brand-copy {
  display: flex;
  flex-direction: column;
}

.element-footer-brand-copy strong {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.element-footer-brand-copy small {
  margin-top: 5px;
  color: #a9bdc5;
  font-size: 9px;
  letter-spacing: 0.11em;
}

.element-footer-company p,
.element-footer-company address,
.element-footer-column a,
.element-footer-column span {
  color: #a9bdc5;
}

.element-footer-company p {
  margin: 22px 0;
  line-height: 1.6;
}

.element-footer-company address {
  display: grid;
  gap: 4px;
  font-style: normal;
  line-height: 1.45;
}

.element-footer-company address strong {
  color: #fff;
}

.element-footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.element-footer-column h2 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.element-footer-column a {
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
}

.element-footer-column a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.element-footer-contact a {
  display: grid;
  gap: 2px;
}

.element-footer-contact a small {
  color: #7dd3fc;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.element-footer-contact a strong {
  color: #fff;
  font-size: 14px;
}

.element-footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.element-footer-legal-inner {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #8fa6af;
  font-size: 12px;
}

.element-footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.element-footer-legal a {
  color: #c5d3d8;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .element-header-inner {
    grid-template-columns: minmax(230px, auto) 1fr auto;
    gap: 22px;
  }

  .element-site-nav {
    gap: 16px;
  }

  .element-contact-icon {
    display: none;
  }

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

@media (max-width: 1023px) {
  .element-shell {
    width: min(100% - 40px, 1240px);
  }

  .element-header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 76px;
  }

  .element-header-center,
  .element-header-actions {
    display: none;
  }

  .element-mobile-menu {
    position: relative;
    display: block;
  }

  .element-mobile-menu > summary {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--element-blue);
    background: #fff;
    border: 1px solid var(--element-line);
    cursor: pointer;
    font-size: 23px;
    font-weight: 900;
    list-style: none;
  }

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

  .element-mobile-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: min(360px, calc(100vw - 32px));
    gap: 8px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--element-line);
    box-shadow: 0 24px 60px rgba(16, 47, 56, 0.2);
  }

  .element-mobile-panel a {
    padding: 11px 12px;
    color: var(--element-blue);
    background: #f7fafb;
    font-weight: 750;
    text-decoration: none;
  }

  .element-mobile-panel .element-header-search {
    width: 100%;
    margin-bottom: 6px;
  }

  .element-mobile-panel .element-header-search input {
    height: 44px;
    font-size: 14px;
  }

  .element-mobile-panel .element-header-search button {
    top: 5px;
    right: 5px;
    width: 34px;
    height: 34px;
  }

  body.element-layout-page > main.shell {
    padding-top: 24px;
  }

  body.element-layout-page .hero-main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "panel"
      "ticker"
      "actions";
  }

  body.element-layout-page .hero {
    background-position: 62% center;
  }

  body.element-layout-page .hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(3, 18, 38, 0.55);
  }

  .element-footer-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 700px) {
  .element-shell {
    width: min(100% - 32px, 1240px);
  }

  .element-brand-globe {
    display: none;
  }

  .element-brand {
    grid-template-rows: auto;
    align-items: center;
  }

  .element-brand-mark {
    grid-row: 1;
  }

  .element-brand-copy {
    grid-row: 1;
  }

  .element-brand-copy strong {
    font-size: 11px;
  }

  .element-brand-copy small {
    display: none;
  }

  body.element-layout-page > main.shell {
    padding: 16px 16px 64px;
  }

  body.element-layout-page .hero {
    padding: 32px 22px;
  }

  body.element-layout-page .hero-copy h1 {
    font-size: clamp(37px, 12vw, 50px);
  }

  body.element-layout-page .hero-title-action {
    font-size: 0.5em;
  }

  body.element-layout-page .hero-title-accent {
    font-size: 0.38em;
  }

  body.element-layout-page .hero-contact-strip {
    align-items: flex-start;
  }

  body.element-layout-page .hero-contact-actions {
    width: 100%;
  }

  body.element-layout-page .hero-contact-link {
    flex: 1 1 150px;
    justify-content: center;
  }

  body.element-layout-page .shipping-strip {
    border-radius: 14px;
  }

  .element-footer-cta {
    padding: 58px 0;
  }

  .element-footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 52px 0;
  }

  .element-footer-legal-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }
}

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

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

/* Complete local price-portal layout revision. Price data and calculator logic stay untouched. */
body.element-layout-page {
  background:
    radial-gradient(circle at 10% 18%, rgba(0, 159, 227, 0.055), transparent 26%),
    linear-gradient(180deg, #f8fafc 0%, #f3f6f8 100%);
}

.element-site-header {
  border-bottom-color: rgba(15, 47, 56, 0.12);
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.06);
}

.element-header-cta,
.element-footer-button {
  border-radius: 3px;
  box-shadow: 0 9px 22px rgba(11, 79, 138, 0.16);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.element-header-cta:hover,
.element-footer-button:hover {
  background: var(--element-primary);
  box-shadow: 0 12px 26px rgba(0, 159, 227, 0.2);
  transform: translateY(-1px);
}

body.element-layout-page > main.shell {
  max-width: 1360px;
  padding: 30px 32px 104px;
}

body.element-layout-page .hero {
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 159, 227, 0.19), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(59, 130, 246, 0.15), transparent 32%),
    linear-gradient(135deg, #04182f 0%, #073b6f 54%, #0b4f8a 100%);
  box-shadow: 0 28px 72px rgba(3, 18, 38, 0.2);
}

body.element-layout-page .hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

body.element-layout-page .hero::after {
  background: linear-gradient(105deg, rgba(3, 18, 38, 0.1), transparent 58%);
}

body.element-layout-page .hero-main {
  grid-template-columns: minmax(360px, 0.88fr) minmax(500px, 1.12fr);
  grid-template-areas:
    "copy visual"
    "panel panel"
    "ticker ticker"
    "actions actions";
  gap: 0;
}

body.element-layout-page .hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(52px, 6vw, 82px) 24px clamp(46px, 5vw, 70px) clamp(38px, 5vw, 70px);
}

body.element-layout-page .hero-copy-head {
  display: block;
  width: 100%;
}

body.element-layout-page .live-row {
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

body.element-layout-page .live-course-chart {
  width: 86px;
  margin: 0;
}

body.element-layout-page .hero-copy h1 {
  width: 100%;
  max-width: 600px;
  margin: 22px 0 22px;
  overflow: visible;
  color: #fff;
  font-size: clamp(48px, 4.75vw, 66px);
  font-weight: 690;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-align: left;
}

body.element-layout-page .hero-title-main,
body.element-layout-page .hero-title-action {
  display: block;
  max-width: 100%;
  color: inherit;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

body.element-layout-page .hero-title-action {
  margin-top: 16px;
  color: #9ddcf7;
  font-size: 0.43em;
  font-weight: 560;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

body.element-layout-page .hero-copy > p {
  max-width: 560px;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

body.element-layout-page .hero-visual {
  position: relative;
  z-index: 1;
  grid-area: visual;
  display: flex;
  min-width: 0;
  margin: 0;
  align-items: center;
  justify-content: center;
  padding: 44px 52px 44px 16px;
}

body.element-layout-page .hero-visual::before {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 10%;
  width: 68%;
  height: 54%;
  background: rgba(0, 159, 227, 0.18);
  filter: blur(70px);
  pointer-events: none;
}

body.element-layout-page .hero-visual img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  max-height: 455px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 16px;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.32);
}

body.element-layout-page .hero-contact-strip {
  max-width: 560px;
  margin-top: 30px;
  border-radius: 14px;
}

body.element-layout-page .market-panel {
  grid-area: panel;
  margin: 0 52px 24px;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(1, 13, 28, 0.2);
}

body.element-layout-page .market-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.58fr) minmax(0, 1.5fr) minmax(210px, 0.72fr);
  gap: 24px;
  align-items: center;
  padding: 26px 28px;
}

body.element-layout-page .market-head > strong {
  font-size: 20px;
  line-height: 1.18;
}

body.element-layout-page .market-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: market-step;
}

body.element-layout-page .market-steps > li {
  position: relative;
  min-height: 104px;
  padding: 18px 16px 16px 48px;
  background: #f5f8fa;
  border: 1px solid #e0e8ed;
  border-radius: 14px;
  counter-increment: market-step;
}

body.element-layout-page .market-steps > li::before {
  content: counter(market-step);
  position: absolute;
  top: 16px;
  left: 14px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #fff;
  background: var(--element-blue);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 850;
}

body.element-layout-page .market-step-title {
  display: block;
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

body.element-layout-page .market-step-points {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  line-height: 1.45;
}

body.element-layout-page .market-step-single-line {
  display: inline;
  white-space: normal;
  overflow-wrap: anywhere;
}

body.element-layout-page .hero-video-row {
  margin: 0;
}

body.element-layout-page .es-mini-video {
  width: 100%;
  border-radius: 14px;
}

body.element-layout-page .hero-ticker-row {
  margin: 0 52px 18px;
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.element-layout-page .hero-actions {
  padding: 0 52px 54px;
}

body.element-layout-page .shipping-strip {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: 14px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.element-layout-page .shipping-dhl-button,
body.element-layout-page .shipping-calculator-entry {
  min-width: 0;
  border-radius: 15px;
}

body.element-layout-page .shipping-dhl-button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  padding: 17px 18px;
  color: var(--element-ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(1, 13, 28, 0.15);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

body.element-layout-page .shipping-dhl-button:hover {
  box-shadow: 0 18px 42px rgba(1, 13, 28, 0.22);
  transform: translateY(-2px);
}

body.element-layout-page .shipping-dhl-logo {
  display: grid;
  min-width: 102px;
  min-height: 48px;
  place-items: center;
  padding: 9px 10px;
  background: #ffcc00;
  border-radius: 8px;
}

body.element-layout-page .shipping-dhl-logo img {
  display: block;
  width: 82px;
  height: auto;
}

body.element-layout-page .shipping-dhl-copy {
  display: grid;
  gap: 3px;
}

body.element-layout-page .shipping-dhl-copy strong {
  color: var(--element-ink);
  font-size: 15px;
}

body.element-layout-page .shipping-dhl-copy small {
  color: var(--element-muted);
  font-size: 12px;
}

body.element-layout-page .shipping-arrow {
  color: var(--element-blue);
  font-size: 24px;
}

body.element-layout-page .shipping-calculator-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 22px;
  align-items: center;
  padding: 16px 18px 16px 22px;
  color: #fff;
  background: rgba(2, 24, 49, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.19);
  box-shadow: 0 14px 36px rgba(1, 13, 28, 0.13);
}

body.element-layout-page .shipping-entry-kicker {
  grid-column: 1;
  color: #9ddcf7;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.element-layout-page .shipping-calculator-entry > strong {
  grid-column: 1;
  font-size: 15px;
  line-height: 1.25;
}

body.element-layout-page .shipping-calculator-entry .hero-cta-buttons {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  gap: 8px;
}

body.element-layout-page .shipping-calculator-entry .btn {
  min-height: 44px;
  padding-inline: 15px;
  border-color: rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  white-space: nowrap;
}

body.element-layout-page .shipping-calculator-entry .btn:not(.primary) {
  color: #fff;
  background: transparent;
}

body.element-layout-page .main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  margin-top: 34px;
}

body.element-layout-page #materials-area {
  grid-row: 2;
}

body.element-layout-page .wishlist {
  position: relative;
  top: auto;
  grid-row: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(300px, 1.35fr) minmax(340px, 0.93fr);
  min-height: 166px;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(8, 43, 53, 0.1);
}

body.element-layout-page .wishlist-head {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 159, 227, 0.34), transparent 46%),
    linear-gradient(145deg, #062e59, #0b4f8a);
  border: 0;
}

body.element-layout-page .wishlist-title {
  display: grid;
  gap: 8px;
}

body.element-layout-page .wishlist-title small {
  color: #9ddcf7;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.element-layout-page .wishlist-head .wishlist-title strong {
  color: #fff;
  font-size: clamp(22px, 2.2vw, 29px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

body.element-layout-page .wishlist-count {
  min-width: 38px;
  min-height: 38px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
}

body.element-layout-page .wishlist-body {
  max-height: 310px;
  padding: 16px;
  overflow: auto;
  background: #fff;
  border-right: 1px solid #e5ecef;
}

body.element-layout-page .wish-empty {
  display: grid;
  min-height: 100%;
  place-items: center;
  padding: 22px;
  color: #61747d;
  background: #f7fafb;
  border: 1px dashed #cbd9df;
  border-radius: 12px;
  text-align: center;
}

body.element-layout-page .wish-item {
  margin-bottom: 10px;
  border: 1px solid #e0e8ed;
  border-radius: 12px;
}

body.element-layout-page .wishlist-summary {
  align-content: center;
  gap: 14px;
  padding: 24px;
  background: #f7fafb;
  border: 0;
}

body.element-layout-page .total-label span {
  color: var(--element-ink);
  font-size: 15px;
}

body.element-layout-page .total-label small {
  max-width: 190px;
  color: #71838b;
  font-size: 11px;
}

body.element-layout-page .total-line strong {
  color: var(--element-blue);
  font-size: 25px;
}

body.element-layout-page .summary-actions {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

body.element-layout-page .summary-actions .btn {
  min-height: 42px;
  border-radius: 4px;
}

body.element-layout-page .summary-actions #open-inquiry {
  color: #fff;
  background: var(--element-blue) !important;
  border-color: var(--element-blue) !important;
}

body.element-layout-page .summary-actions #copy-offer {
  color: var(--element-blue);
  background: #fff;
  border-color: #93b5cd;
}

body.element-layout-page .summary-actions #clear-wishlist {
  grid-column: 1 / -1;
  min-height: 34px;
  background: transparent;
  border-color: transparent;
}

body.element-layout-page .toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) minmax(180px, 0.75fr) minmax(180px, 0.75fr);
  gap: 16px;
  align-items: end;
  padding: 22px;
  border: 1px solid #dce6ea;
  background: #fff;
  box-shadow: 0 14px 36px rgba(8, 43, 53, 0.07);
}

body.element-layout-page .toolbar .field > span {
  color: var(--element-blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

body.element-layout-page .toolbar input,
body.element-layout-page .toolbar select {
  min-height: 48px;
  border-color: #cbd8de;
  border-radius: 8px;
  background: #f9fbfc;
}

body.element-layout-page .category-panel {
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid #dce6ea;
  background: #fff;
  box-shadow: 0 18px 42px rgba(8, 43, 53, 0.075);
}

body.element-layout-page .category-title {
  position: relative;
  padding: 24px 26px 22px;
  background:
    linear-gradient(90deg, rgba(0, 159, 227, 0.07), transparent 52%),
    #fbfcfd;
  border-bottom: 1px solid #dce6ea;
}

body.element-layout-page .category-title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--element-primary), var(--element-blue));
}

body.element-layout-page .category-title h2 {
  font-size: clamp(21px, 2.1vw, 28px);
  letter-spacing: -0.025em;
}

body.element-layout-page .category-title p {
  max-width: 850px;
  color: #60737c;
  line-height: 1.55;
}

body.element-layout-page .material-table {
  gap: 0;
}

body.element-layout-page .material-row {
  grid-template-columns: 76px minmax(210px, 1.35fr) minmax(165px, 0.78fr) minmax(100px, 0.46fr) minmax(230px, 0.96fr);
  gap: 16px;
  min-height: 122px;
  padding: 14px 20px;
  background: #fff;
  border-bottom: 1px solid #e5ecef;
  box-shadow: none;
}

body.element-layout-page .material-row:nth-child(even) {
  background: #fbfcfd;
}

body.element-layout-page .material-row:hover {
  transform: none;
  background: #f6fbfe;
  border-color: rgba(0, 159, 227, 0.34);
  box-shadow: inset 4px 0 0 var(--element-primary);
}

body.element-layout-page .material-row .material-image {
  width: 70px;
  height: 70px;
  border-color: #cfdce2;
  border-radius: 12px;
}

body.element-layout-page .material-name strong {
  color: var(--element-ink);
  font-size: 15px;
  line-height: 1.3;
}

body.element-layout-page .article-code {
  color: #7b8d95;
  font-size: 10px;
}

body.element-layout-page .price-cell {
  min-height: 72px;
  padding: 12px;
  background: linear-gradient(145deg, #f2f9fd, #fff);
  border-color: #cfe2ee;
  border-radius: 12px;
}

body.element-layout-page .price {
  color: var(--element-blue);
  font-size: clamp(22px, 2vw, 28px);
}

body.element-layout-page .calc-action-stack {
  gap: 8px;
}

body.element-layout-page .material-row .quick-calc input {
  min-height: 44px;
  border-color: #cbd8de;
  border-radius: 8px;
  background: #fff;
}

body.element-layout-page .row-actions {
  grid-template-columns: minmax(86px, 0.72fr) minmax(140px, 1.28fr);
  gap: 8px;
}

body.element-layout-page .row-actions .btn {
  min-height: 42px;
  border-radius: 4px;
}

body.element-layout-page .row-actions .btn.primary {
  color: #fff;
  background: var(--element-blue);
  border-color: var(--element-blue);
}

body.element-layout-page .trust-info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

body.element-layout-page .trust-info-card {
  position: relative;
  min-height: 100%;
  padding: 28px 30px 28px 72px;
  overflow: hidden;
  background: #fff;
}

body.element-layout-page .trust-info-card::before {
  content: "i";
  position: absolute;
  top: 28px;
  left: 28px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: var(--element-blue);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
}

.element-site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 159, 227, 0.18), transparent 32%),
    radial-gradient(circle at 18% 100%, rgba(59, 130, 246, 0.12), transparent 36%),
    #111827;
}

.element-site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.element-site-footer > * {
  position: relative;
}

.element-footer-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.element-footer-cta h2,
.element-footer-cta p {
  margin-inline: auto;
}

.element-footer-brand .element-brand-mark {
  background: linear-gradient(135deg, #0a3a65 0%, #072c4f 58%, #061f3a 100%);
  box-shadow: 0 10px 24px rgba(4, 38, 69, 0.38);
}

.element-footer-trust {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.element-footer-trust-inner {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #6b7280;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.element-footer-trust a {
  color: #81909d;
  text-decoration: none;
}

@media (max-width: 1180px) {
  body.element-layout-page .hero-main {
    grid-template-columns: minmax(330px, 0.9fr) minmax(420px, 1.1fr);
  }

  body.element-layout-page .hero-copy {
    padding-left: 42px;
  }

  body.element-layout-page .hero-visual {
    padding-right: 38px;
  }

  body.element-layout-page .market-head {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  body.element-layout-page .hero-video-row {
    grid-column: 1 / -1;
  }

  body.element-layout-page .wishlist {
    grid-template-columns: minmax(230px, 0.72fr) minmax(260px, 1.15fr) minmax(310px, 0.9fr);
  }

  body.element-layout-page .material-row {
    grid-template-columns: 70px minmax(190px, 1.2fr) minmax(150px, 0.72fr) minmax(88px, 0.4fr) minmax(210px, 0.92fr);
    gap: 12px;
    padding-inline: 16px;
  }
}

@media (max-width: 1023px) {
  body.element-layout-page .hero-main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "panel"
      "ticker"
      "actions";
  }

  body.element-layout-page .hero-copy {
    padding: 52px 42px 28px;
  }

  body.element-layout-page .hero-copy h1 {
    max-width: 720px;
  }

  body.element-layout-page .hero-visual {
    padding: 14px 42px 42px;
  }

  body.element-layout-page .market-head {
    grid-template-columns: 1fr;
  }

  body.element-layout-page .market-head > strong {
    max-width: 340px;
  }

  body.element-layout-page .market-steps {
    grid-template-columns: 1fr;
  }

  body.element-layout-page .market-steps > li {
    min-height: 0;
  }

  body.element-layout-page .market-panel,
  body.element-layout-page .hero-ticker-row {
    margin-inline: 42px;
  }

  body.element-layout-page .hero-actions {
    padding-inline: 42px;
  }

  body.element-layout-page .shipping-strip {
    grid-template-columns: 1fr;
  }

  body.element-layout-page .wishlist {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  }

  body.element-layout-page .wishlist-summary {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    align-items: center;
    border-top: 1px solid #e5ecef;
  }

  body.element-layout-page .material-row {
    grid-template-columns: 68px minmax(190px, 1fr) minmax(150px, 0.72fr) minmax(200px, 0.9fr);
  }

  body.element-layout-page .material-row > .price-trend-stack {
    display: none;
  }

  body.element-layout-page .calc-action-stack {
    grid-column: 4;
  }
}

@media (max-width: 760px) {
  body.element-layout-page > main.shell {
    padding: 16px 16px 70px;
  }

  body.element-layout-page .hero-copy {
    padding: 38px 24px 24px;
  }

  body.element-layout-page .hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(42px, 11vw, 58px);
  }

  body.element-layout-page .hero-title-action {
    margin-top: 12px;
    font-size: 0.45em;
  }

  body.element-layout-page .hero-copy > p {
    font-size: 14px;
  }

  body.element-layout-page .hero-intro-separator {
    display: none;
  }

  body.element-layout-page .hero-copy > p span:last-child {
    display: block;
    margin-top: 4px;
  }

  body.element-layout-page .hero-contact-strip {
    padding: 14px;
  }

  body.element-layout-page .hero-visual {
    padding: 10px 18px 30px;
  }

  body.element-layout-page .hero-visual img {
    border-radius: 10px;
  }

  body.element-layout-page .market-panel,
  body.element-layout-page .hero-ticker-row {
    margin-inline: 18px;
  }

  body.element-layout-page .market-head {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  body.element-layout-page .market-steps {
    grid-template-columns: 1fr;
  }

  body.element-layout-page .market-steps > li {
    min-height: 0;
  }

  body.element-layout-page .hero-actions {
    padding: 0 18px 32px;
  }

  body.element-layout-page .shipping-calculator-entry {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  body.element-layout-page .shipping-calculator-entry .hero-cta-buttons {
    grid-column: 1;
    grid-row: auto;
    flex-direction: column;
    margin-top: 10px;
  }

  body.element-layout-page .shipping-calculator-entry .btn {
    width: 100%;
  }

  body.element-layout-page .wishlist {
    grid-template-columns: 1fr;
  }

  body.element-layout-page .wishlist-head,
  body.element-layout-page .wishlist-body,
  body.element-layout-page .wishlist-summary {
    grid-column: 1;
  }

  body.element-layout-page .wishlist-body {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid #e5ecef;
  }

  body.element-layout-page .wishlist-summary {
    grid-template-columns: 1fr;
  }

  body.element-layout-page .toolbar {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  body.element-layout-page .material-row {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px 14px;
    padding: 18px;
  }

  body.element-layout-page .material-row .material-image {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 62px;
    height: 62px;
  }

  body.element-layout-page .material-name {
    grid-column: 2;
    grid-row: 1;
  }

  body.element-layout-page .price-cell {
    grid-column: 2;
    grid-row: 2;
    justify-items: start;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
  }

  body.element-layout-page .price {
    font-size: 24px;
  }

  body.element-layout-page .calc-action-stack {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  body.element-layout-page .row-actions {
    grid-template-columns: 0.72fr 1.28fr;
  }

  body.element-layout-page .trust-info-grid {
    grid-template-columns: 1fr;
  }

  body.element-layout-page .trust-info-card {
    padding: 66px 24px 26px;
  }

  body.element-layout-page .trust-info-card::before {
    top: 24px;
    left: 24px;
  }

  .element-footer-trust-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 16px;
  }
}

@media (max-width: 440px) {
  body.element-layout-page .hero-copy h1 {
    font-size: clamp(36px, 9.4vw, 44px);
  }

  body.element-layout-page .hero-contact-actions,
  body.element-layout-page .summary-actions,
  body.element-layout-page .row-actions {
    grid-template-columns: 1fr;
  }

  body.element-layout-page .shipping-dhl-button {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
  }

  body.element-layout-page .shipping-dhl-logo {
    min-width: 88px;
  }

  body.element-layout-page .shipping-dhl-logo img {
    width: 70px;
  }

  body.element-layout-page .shipping-arrow {
    display: none;
  }
}

/* Zweites, versetzt startendes Preis-Laufband nur am mobilen Hero-Rand */
body.element-layout-page .hero-mobile-ticker-row {
  display: none;
  grid-area: mobileticker;
  min-width: 0;
  overflow: hidden;
}

@media (max-width: 760px) {
  body.element-layout-page .hero-main {
    grid-template-areas:
      "mobileticker"
      "copy"
      "visual"
      "panel"
      "ticker"
      "actions";
  }

  body.element-layout-page .hero-mobile-ticker-row {
    display: block;
    width: 100%;
    margin: 0;
    background: #fff;
    border-bottom: 1px solid #d8e1e7;
  }

  body.element-layout-page .hero-mobile-ticker-row .ticker {
    min-height: 82px;
    border-top: 0;
  }
}

/* 2026-09-01: verified Gadolinium reference alignment and licensed image integration. */
body.element-layout-page .hero-main {
  grid-template-columns: minmax(360px, 0.9fr) minmax(500px, 1.1fr);
}

body.element-layout-page .hero-visual {
  align-items: stretch;
  padding: 38px 48px 38px 10px;
}

body.element-layout-page .hero-visual::before {
  right: 2%;
  bottom: 4%;
  width: 78%;
  height: 70%;
}

body.element-layout-page .hero-material-board {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-width: 0;
  align-self: center;
  gap: 10px;
}

body.element-layout-page .hero-material-main {
  position: relative;
  min-height: 326px;
  overflow: hidden;
  background: linear-gradient(145deg, #e8f2f7 0%, #bfd3df 58%, #8eaab9 100%);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 18px;
  box-shadow: 0 28px 66px rgba(0, 0, 0, 0.3);
}

body.element-layout-page .hero-material-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 18, 38, 0.38), transparent 38%),
    linear-gradient(0deg, rgba(3, 18, 38, 0.3), transparent 44%);
  pointer-events: none;
}

body.element-layout-page .hero-visual .hero-material-main > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 326px;
  max-height: none;
  object-fit: cover;
  object-position: 50% 55%;
  mix-blend-mode: multiply;
  filter: saturate(0.68) contrast(1.08);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.element-layout-page .hero-material-label {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  display: grid;
  max-width: calc(100% - 36px);
  gap: 2px;
  padding: 11px 14px;
  color: #fff;
  background: rgba(3, 28, 56, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  backdrop-filter: blur(12px);
}

body.element-layout-page .hero-material-label strong {
  font-size: 13px;
}

body.element-layout-page .hero-material-label small {
  color: #cdeafb;
  font-size: 10px;
}

body.element-layout-page .hero-material-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.element-layout-page .hero-material-thumbs figure {
  position: relative;
  min-width: 0;
  height: 94px;
  margin: 0;
  overflow: hidden;
  background: #eaf1f5;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

body.element-layout-page .hero-visual .hero-material-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.element-layout-page .hero-material-thumbs figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  padding: 6px 8px;
  color: #fff;
  background: rgba(3, 28, 56, 0.82);
  border-radius: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

body.element-layout-page .market-panel {
  overflow: hidden;
  color: var(--element-ink);
  background: #fff;
  border: 1px solid rgba(201, 216, 224, 0.9);
  box-shadow: 0 18px 44px rgba(1, 13, 28, 0.16);
}

body.element-layout-page .market-head {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  grid-template-rows: auto 1fr;
  gap: 12px 30px;
  align-items: start;
  padding: 28px 30px;
}

body.element-layout-page .market-head > strong {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: var(--element-blue);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.35;
}

body.element-layout-page .market-steps {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
}

body.element-layout-page .market-steps > li {
  min-height: 32px;
  padding: 0 0 0 34px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

body.element-layout-page .market-steps > li::before {
  top: 1px;
  left: 0;
  display: block;
  width: 20px;
  height: auto;
  color: var(--element-blue);
  background: transparent;
  border-radius: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

body.element-layout-page .market-step-title {
  color: var(--element-blue);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

body.element-layout-page .market-step-points {
  margin-top: 3px;
  color: #5e6e76;
  font-size: 13px;
  line-height: 1.45;
}

body.element-layout-page .hero-video-row {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: stretch;
}

body.element-layout-page .es-mini-video {
  height: 100%;
  min-height: 210px;
  overflow: hidden;
  background: #f5f8fa;
  border: 1px solid #dde7ec;
  border-radius: 14px;
}

body.element-layout-page .es-mini-thumb {
  min-height: 154px;
  background-position: center;
  background-size: cover;
}

body.element-layout-page :is(
  .element-header-cta,
  .element-footer-button,
  #scroll-materials,
  #open-inquiry,
  .modal .btn.primary
) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff !important;
  background: linear-gradient(135deg, #0b4f8a 0%, #073b6f 58%, #052b52 100%) !important;
  border: 1px solid rgba(151, 207, 255, 0.72) !important;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(3, 32, 63, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

body.element-layout-page :is(
  .element-header-cta,
  .element-footer-button,
  #scroll-materials,
  #open-inquiry,
  .modal .btn.primary
)::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -20% -34%;
  background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.3) 50%, transparent 62%);
  transform: translateX(-115%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

body.element-layout-page :is(
  .element-header-cta,
  .element-footer-button,
  #scroll-materials,
  #open-inquiry,
  .modal .btn.primary
):hover {
  color: #fff !important;
  background: linear-gradient(135deg, #0d5a9d 0%, #08477f 58%, #06325e 100%) !important;
  border-color: #b9ddff !important;
  box-shadow: 0 16px 34px rgba(3, 32, 63, 0.4), 0 0 0 3px rgba(105, 190, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

body.element-layout-page :is(
  .element-header-cta,
  .element-footer-button,
  #scroll-materials,
  #open-inquiry,
  .modal .btn.primary
):hover::before {
  transform: translateX(115%);
}

body.element-layout-page #open-inquiry-top {
  color: #d8efff !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(185, 221, 255, 0.68) !important;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body.element-layout-page #open-inquiry-top:hover {
  color: #fff !important;
  background: rgba(105, 190, 255, 0.16) !important;
  border-color: #b9ddff !important;
  transform: translateY(-2px);
}

body.element-layout-page .shipping-calculator-entry {
  grid-template-columns: minmax(220px, 0.82fr) minmax(360px, 1.18fr);
  gap: 8px 20px;
  min-height: 92px;
  padding: 18px 20px 18px 24px;
}

body.element-layout-page .shipping-calculator-entry .hero-cta-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

body.element-layout-page .shipping-calculator-entry .btn {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  white-space: normal;
}

body.element-layout-page .wishlist {
  width: min(100%, 1160px);
  min-height: 148px;
  margin-inline: auto;
  grid-template-columns: 250px minmax(0, 1fr) 330px;
  border: 1px solid #dce6eb;
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(8, 43, 53, 0.09);
}

body.element-layout-page .wishlist-head {
  padding: 24px;
}

body.element-layout-page .wishlist-head .wishlist-title strong {
  font-size: clamp(20px, 1.9vw, 26px);
}

body.element-layout-page .wishlist-body {
  min-height: 124px;
  max-height: 280px;
  padding: 12px;
}

body.element-layout-page .wish-empty {
  min-height: 98px;
  padding: 16px;
}

body.element-layout-page .wishlist-summary {
  gap: 12px;
  padding: 20px;
}

body.element-layout-page .summary-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.element-layout-page .summary-actions .btn {
  min-width: 0;
  padding-inline: 10px;
  white-space: normal;
}

body.element-layout-page .wishlist:has(.wish-empty) :is(#copy-offer, #clear-wishlist) {
  display: none;
}

body.element-layout-page .wishlist:has(.wish-empty) .summary-actions {
  grid-template-columns: 1fr;
}

@media (max-width: 1180px) {
  body.element-layout-page .hero-main {
    grid-template-columns: minmax(330px, 0.88fr) minmax(420px, 1.12fr);
  }

  body.element-layout-page .hero-visual {
    padding-right: 34px;
  }

  body.element-layout-page .wishlist {
    grid-template-columns: 235px minmax(0, 1fr) 310px;
  }
}

@media (max-width: 1023px) {
  body.element-layout-page .hero-main {
    grid-template-columns: 1fr;
  }

  body.element-layout-page .hero-visual {
    padding: 14px 42px 42px;
  }

  body.element-layout-page .hero-material-main,
  body.element-layout-page .hero-visual .hero-material-main > img {
    min-height: 360px;
  }

  body.element-layout-page .market-head {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.64fr);
  }

  body.element-layout-page .shipping-calculator-entry {
    grid-template-columns: minmax(210px, 0.72fr) minmax(340px, 1.28fr);
  }

  body.element-layout-page .wishlist {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  }

  body.element-layout-page .wishlist-head {
    grid-column: 1;
    grid-row: 1;
  }

  body.element-layout-page .wishlist-summary {
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: 1fr;
    border: 0;
  }

  body.element-layout-page .wishlist-body {
    grid-column: 1 / -1;
    grid-row: 2;
    border-top: 1px solid #e5ecef;
    border-right: 0;
  }
}

@media (max-width: 760px) {
  body.element-layout-page .hero-visual {
    padding: 10px 18px 30px;
  }

  body.element-layout-page .hero-material-main,
  body.element-layout-page .hero-visual .hero-material-main > img {
    min-height: 240px;
  }

  body.element-layout-page .hero-material-thumbs figure {
    height: 78px;
  }

  body.element-layout-page .market-head {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  body.element-layout-page .market-head > strong,
  body.element-layout-page .market-steps,
  body.element-layout-page .hero-video-row {
    grid-column: 1;
    grid-row: auto;
  }

  body.element-layout-page .es-mini-video {
    min-height: 0;
  }

  body.element-layout-page .shipping-calculator-entry {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px;
  }

  body.element-layout-page .shipping-calculator-entry .hero-cta-buttons {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr;
    margin-top: 8px;
  }

  body.element-layout-page .wishlist {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.element-layout-page .wishlist-head,
  body.element-layout-page .wishlist-body,
  body.element-layout-page .wishlist-summary {
    grid-column: 1;
  }

  body.element-layout-page .wishlist-head {
    grid-row: 1;
    min-height: 96px;
    padding: 20px;
  }

  body.element-layout-page .wishlist-body {
    grid-row: 2;
    min-height: 0;
    padding: 10px;
    border-bottom: 1px solid #e5ecef;
  }

  body.element-layout-page .wish-empty {
    min-height: 76px;
    padding: 14px;
  }

  body.element-layout-page .wishlist-summary {
    grid-row: 3;
    padding: 18px 20px;
  }

  body.element-layout-page .total-label small {
    max-width: none;
  }
}

@media (max-width: 440px) {
  body.element-layout-page .hero-material-main,
  body.element-layout-page .hero-visual .hero-material-main > img {
    min-height: 210px;
  }

  body.element-layout-page .hero-material-thumbs {
    grid-template-columns: 1fr;
  }

  body.element-layout-page .hero-material-thumbs figure {
    height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.element-layout-page :is(
    .element-header-cta,
    .element-footer-button,
    #scroll-materials,
    #open-inquiry,
    .modal .btn.primary
  )::before {
    display: none;
  }
}

/* Hero-Beschriftung, Materialformen und mobile Markenführung */
body.element-layout-page .hero-material-label {
  color: #073b6f;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(205, 227, 241, 0.96);
  box-shadow: 0 10px 28px rgba(2, 23, 45, 0.18);
}

body.element-layout-page .hero-material-label strong {
  color: #073b6f;
}

body.element-layout-page .hero-material-label small {
  color: #315f7d;
}

body.element-layout-page .hero-material-thumb-drum {
  background: #fff;
}

body.element-layout-page .hero-visual .hero-material-thumb-drum img {
  box-sizing: border-box;
  object-fit: contain;
  padding: 4px 10px 8px;
  background: #fff;
}

body.element-layout-page .hero-copy > p span:last-child {
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 760px) {
  body.element-layout-page .hero-copy > p span:last-child {
    font-size: 12px;
  }

  body.element-layout-page .market-head > strong {
    font-size: clamp(13px, 4vw, 16px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
}

@media (max-width: 700px) {
  .element-brand {
    grid-template-columns: 36px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 8px;
    align-items: end;
  }

  .element-brand-mark {
    grid-row: 1 / 3;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .element-brand-globe {
    grid-column: 2;
    grid-row: 1;
    display: block;
    width: 80px;
    margin: 0 0 -2px -8px;
  }

  .element-brand-copy {
    grid-column: 2;
    grid-row: 2;
  }

  .element-brand-copy strong {
    font-size: 9px;
    letter-spacing: 0.05em;
  }
}

/* Quadratische Bildausschnitte innerhalb der unveränderten Kartenpositionen */
body.element-layout-page .hero-visual .hero-material-thumbs img {
  width: auto;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  object-fit: contain;
  padding: 4px;
  background: #fff;
}

body.element-layout-page .hero-visual .hero-material-thumb-drum img {
  width: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

body.element-layout-page .hero-material-thumb-oxide {
  background: #fff;
}

body.element-layout-page .hero-visual .hero-material-thumb-oxide img {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 0;
  background: #fff;
}

body.element-layout-page .hero-material-thumb-oxide figcaption {
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  display: flex;
  width: auto;
  max-width: none;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 0 11px 11px 0;
  transform: none;
}

body.element-layout-page .hero-material-thumbs figcaption {
  right: 8px;
  left: auto;
  width: max-content;
  max-width: calc(100% - 110px);
  padding: 5px 8px;
  line-height: 1.2;
}

@media (max-width: 760px) {
  body.element-layout-page .hero-material-thumbs figcaption {
    max-width: calc(100% - 94px);
  }
}

@media (max-width: 440px) {
  body.element-layout-page .hero-material-thumbs figcaption {
    max-width: calc(100% - 88px);
    font-size: 9px;
    letter-spacing: 0.015em;
  }
}

/* Kompaktere Materialbeschriftungen ohne Änderung der Bildpositionen */
body.element-layout-page .hero-material-label {
  top: 14px;
  right: 14px;
  bottom: auto;
  left: auto;
  max-width: calc(100% - 28px);
  gap: 1px;
  padding: 7px 10px;
  border-radius: 8px;
}

body.element-layout-page .hero-material-label strong {
  font-size: 11px;
}

body.element-layout-page .hero-material-label small {
  font-size: 8.5px;
}

body.element-layout-page .hero-material-thumbs figcaption {
  top: 50%;
  bottom: auto;
  padding: 4px 6px;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  transform: translateY(-50%);
}

@media (max-width: 440px) {
  body.element-layout-page .hero-material-thumbs figcaption {
    font-size: 8px;
  }
}

/* Verbindliche 50/50-Aufteilung der Oxidkarte */
body.element-layout-page .hero-material-thumbs .hero-material-thumb-oxide {
  background: #fff;
}

body.element-layout-page .hero-material-thumbs .hero-material-thumb-oxide figcaption {
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  display: flex;
  width: auto;
  max-width: none;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 0 11px 11px 0;
  transform: none;
}

/* Dieselbe 50/50-Aufteilung für Schlämme und Schlacken */
body.element-layout-page .hero-material-thumbs .hero-material-thumb-drum {
  background: #fff;
}

body.element-layout-page .hero-visual .hero-material-thumbs .hero-material-thumb-drum img {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 4px;
  background: #fff;
}

body.element-layout-page .hero-material-thumbs .hero-material-thumb-drum figcaption {
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  display: flex;
  width: auto;
  max-width: none;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background: rgba(3, 28, 56, 0.82);
  border-radius: 0 11px 11px 0;
  transform: none;
}

/* Zweite Materialkartenzeile im identischen 50/50-Format */
body.element-layout-page .hero-material-thumbs .hero-material-thumb-split {
  background: #fff;
}

body.element-layout-page .hero-visual .hero-material-thumbs .hero-material-thumb-split img {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 2px;
  background: #fff;
}

body.element-layout-page .hero-material-thumbs .hero-material-thumb-split figcaption {
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  display: flex;
  width: auto;
  max-width: none;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background: rgba(3, 28, 56, 0.82);
  border-radius: 0 11px 11px 0;
  text-align: center;
  transform: none;
}

body.element-layout-page .hero-material-thumb-oxide figcaption {
  flex-direction: column;
  gap: 2px;
}

body.element-layout-page .hero-material-thumb-oxide figcaption small {
  color: #cdeafb;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

body.element-layout-page .hero-material-thumb-oxide figcaption span {
  line-height: 1.15;
}

/* Zweizeilige Materialnamen: die erste Zeile nimmt das Blau von "Seltene Erden" auf. */
body.element-layout-page .hero-material-thumbs figcaption.hero-material-caption-stacked {
  flex-direction: column;
  gap: 2px;
  line-height: 1.12;
}

body.element-layout-page .hero-material-caption-primary {
  color: #cdeafb;
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

/* Der Ablaufblock bleibt auch in kleineren Desktop- und Mobilansichten im Seitenraster. */
body.element-layout-page .market-panel,
body.element-layout-page .market-head,
body.element-layout-page .market-steps,
body.element-layout-page .market-steps > li,
body.element-layout-page .hero-video-row,
body.element-layout-page .es-mini-video {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

body.element-layout-page .market-step-single-line {
  white-space: normal;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  body.element-layout-page .market-head {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 14px;
    padding: 22px;
  }

  body.element-layout-page .market-head > strong,
  body.element-layout-page .market-steps,
  body.element-layout-page .hero-video-row {
    grid-column: 1;
    grid-row: auto;
  }

  body.element-layout-page .hero-video-row {
    width: 100%;
    overflow: hidden;
  }

  body.element-layout-page .es-mini-video {
    width: min(100%, 420px);
    height: auto;
    min-height: 0;
    margin-inline: auto;
    overflow: hidden;
  }
}

/* Freigegebene Zahlungs- und Abwicklungsvorteile zwischen Hero-Titel und Unternehmen. */
body.element-layout-page .hero-benefits {
  display: grid;
  max-width: 560px;
  gap: 7px;
  margin: -2px 0 0;
  padding: 0;
  color: #dceaf0;
  font-size: 14px;
  line-height: 1.38;
  list-style: none;
}

body.element-layout-page .hero-benefits li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

body.element-layout-page .hero-benefits li::before {
  content: "✓";
  display: block;
  width: 20px;
  height: auto;
  margin-top: 1px;
  color: #b8e7fa;
  background: transparent;
  border-radius: 0;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.05;
  text-align: left;
}

body.element-layout-page .hero-benefits li > span {
  min-width: 0;
}

body.element-layout-page .hero-benefits strong {
  color: #fff;
  font-weight: 750;
}

/* Zurückhaltende DHL-Unterzeile gemäß Nutzertext. */
body.element-layout-page .shipping-dhl-copy small {
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}

/* Einheitlicher Licht- und Anhebeeffekt für normale Textbuttons. */
body.element-layout-page :is(
  .btn:not(.icon),
  .element-header-cta,
  .element-footer-button,
  .shipping-dhl-button
) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

body.element-layout-page :is(
  .btn:not(.icon),
  .element-header-cta,
  .element-footer-button,
  .shipping-dhl-button
)::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -24% -38%;
  background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.3) 50%, transparent 62%);
  transform: translateX(-115%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

body.element-layout-page :is(
  .btn:not(.icon),
  .element-header-cta,
  .element-footer-button,
  .shipping-dhl-button
):hover {
  box-shadow: 0 16px 34px rgba(3, 32, 63, 0.28), 0 0 0 3px rgba(105, 190, 255, 0.1);
  transform: translateY(-2px);
}

body.element-layout-page :is(
  .btn:not(.icon),
  .element-header-cta,
  .element-footer-button,
  .shipping-dhl-button
):hover::after {
  transform: translateX(115%);
}

body.element-layout-page :is(
  .btn:not(.icon),
  .element-header-cta,
  .element-footer-button,
  .shipping-dhl-button
):focus-visible {
  outline: 3px solid rgba(184, 231, 250, 0.92);
  outline-offset: 3px;
}

body.element-layout-page .feedback-toggle {
  gap: 12px;
  white-space: nowrap;
}

body.element-layout-page .feedback-toggle > span {
  position: relative;
  z-index: 2;
}

body.element-layout-page .feedback-toggle .button-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.55);
}

body.element-layout-page .feedback-toggle .button-arrow {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.25s ease;
}

body.element-layout-page .feedback-toggle:hover .button-arrow {
  transform: translateX(4px);
}

@media (max-width: 760px) {
  body.element-layout-page .hero-benefits {
    gap: 7px;
    font-size: 13px;
  }

  body.element-layout-page .feedback-toggle {
    padding-inline: 14px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.element-layout-page :is(
    .btn:not(.icon),
    .element-header-cta,
    .element-footer-button,
    .shipping-dhl-button
  )::after {
    display: none;
  }

  body.element-layout-page .feedback-toggle .button-arrow {
    transition: none;
  }
}

@media (max-width: 440px) {
  body.element-layout-page .market-head {
    padding: 15px 12px 12px;
  }

  body.element-layout-page .market-head > strong {
    font-size: clamp(15px, 4.5vw, 18px);
    white-space: nowrap;
  }

  body.element-layout-page .hero-material-caption-primary {
    font-size: 7px;
  }
}

/* Beide Preisbänder liegen gemeinsam direkt über dem Ablauf- und Videomodul. */
body.element-layout-page .hero-main {
  grid-template-areas:
    "copy visual"
    "ticker ticker"
    "panel panel"
    "actions actions";
}

body.element-layout-page .hero-ticker-row .ticker + .ticker {
  border-top: 1px solid #d8e1e7;
}

@media (max-width: 760px) {
  body.element-layout-page .hero-ticker-row {
    width: auto !important;
    max-width: none;
  }
}

body.element-layout-page .hero-mobile-ticker-row {
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid #d8e1e7;
}

body.element-layout-page .hero-mobile-ticker-row .ticker {
  min-height: 82px;
  border-top: 0;
}

/* Lesbare Beschriftungen in allen 50/50-Materialkarten. */
body.element-layout-page .hero-material-thumbs .hero-material-thumb-oxide figcaption,
body.element-layout-page .hero-material-thumbs .hero-material-thumb-drum figcaption,
body.element-layout-page .hero-material-thumbs .hero-material-thumb-split figcaption {
  font-size: 12.5px;
  line-height: 1.2;
}

body.element-layout-page .hero-material-thumb-oxide figcaption small,
body.element-layout-page .hero-material-caption-primary {
  font-size: 9.5px;
  line-height: 1.12;
}

@media (max-width: 1023px) {
  body.element-layout-page .hero-main {
    grid-template-areas:
      "mobileticker"
      "copy"
      "visual"
      "ticker"
      "panel"
      "actions";
  }
}

@media (max-width: 760px) {
  body.element-layout-page .hero-material-thumbs .hero-material-thumb-oxide figcaption,
  body.element-layout-page .hero-material-thumbs .hero-material-thumb-drum figcaption,
  body.element-layout-page .hero-material-thumbs .hero-material-thumb-split figcaption {
    font-size: 10.5px;
    line-height: 1.16;
  }

  body.element-layout-page .hero-material-thumb-oxide figcaption small,
  body.element-layout-page .hero-material-caption-primary {
    font-size: 8.5px;
  }
}

@media (max-width: 440px) {
  body.element-layout-page .hero-material-thumbs .hero-material-thumb-oxide figcaption,
  body.element-layout-page .hero-material-thumbs .hero-material-thumb-drum figcaption,
  body.element-layout-page .hero-material-thumbs .hero-material-thumb-split figcaption {
    font-size: 11px;
  }

  body.element-layout-page .hero-material-thumb-oxide figcaption small,
  body.element-layout-page .hero-material-caption-primary {
    font-size: 9px;
  }
}

/* Die blaue erste Zeile ist eine gleichwertige Überschrift, keine kleine Oberzeile. */
body.element-layout-page .hero-material-thumb-oxide figcaption small,
body.element-layout-page .hero-material-caption-primary {
  font-size: inherit;
  line-height: inherit;
}

/* Präzisere, kräftige Hero-Typografie mit einer einzigen hellblauen Akzentfarbe. */
body.element-layout-page .hero-copy h1 {
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -2px;
}

body.element-layout-page .hero-title-main {
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: inherit;
}

body.element-layout-page .hero-title-action {
  color: #b8e7fa;
  font-weight: 700;
  line-height: 1.12;
}

body.element-layout-page .hero-copy > p {
  color: #dceaf0;
  font-size: 16px;
  line-height: 1.5;
}

body.element-layout-page .hero-copy > p strong {
  color: #fff;
  font-weight: 650;
}

body.element-layout-page .hero-intro-separator {
  width: 1px;
  height: 18px;
  margin: 0 12px;
  overflow: hidden;
  color: transparent;
  background: #b9cdd6;
  font-size: 0;
  line-height: 0;
  vertical-align: -3px;
  opacity: 0.78;
}

body.element-layout-page .live-pill,
body.element-layout-page .date-stamp {
  font-weight: 750;
}

body.element-layout-page .hero-contact-label {
  font-size: 15px;
  font-weight: 700;
}

body.element-layout-page .hero-contact-link {
  font-size: 15px;
  font-weight: 750;
}

/* Hauptbild-Beschriftung und vier 50/50-Karten proportional besser lesbar. */
body.element-layout-page .hero-material-label strong {
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
}

body.element-layout-page .hero-material-label small {
  margin-top: 2px;
  font-size: 10.5px;
  line-height: 1.3;
}

body.element-layout-page .hero-material-thumbs .hero-material-thumb-oxide figcaption,
body.element-layout-page .hero-material-thumbs .hero-material-thumb-drum figcaption,
body.element-layout-page .hero-material-thumbs .hero-material-thumb-split figcaption {
  color: #f7fbfd;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 760px) {
  body.element-layout-page .hero-copy h1,
  body.element-layout-page .hero-title-main {
    letter-spacing: -1.35px;
  }

  body.element-layout-page .hero-copy > p {
    font-size: 15px;
    line-height: 1.5;
  }

  body.element-layout-page .hero-contact-label,
  body.element-layout-page .hero-contact-link {
    font-size: 14px;
  }

  body.element-layout-page .hero-material-label strong {
    font-size: 13px;
  }

  body.element-layout-page .hero-material-label small {
    font-size: 9.5px;
  }

  body.element-layout-page .hero-material-thumbs .hero-material-thumb-oxide figcaption,
  body.element-layout-page .hero-material-thumbs .hero-material-thumb-drum figcaption,
  body.element-layout-page .hero-material-thumbs .hero-material-thumb-split figcaption {
    font-size: 12px;
  }
}

/* Ruhige, eindeutig abgestufte Versand- und Rechneraktionen. */
body.element-layout-page .shipping-calculator-entry {
  grid-template-columns: minmax(210px, 0.78fr) minmax(360px, 1.22fr);
  gap: 12px 22px;
  min-height: 108px;
  padding: 20px 22px;
}

body.element-layout-page .shipping-calculator-copy {
  display: grid;
  align-content: center;
  gap: 5px;
  min-width: 0;
}

body.element-layout-page .shipping-calculator-copy strong {
  color: #fff;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.22;
}

body.element-layout-page .shipping-calculator-copy small {
  color: #dceaf0;
  font-size: 13px;
  line-height: 1.4;
}

body.element-layout-page .shipping-calculator-entry .hero-cta-buttons {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: center;
  width: 100%;
  min-width: 0;
}

body.element-layout-page .shipping-calculator-entry .hero-cta-buttons .btn {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
}

body.element-layout-page .shipping-calculator-entry #scroll-materials {
  height: 48px;
  max-height: 48px;
  box-sizing: border-box;
  color: #fff !important;
  background: #08649a !important;
  border: 1px solid #08649a !important;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: none !important;
}

body.element-layout-page .shipping-calculator-entry #scroll-materials:hover {
  color: #fff !important;
  background: #075f93 !important;
  border-color: #075f93 !important;
  box-shadow: 0 8px 18px rgba(0, 37, 66, 0.22) !important;
  transform: translateY(-1px);
}

body.element-layout-page .shipping-calculator-entry #scroll-materials::before {
  display: none !important;
}

body.element-layout-page .shipping-calculator-entry .hero-whatsapp-secondary,
body.element-layout-page .shipping-calculator-entry .hero-whatsapp-secondary:not(.primary) {
  height: 48px;
  max-height: 48px;
  box-sizing: border-box;
  color: #176b45;
  background: #fff;
  border: 1px solid #2a8a5d;
  box-shadow: none;
}

body.element-layout-page .shipping-calculator-entry .hero-whatsapp-secondary:hover {
  color: #125d3b;
  background: #f3fbf7;
  border-color: #176b45;
  box-shadow: 0 7px 16px rgba(23, 107, 69, 0.14);
  transform: translateY(-1px);
}

body.element-layout-page .hero-whatsapp-secondary svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

body.element-layout-page .shipping-dhl-copy strong {
  font-size: 17px;
}

body.element-layout-page .shipping-dhl-copy small {
  font-size: 13px;
  line-height: 1.35;
}

@media (max-width: 900px) {
  body.element-layout-page .shipping-calculator-entry {
    grid-template-columns: minmax(0, 1fr);
  }

  body.element-layout-page .shipping-calculator-entry .hero-cta-buttons {
    grid-column: 1;
    grid-row: auto;
    margin-top: 6px;
  }
}

@media (max-width: 560px) {
  body.element-layout-page .shipping-calculator-entry .hero-cta-buttons {
    grid-template-columns: 1fr;
  }

  body.element-layout-page .shipping-calculator-copy strong,
  body.element-layout-page .shipping-dhl-copy strong {
    font-size: 16px;
  }

  body.element-layout-page .shipping-calculator-copy small,
  body.element-layout-page .shipping-dhl-copy small {
    font-size: 12.5px;
  }
}

/* Sichtbarer Abstand unter dem dunklen Hero sowie klar geordnetes Kontaktfeld. */
body.element-layout-page .hero-actions {
  padding-top: 32px;
}

body.element-layout-page .hero-contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 11px;
  width: 100%;
  max-width: 560px;
  padding: 15px 18px 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
}

body.element-layout-page .hero-contact-label {
  width: 100%;
  justify-content: flex-start;
}

body.element-layout-page .hero-contact-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(132px, 0.75fr);
  gap: 10px;
  width: 100%;
}

body.element-layout-page .hero-contact-link {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  box-sizing: border-box;
}

@media (max-width: 560px) {
  body.element-layout-page .hero-actions {
    padding-top: 24px;
  }

  body.element-layout-page .hero-contact-strip {
    gap: 10px;
    padding: 14px;
  }

  body.element-layout-page .hero-contact-actions {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Datumsstand, Kontaktaktionen und Ablaufüberschrift nach Nutzerfreigabe ausrichten. */
body.element-layout-page .hero-contact-strip {
  gap: 0;
}

body.element-layout-page .market-head > strong {
  justify-self: stretch;
  text-align: center;
}

@media (min-width: 901px) {
  body.element-layout-page .hero-copy {
    align-self: stretch;
    padding-top: 38px;
  }

  body.element-layout-page .live-row {
    transform: none;
  }
}

/* Zweistufige lokale Feedback- und Meckerbox anstelle der doppelten Hero-CTAs. */
body.element-layout-page .shipping-feedback-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 20px;
  align-items: center;
  min-width: 0;
  min-height: 108px;
  padding: 20px 22px;
  color: #fff;
  background: #3d5064;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  box-shadow: 0 14px 36px rgba(1, 13, 28, 0.16);
  box-sizing: border-box;
}

body.element-layout-page .shipping-feedback-copy {
  display: block;
  min-width: 0;
}

body.element-layout-page .shipping-feedback-copy strong {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 760;
  line-height: 1.25;
}

body.element-layout-page .feedback-toggle,
body.element-layout-page .feedback-next {
  min-height: 48px;
  padding: 10px 18px;
  color: #fff;
  background: #08649a;
  border: 1px solid #08649a;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: none;
}

body.element-layout-page .feedback-toggle:hover,
body.element-layout-page .feedback-next:hover {
  color: #fff;
  background: #075f93;
  border-color: #075f93;
  box-shadow: 0 8px 18px rgba(0, 37, 66, 0.22);
  transform: translateY(-1px);
}

body.element-layout-page .feedback-inline-panel[hidden],
body.element-layout-page .feedback-contact-fields[hidden],
body.element-layout-page .feedback-success[hidden],
body.element-layout-page #feedback-choice-step[hidden] {
  display: none !important;
}

body.element-layout-page .feedback-inline-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 10px;
  align-items: end;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

body.element-layout-page .feedback-inline-panel label {
  grid-column: 1 / -1;
  color: #e9f5f8;
  font-size: 13px;
  font-weight: 700;
}

body.element-layout-page .feedback-inline-panel textarea {
  width: 100%;
  min-height: 84px;
  max-height: 180px;
  resize: vertical;
  padding: 11px 12px;
  color: #102f38;
  background: #fff;
  border: 1px solid #c9d8e0;
  border-radius: 10px;
  font: inherit;
  line-height: 1.45;
  box-sizing: border-box;
}

body.element-layout-page .feedback-next {
  min-width: 112px;
}

body.element-layout-page .feedback-modal {
  width: min(620px, 100%);
}

body.element-layout-page .feedback-preferences-form {
  display: grid;
  gap: 18px;
}

body.element-layout-page .feedback-question {
  margin: 0;
  color: var(--element-ink);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.4;
}

body.element-layout-page .feedback-surprise {
  margin: 8px 0 0;
  color: #075f93;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

body.element-layout-page .feedback-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

body.element-layout-page .feedback-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 15px;
  background: #f5f8fa;
  border: 1px solid #d7e2e8;
  border-radius: 12px;
  cursor: pointer;
}

body.element-layout-page .feedback-choice:has(input:checked) {
  background: #eef7fb;
  border-color: #08649a;
  box-shadow: 0 0 0 2px rgba(8, 100, 154, 0.12);
}

body.element-layout-page .feedback-choice input {
  margin: 3px 0 0;
  accent-color: #08649a;
}

body.element-layout-page .feedback-choice strong,
body.element-layout-page .feedback-choice small {
  display: block;
}

body.element-layout-page .feedback-choice strong {
  color: var(--element-ink);
  font-size: 15px;
}

body.element-layout-page .feedback-choice small {
  margin-top: 3px;
  color: #607381;
  font-size: 12px;
  line-height: 1.35;
}

body.element-layout-page .feedback-contact-fields {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid #dbe5ea;
  border-radius: 12px;
}

body.element-layout-page .feedback-preview-note {
  margin: 14px 0 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
}

body.element-layout-page .feedback-modal-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

body.element-layout-page .feedback-modal-actions .btn {
  min-height: 46px;
  min-width: 170px;
}

body.element-layout-page .feedback-success {
  padding: 8px 0 2px;
  text-align: center;
}

body.element-layout-page .feedback-success strong {
  display: block;
  color: #075f93;
  font-size: 22px;
}

body.element-layout-page .feedback-success p {
  margin: 10px auto 18px;
  max-width: 430px;
  color: #526875;
  line-height: 1.5;
}

@media (max-width: 900px) {
  body.element-layout-page .shipping-feedback-entry {
    grid-template-columns: minmax(0, 1fr);
  }

  body.element-layout-page .feedback-toggle {
    width: 100%;
  }
}

@media (max-width: 560px) {
  body.element-layout-page .shipping-feedback-entry {
    padding: 18px;
  }

  body.element-layout-page .shipping-feedback-copy strong {
    font-size: 17px;
  }

  body.element-layout-page .feedback-inline-panel,
  body.element-layout-page .feedback-choice-grid,
  body.element-layout-page .feedback-contact-fields {
    grid-template-columns: minmax(0, 1fr);
  }

  body.element-layout-page .feedback-next,
  body.element-layout-page .feedback-modal-actions .btn {
    width: 100%;
  }
}

/* Präzise Hero- und Ablaufkorrekturen nach visueller Nutzerprüfung. */
body.element-layout-page .market-copy > strong {
  justify-self: start;
  margin: 0;
  color: var(--element-blue);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.35;
  text-align: left;
  transform: translateY(-5px);
}

body.element-layout-page .hero-material-board {
  gap: 18px;
}

body.element-layout-page .live-course-chart {
  width: 153px;
}

@media (min-width: 901px) {
  body.element-layout-page .hero-copy {
    align-self: center;
    padding: clamp(52px, 6vw, 82px) 24px clamp(46px, 5vw, 70px) clamp(38px, 5vw, 70px);
  }

  body.element-layout-page .live-row {
    transform: translateY(-54px);
  }

  body.element-layout-page .market-head {
    grid-template-rows: minmax(0, 1fr);
    align-items: stretch;
  }

  body.element-layout-page .market-copy {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    align-self: center;
    gap: 12px;
    min-width: 0;
  }

  body.element-layout-page .market-copy .market-steps {
    grid-column: 1;
    grid-row: 2;
  }

  body.element-layout-page .hero-video-row {
    grid-row: 1;
  }
}

@media (max-width: 900px) {
  body.element-layout-page .market-copy {
    display: grid;
    gap: 12px;
    min-width: 0;
  }

  body.element-layout-page .market-copy > strong {
    font-size: clamp(13px, 4vw, 16px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
}

/* Finale Priorität nach allen historischen Komponentenregeln. */
body.element-layout-page .shipping-dhl-copy small {
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}

body.element-layout-page :is(
  .btn:not(.icon),
  .element-header-cta,
  .element-footer-button,
  .shipping-dhl-button
) {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

body.element-layout-page :is(
  .btn:not(.icon),
  .element-header-cta,
  .element-footer-button,
  .shipping-dhl-button
):hover {
  box-shadow: 0 16px 34px rgba(3, 32, 63, 0.28), 0 0 0 3px rgba(105, 190, 255, 0.1);
  transform: translateY(-2px);
}

body.element-layout-page .feedback-toggle {
  gap: 12px;
  white-space: nowrap;
}

/* Ablaufmodul: schmale, mittige Einheit mit Text oberhalb des Videos. */
body.element-layout-page .market-panel {
  width: min(464px, calc(100% - 112px));
  max-width: 464px;
  margin: 16px 53px 24px;
  justify-self: start;
}

body.element-layout-page .market-head {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  align-items: start;
  padding: 24px 22px;
}

body.element-layout-page .market-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  width: 100%;
  min-width: 0;
}

body.element-layout-page .market-copy > strong {
  font-size: 18px;
  line-height: 1.25;
  white-space: normal;
  transform: none;
}

body.element-layout-page .hero-video-row {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  min-width: 0;
  margin-top: 0;
}

body.element-layout-page .es-mini-video {
  width: 100%;
  max-width: 100%;
  min-height: 0;
}

@media (max-width: 900px) {
  body.element-layout-page .market-panel {
    width: min(464px, calc(100% - 36px));
    margin: 16px 18px 24px;
  }

  body.element-layout-page .market-head {
    padding: 22px 20px;
  }

  body.element-layout-page .market-copy > strong {
    font-size: clamp(15px, 4vw, 16px);
  }
}

@media (max-width: 440px) {
  body.element-layout-page .market-head {
    padding: 20px 16px;
  }
}

/* Großer Fotoblock und vier 50/50-Karten: identische Breite und feste rechte Kante. */
body.element-layout-page .hero-material-main,
body.element-layout-page .hero-material-thumbs {
  width: 90%;
  justify-self: end;
}

body.element-layout-page .hero-material-main {
  min-height: 0;
}

body.element-layout-page .hero-visual .hero-material-main > img {
  height: auto;
  min-height: 0;
  transform: none;
}

body.element-layout-page .hero-visual .hero-material-thumbs > figure > img {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  height: 100%;
}

body.element-layout-page .hero-material-thumbs > figure > figcaption {
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  width: auto;
  max-width: none;
}

/* Preisbänder: Material, Preis und Trend stehen kompakt in genau einer Zeile. */
body.element-layout-page .hero-ticker-row .ticker {
  min-height: 62px;
}

body.element-layout-page .hero-ticker-row .ticker-track {
  align-items: center;
  padding: 6px 0;
}

body.element-layout-page .hero-ticker-row .ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  min-width: max-content;
  max-width: none;
  padding: 8px 10px;
}

body.element-layout-page .hero-ticker-row .ticker-item > b {
  flex: 0 0 auto;
  min-width: max-content;
  max-width: none;
  overflow: visible;
  text-overflow: clip;
}

body.element-layout-page .hero-ticker-row .ticker-price,
body.element-layout-page .hero-ticker-row .ticker-trend {
  flex: 0 0 auto;
}

body.element-layout-page .hero-ticker-row .ticker-action-item {
  min-height: 44px;
}

/* Das Up-Band bleibt als Teil des fixierten Headers direkt oberhalb des Heros sichtbar. */
body.element-layout-page .element-site-header .hero-upper-ticker-row {
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 0;
}

body.element-layout-page {
  padding-top: 206px;
}

body.element-layout-page .element-site-header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
}

@media (max-width: 1023px) {
  body.element-layout-page {
    padding-top: 158px;
  }
}

/* Desktop-Abgleich 2026-09-02: Hero, Preisbaender und Footer in der
   ruhigen Gestaltungssprache der bestehenden Elementseiten. Die
   vorhandene Seiten-/Shellbreite sowie alle Inhalte bleiben unveraendert. */
@media (max-width: 0px) {
  body.element-layout-page .hero {
    overflow: hidden;
    color: #fff;
    background:
      radial-gradient(circle at 86% 18%, rgba(0, 159, 227, 0.18), transparent 32%),
      radial-gradient(circle at 18% 100%, rgba(59, 130, 246, 0.12), transparent 36%),
      #111827;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  body.element-layout-page .hero::before,
  body.element-layout-page .hero::after {
    display: none;
  }

  body.element-layout-page .hero-main {
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
    column-gap: 0;
    background: transparent;
  }

  body.element-layout-page .hero-copy {
    align-self: stretch;
    padding: 58px 34px 58px 42px;
    background: transparent;
  }

  body.element-layout-page .hero-copy-head {
    gap: 28px;
  }

  body.element-layout-page .live-row {
    transform: none;
  }

  body.element-layout-page .live-pill {
    min-height: 32px;
    padding: 0 13px;
    color: #dceaf0;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    box-shadow: none;
  }

  body.element-layout-page .hero-copy h1 {
    max-width: 560px;
    margin: 0;
    color: #fff;
    font-size: clamp(52px, 4.85vw, 62px);
    font-weight: 400;
    line-height: 0.99;
    letter-spacing: -0.052em;
  }

  body.element-layout-page .hero-title-main {
    color: #fff;
    font: inherit;
    letter-spacing: inherit;
  }

  body.element-layout-page .hero-title-action {
    margin-top: 20px;
    color: #b8e7fa;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.025em;
  }

  body.element-layout-page .hero-benefits {
    gap: 13px;
    margin: 34px 0 0;
  }

  body.element-layout-page .hero-benefits li {
    color: #dceaf0;
    font-size: 16px;
    line-height: 1.4;
  }

  body.element-layout-page .hero-benefits li::before {
    color: #b8e7fa;
  }

  body.element-layout-page .hero-copy > p {
    gap: 14px;
    margin-top: 34px;
    color: #b9cdd6;
    font-size: 15px;
    line-height: 1.5;
  }

  body.element-layout-page .hero-intro-separator {
    width: 1px;
    height: 18px;
    overflow: hidden;
    color: transparent;
    background: rgba(255, 255, 255, 0.34);
  }

  body.element-layout-page .hero-contact-strip {
    max-width: 560px;
    margin-top: 30px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow: none;
  }

  body.element-layout-page .hero-contact-link {
    min-height: 48px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
    border-radius: 10px;
    box-shadow: none;
  }

  body.element-layout-page .hero-contact-link.whatsapp {
    background: #176b45;
    border-color: #2a8a5d;
  }

  body.element-layout-page .hero-visual {
    padding: 42px 42px 42px 18px;
    background: transparent;
  }

  body.element-layout-page .hero-material-main {
    border-color: rgba(255, 255, 255, 0.56);
    border-radius: 18px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  }

  body.element-layout-page .hero-material-thumbs > figure {
    border-color: rgba(255, 255, 255, 0.56);
    border-radius: 13px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  }

  body.element-layout-page .market-panel,
  body.element-layout-page .shipping-dhl-button,
  body.element-layout-page .shipping-feedback-entry {
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 0px) {
/* Beide Laufbaender bleiben an ihren bisherigen Positionen. Die Felder
   werden wie auf den Elementseiten als eine ruhige, durchgehende Zeile
   gezeigt; die inhaltlich berechneten Breiten bleiben dynamisch. */
body.element-layout-page .hero-ticker-row {
  color: #fff;
  background: #073b6f;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

body.element-layout-page .element-site-header .hero-upper-ticker-row {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: max(32px, calc((100% - 1360px) / 2));
  box-sizing: border-box;
}

body.element-layout-page .hero-ticker-row .ticker {
  min-height: 64px;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.element-layout-page .hero-ticker-row .ticker-lead-cell {
  min-width: 164px;
  padding: 0 26px;
  color: #fff;
  background: transparent;
  border: 0;
  border-right: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 0;
  box-shadow: none;
}

body.element-layout-page .hero-ticker-row .ticker-lead-cell strong {
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

body.element-layout-page .hero-ticker-row .ticker-status-graphic {
  width: 48px;
  opacity: 0.9;
}

body.element-layout-page .hero-ticker-row .ticker-window {
  background: transparent;
}

body.element-layout-page .hero-ticker-row .ticker-track {
  gap: 0;
  padding: 0;
}

body.element-layout-page .hero-ticker-row .ticker-item,
body.element-layout-page .hero-ticker-row .ticker-action-item {
  min-height: 64px;
  padding: 0 28px;
  color: #fff;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0;
  box-shadow: none;
}

body.element-layout-page .hero-ticker-row .ticker-item > b,
body.element-layout-page .hero-ticker-row .ticker-price {
  color: #fff;
}

body.element-layout-page .hero-ticker-row .ticker-item > b {
  font-size: 13px;
  font-weight: 760;
}

body.element-layout-page .hero-ticker-row .ticker-price {
  font-size: 13px;
  font-weight: 850;
}

body.element-layout-page .hero-ticker-row .ticker-trend {
  padding-left: 4px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.element-layout-page .hero-ticker-row .ticker-trend.market-up {
  color: #86efac;
}

body.element-layout-page .hero-ticker-row .ticker-trend.market-down {
  color: #fca5a5;
}

}

@media (min-width: 1024px) {

/* Footer: gleiche Hierarchie wie die Elementseiten, mit den vorhandenen
   Texten und Links dieses Preisportals. */
body.element-layout-page .element-site-footer {
  color: #9ca3af;
  background: #030712;
}

body.element-layout-page .element-site-footer::before {
  display: none;
}

body.element-layout-page .element-footer-cta {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

body.element-layout-page .element-footer-cta-inner {
  display: flex;
  max-width: 900px;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

body.element-layout-page .element-footer-eyebrow {
  margin-bottom: 2px;
  color: #7dd3fc;
  font-size: 12px;
}

body.element-layout-page .element-footer-cta h2 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(46px, 4.4vw, 56px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

body.element-layout-page .element-footer-cta p {
  max-width: 720px;
  margin-top: 0;
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.65;
}

body.element-layout-page .element-footer-button {
  min-height: 52px;
  padding: 0 26px;
  background: #075f93;
  border: 1px solid rgba(125, 211, 252, 0.34);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(0, 95, 147, 0.22);
}

body.element-layout-page .element-footer-main {
  grid-template-columns: 1.28fr 0.98fr 1.04fr 1.16fr;
  gap: 44px;
  padding: 64px 0;
}

body.element-layout-page .element-footer-company p,
body.element-layout-page .element-footer-company address,
body.element-layout-page .element-footer-column a,
body.element-layout-page .element-footer-column span {
  color: #9ca3af;
}

body.element-layout-page .element-footer-column h2 {
  color: #fff;
}

body.element-layout-page .element-footer-column a:hover {
  color: #fff;
}

body.element-layout-page .element-footer-legal {
  border-top-color: rgba(255, 255, 255, 0.09);
}

body.element-layout-page .element-footer-legal-inner {
  min-height: 75px;
  color: #6b7280;
}

body.element-layout-page .element-footer-trust {
  min-height: 53px;
  background: rgba(255, 255, 255, 0.02);
  border-top-color: rgba(255, 255, 255, 0.05);
}

body.element-layout-page .element-footer-trust-inner {
  min-height: 53px;
}
}

/* Nahtloser Lauf: zwei exakt gleich breite Segmente ohne sichtbaren
   Anfang oder Abschluss. Die vorhandene Gestaltung der Baender bleibt. */
body.element-layout-page .ticker-track {
  gap: 0;
}

body.element-layout-page .ticker-loop-probe,
body.element-layout-page .ticker-segment {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding-right: 8px;
}

body.element-layout-page .ticker:hover .ticker-track {
  animation-play-state: running;
}

/* Das Laufband selbst bleibt wie vor der letzten Neugestaltung hell;
   nur das vorhandene Up-/Down-Startfeld behaelt seine dunkle Kennfarbe. */
body.element-layout-page .hero-ticker-row {
  background: #fff;
}

/* Das obere Band sitzt auf dem Desktop exakt in derselben Inhaltsbreite
   und auf derselben Mittelachse wie der Hero. */
@media (min-width: 1024px) {
  body.element-layout-page .element-site-header .hero-upper-ticker-row {
    width: min(1296px, calc(100% - 64px));
    max-width: 1296px;
    margin-inline: auto;
    padding-inline: 0;
  }
}

/* Footer mit demselben blauen Raster, Verlauf und Lichtakzent wie der Hero. */
body.element-layout-page .element-site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 159, 227, 0.19), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(59, 130, 246, 0.15), transparent 32%),
    linear-gradient(135deg, #04182f 0%, #073b6f 54%, #0b4f8a 100%);
}

body.element-layout-page .element-site-footer::before {
  display: block;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
}

body.element-layout-page .element-footer-search {
  margin: 26px auto 0;
}

body.element-layout-page .element-footer-search input {
  height: 40px;
  padding-right: 48px;
  font-size: 13px;
}

body.element-layout-page .element-footer-search button {
  top: 4px;
  right: 4px;
  width: 32px;
  height: 32px;
}

/* Unterer Preisbereich: kompakte Desktop-Tabelle mit seitlichem Rechner.
   Header, Hero, Preisbaender, Ablauf, Aktionskarten und Footer bleiben unberuehrt. */
html:has(body.element-layout-page),
body.element-layout-page {
  overflow-x: clip;
  overflow-y: visible;
}

body.element-layout-page .price-cell.is-pending .price {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  white-space: normal;
}

body.element-layout-page .element-footer-brand {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: end;
  column-gap: 12px;
}

body.element-layout-page .element-footer-brand .element-brand-mark {
  grid-column: 1;
  grid-row: 1 / 3;
}

body.element-layout-page .element-footer-brand-globe {
  grid-column: 2;
  grid-row: 1;
  display: block;
  width: 102px;
  height: auto;
  margin: 0 0 -2px -10px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

body.element-layout-page .element-footer-brand-copy {
  grid-column: 2;
  grid-row: 2;
}

/* Kompakte Typografie innerhalb der Preistabelle. */
body.element-layout-page .category-list .category-title h2 {
  font-size: 18px;
  font-weight: 700;
}

body.element-layout-page .category-list .category-title p {
  font-size: 12px;
  line-height: 1.4;
}

body.element-layout-page .category-list .count-chip {
  font-size: 11px;
}

body.element-layout-page .category-list .material-name strong {
  font-size: 13px;
  font-weight: 700;
}

body.element-layout-page .category-list .article-code {
  font-size: 10px;
  font-weight: 500;
}

body.element-layout-page .category-list .price {
  font-size: 16px;
  font-weight: 400;
}

body.element-layout-page .category-list .price-cell.is-pending .price {
  font-size: 14px;
  font-weight: 650;
}

body.element-layout-page .category-list :is(.price-trend-value, .trend) {
  font-size: 11px;
  font-weight: 600;
}

body.element-layout-page .category-list .material-row .quick-calc input,
body.element-layout-page .category-list .material-row .fixed-unit {
  font-size: 12px;
}

body.element-layout-page .category-list .row-actions .btn {
  font-size: 11px;
}

body.element-layout-page .category-list [data-add-mode="calculator"] {
  font-weight: 400;
  white-space: nowrap;
}

body.element-layout-page .category-service-note {
  width: fit-content;
  margin-top: 8px;
  padding: 6px 10px;
  border: 1px solid #b9dff2;
  border-radius: 7px;
  background: #eaf6fd;
  color: #075f93;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

body.element-layout-page .material-table-head {
  display: none;
}

body.element-layout-page .wishlist-head {
  border-bottom: 1px solid #d5e4eb;
  background: #f1f7fa;
  color: var(--element-ink);
}

body.element-layout-page .wishlist-head .wishlist-title small {
  color: #557381;
}

body.element-layout-page .wishlist-head .wishlist-title strong {
  color: var(--element-blue);
}

body.element-layout-page .wishlist-head .wishlist-count {
  border-color: #bad5e2;
  background: #ffffff;
  color: var(--element-blue);
}

body.element-layout-page #open-inquiry:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

body.element-layout-page #open-inquiry:disabled::before {
  display: none;
}

body.element-layout-page .category-list :is(.category-expand-button, .category-expand-note) {
  font-size: 11px;
}

@media (min-width: 1180px) {
  body.element-layout-page .main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 360px);
    gap: 22px;
    align-items: start;
    margin-top: 34px;
  }

  body.element-layout-page #materials-area {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  body.element-layout-page .wishlist-sticky-column {
    position: sticky;
    top: 222px;
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    align-self: start;
  }

  body.element-layout-page .wishlist {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(110px, 1fr) auto;
    width: 100%;
    min-width: 0;
    min-height: 0;
    max-height: calc(100vh - 238px);
    margin: 0;
    overflow: hidden;
  }

  body.element-layout-page .wishlist-head,
  body.element-layout-page .wishlist-body,
  body.element-layout-page .wishlist-summary {
    grid-column: 1;
    min-width: 0;
  }

  body.element-layout-page .wishlist-head {
    grid-row: 1;
    min-height: 96px;
    padding: 22px;
  }

  body.element-layout-page .wishlist-head .wishlist-title strong {
    font-size: 20px;
    font-weight: 750;
    line-height: 1.12;
  }

  body.element-layout-page .wishlist-count {
    min-width: 34px;
    min-height: 34px;
  }

  body.element-layout-page .wishlist-body {
    grid-row: 2;
    min-height: 110px;
    max-height: none;
    padding: 12px;
    overflow: auto;
    border-right: 0;
    border-bottom: 1px solid #e5ecef;
  }

  body.element-layout-page .wish-empty {
    min-height: 86px;
    padding: 14px;
  }

  body.element-layout-page .wishlist-summary {
    grid-row: 3;
    gap: 12px;
    padding: 20px;
  }

  body.element-layout-page .total-line {
    gap: 8px;
  }

  body.element-layout-page .total-label span {
    font-size: 14px;
  }

  body.element-layout-page .total-label small {
    max-width: 180px;
    font-size: 11px;
  }

  body.element-layout-page .total-line strong {
    font-size: 24px;
  }

  body.element-layout-page .summary-actions,
  body.element-layout-page .wishlist:has(.wish-empty) .summary-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  body.element-layout-page .summary-actions #clear-wishlist {
    grid-column: 1;
  }

  body.element-layout-page .toolbar {
    grid-template-columns: minmax(210px, 1.45fr) minmax(145px, 0.78fr) minmax(145px, 0.78fr);
    gap: 12px;
    padding: 18px;
  }

  body.element-layout-page .toolbar input,
  body.element-layout-page .toolbar select {
    min-height: 44px;
  }

  body.element-layout-page .category-list {
    gap: 30px;
    margin-top: 16px;
  }

  body.element-layout-page .category-panel {
    margin-top: 0;
  }

  body.element-layout-page .category-title {
    padding: 18px 20px 16px;
  }

  body.element-layout-page .category-title h2 {
    font-size: 22px;
    font-weight: 750;
    line-height: 1.2;
  }

  body.element-layout-page .category-title p {
    margin-top: 5px;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.45;
  }

  body.element-layout-page .material-table-head {
    display: grid;
    grid-template-columns: 64px minmax(138px, 1fr) minmax(145px, 0.72fr) minmax(64px, 0.45fr) minmax(159px, 0.67fr);
    gap: 12px;
    align-items: center;
    padding: 9px 14px;
    border-bottom: 1px solid #d9e4e9;
    background: #f4f8fa;
    color: #496572;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  body.element-layout-page .material-table-head .material-head-material {
    grid-column: 1 / 3;
  }

  body.element-layout-page .count-chip {
    font-size: 12px;
  }

  body.element-layout-page .material-row {
    grid-template-columns: 64px minmax(138px, 1fr) minmax(145px, 0.72fr) minmax(235px, 1.12fr);
    grid-template-rows: minmax(48px, auto) minmax(28px, auto);
    gap: 4px 12px;
    min-height: 108px;
    padding: 10px 14px;
  }

  body.element-layout-page .material-row > .material-image {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 62px;
    height: 62px;
  }

  body.element-layout-page .material-row .material-name {
    grid-column: 2;
    grid-row: 1 / 3;
    min-width: 0;
  }

  body.element-layout-page .material-name strong {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.28;
  }

  body.element-layout-page .article-code {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
  }

  body.element-layout-page .price-cell {
    grid-column: 3;
    grid-row: 1;
    min-height: 48px;
    padding: 8px 10px;
  }

  body.element-layout-page .price {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.05;
  }

  body.element-layout-page .material-row > .price-trend-stack {
    grid-column: 3;
    grid-row: 2;
    align-self: center;
    min-width: 0;
  }

  body.element-layout-page .price-trend-value,
  body.element-layout-page .trend {
    font-size: 12px;
    font-weight: 600;
  }

  body.element-layout-page .calc-action-stack {
    grid-column: 4;
    grid-row: 1 / 3;
    gap: 7px;
    align-self: center;
    min-width: 0;
  }

  body.element-layout-page .material-row .quick-calc input {
    min-height: 40px;
    font-size: 13px;
  }

  body.element-layout-page .row-actions {
    grid-template-columns: minmax(64px, 0.55fr) minmax(152px, 1.45fr);
    gap: 7px;
  }

  body.element-layout-page .row-actions .btn {
    min-height: 40px;
    padding-inline: 8px;
    font-size: 12px;
    line-height: 1.14;
  }
}

@media (max-width: 1179px) {
  body.element-layout-page .main-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.element-layout-page #materials-area {
    grid-column: 1;
    grid-row: 1;
  }

  body.element-layout-page .wishlist-sticky-column {
    position: relative;
    top: auto;
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
  }

  body.element-layout-page .wishlist {
    position: relative;
    top: auto;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-height: none;
    margin: 0;
  }
}

/* Responsive-/UX-Korrekturen 2026-09-02: nur Layout, Lesbarkeit und
   Bedienflaechen; Seitenbreite, Gestaltung, Inhalte und Logik bleiben bestehen. */
body.element-layout-page #ablauf,
body.element-layout-page #materials-area {
  scroll-margin-top: 220px;
}

/* Das Laufband wird sauber erst hinter dem festen Up-/Down-Feld beschnitten. */
body.element-layout-page .hero-ticker-row .ticker-lead-cell {
  position: relative;
  z-index: 2;
}

body.element-layout-page .hero-ticker-row .ticker-window {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding-inline-start: 8px;
  contain: paint;
}

/* Footer-Sekundaertexte erhalten auf dem blauen Raster ausreichend Kontrast. */
body.element-layout-page .element-footer-cta p,
body.element-layout-page .element-footer-company p,
body.element-layout-page .element-footer-company address,
body.element-layout-page .element-footer-column a,
body.element-layout-page .element-footer-column span,
body.element-layout-page .element-footer-brand-copy small {
  color: #d7e5eb;
}

body.element-layout-page .element-footer-legal-inner,
body.element-layout-page .element-footer-trust-inner {
  color: #c8dbe3;
}

body.element-layout-page .element-footer-legal a,
body.element-layout-page .element-footer-trust a {
  color: #e2eef2;
}

/* Relevante Bedienflaechen bleiben in allen Zielgroessen mindestens 44px hoch. */
body.element-layout-page :is(
  .btn,
  .element-contact-icon,
  .element-header-cta,
  .hero-contact-link,
  .shipping-dhl-button,
  .element-footer-button,
  .feedback-choice,
  .es-mini-thumb
) {
  min-height: 44px;
}

body.element-layout-page :is(
  .modal-head .btn.icon,
  .es-modal-close,
  .es-modal-controls button
) {
  box-sizing: border-box;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
}

body.element-layout-page .element-footer-search input {
  height: 44px;
}

body.element-layout-page .element-footer-search button {
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
}

body.element-layout-page .element-site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

body.element-layout-page .element-header-search input {
  height: 44px;
}

body.element-layout-page .element-header-search button {
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
}

body.element-layout-page .category-list .material-row .quick-calc input,
body.element-layout-page .category-list .row-actions .btn,
body.element-layout-page .summary-actions .btn {
  min-height: 44px;
}

/* Dialoge und Video muessen oberhalb des fixierten Headers liegen. */
body.element-layout-page .modal-backdrop,
body.element-layout-page #esVideoModal {
  z-index: 1000;
}

@media (max-width: 1023px) {
  body.element-layout-page #ablauf,
  body.element-layout-page #materials-area {
    scroll-margin-top: 174px;
  }

  body.element-layout-page .element-mobile-panel a {
    display: flex;
    min-height: 44px;
    align-items: center;
    box-sizing: border-box;
  }

  body.element-layout-page .element-mobile-panel .element-header-search button {
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
  }
}

/* Ab Tabletbreite wird jede Materialzeile als vollstaendige, flexible Karte
   gestapelt. Dadurch bleibt bei 768px kein Tabelleninhalt rechts abgeschnitten. */
@media (max-width: 900px) {
  body.element-layout-page .category-list .material-row {
    grid-template-columns: 68px minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    gap: 8px 12px;
    align-items: start;
    min-height: 0;
    padding: 14px;
  }

  body.element-layout-page .category-list .material-row > .material-image {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 62px;
    height: 62px;
  }

  body.element-layout-page .category-list .material-row .material-name {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  body.element-layout-page .category-list .material-row > .price-cell {
    grid-column: 2;
    grid-row: 2;
    justify-items: start;
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    text-align: left;
  }

  body.element-layout-page .category-list .material-row > .price-trend-stack {
    grid-column: 2;
    grid-row: 3;
    display: flex;
    min-width: 0;
    align-self: start;
    flex-wrap: wrap;
  }

  body.element-layout-page .category-list .material-row > .calc-action-stack {
    grid-column: 1 / -1;
    grid-row: 4;
    min-width: 0;
    align-self: stretch;
  }

  body.element-layout-page .category-list .row-actions {
    grid-template-columns: minmax(86px, 0.72fr) minmax(0, 1.28fr);
  }
}

@media (max-width: 600px) {
  /* Kategoriebezeichnung und Zaehler kollidieren auf kleinen Displays nicht. */
  body.element-layout-page .category-list .category-title {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 12px;
  }

  body.element-layout-page .category-list .category-title > div {
    width: 100%;
    min-width: 0;
  }

  body.element-layout-page .category-list .category-title :is(h2, p) {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  body.element-layout-page .category-list .count-chip {
    justify-self: start;
    max-width: 100%;
  }

  body.element-layout-page .category-service-note {
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
  }

  /* Rechner-Zwischensumme und Aktionen bilden eine kollisionsfreie Spalte. */
  body.element-layout-page :is(
    .wishlist,
    .wishlist-summary,
    .summary-actions
  ) {
    min-width: 0;
  }

  body.element-layout-page .total-line {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  body.element-layout-page .total-line strong {
    justify-self: start;
    min-width: 0;
    max-width: 100%;
    color: var(--element-blue);
    font-size: clamp(20px, 7vw, 25px);
    text-align: left;
    white-space: nowrap;
  }

  body.element-layout-page .total-line strong.total-long {
    font-size: clamp(18px, 6vw, 22px);
  }

  body.element-layout-page .total-line strong.total-very-long {
    font-size: clamp(16px, 5.4vw, 20px);
  }

  body.element-layout-page .summary-actions,
  body.element-layout-page .wishlist:has(.wish-empty) .summary-actions,
  body.element-layout-page .category-list .row-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  body.element-layout-page .summary-actions #clear-wishlist {
    grid-column: 1;
  }

  /* Lokale Dialoge bleiben vollstaendig im sichtbaren Mobil-Viewport. */
  body.element-layout-page .modal-backdrop {
    box-sizing: border-box;
    align-items: flex-start;
    padding: 8px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  body.element-layout-page .modal {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    margin: 0 auto;
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.element-layout-page .modal-head {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: 14px;
  }

  body.element-layout-page .modal-head > div {
    min-width: 0;
  }

  body.element-layout-page .modal-head h2 {
    max-width: 100%;
    font-size: clamp(18px, 6vw, 22px);
    overflow-wrap: anywhere;
  }

  body.element-layout-page .modal-body {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 14px;
    overflow-x: hidden;
  }

  body.element-layout-page :is(
    .detail-grid,
    .inquiry-grid,
    .feedback-choice-grid,
    .feedback-contact-fields
  ) {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  body.element-layout-page :is(
    .detail-box,
    .tier-overview,
    .tier-table,
    .feedback-choice
  ) {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  body.element-layout-page .tier-overview-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  body.element-layout-page .tier-table-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    padding-inline: 10px;
  }

  body.element-layout-page .tier-table-row :is(span, strong),
  body.element-layout-page .detail-box,
  body.element-layout-page .detail-box :is(p, li, dt, dd) {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  body.element-layout-page .spec-list div {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  body.element-layout-page .spec-list dd {
    text-align: left;
  }

  body.element-layout-page .modal-body :is(
    input:not([type="checkbox"]):not([type="radio"]),
    select,
    textarea
  ) {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  body.element-layout-page .modal-body :is(
    input:not([type="checkbox"]):not([type="radio"]),
    select
  ) {
    min-height: 44px;
  }

  body.element-layout-page :is(.inquiry-actions, .feedback-modal-actions) {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    justify-content: stretch;
  }

  body.element-layout-page :is(.inquiry-actions, .feedback-modal-actions) .btn {
    width: 100%;
  }

  body.element-layout-page #esVideoModal {
    box-sizing: border-box;
    padding: 8px;
    overflow: hidden;
  }

  body.element-layout-page #esVideoModal .es-modal-inner {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    overflow: hidden;
  }

  body.element-layout-page #esVideoModal .es-modal-inner video {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    object-fit: contain;
  }
}

@media (max-width: 440px) {
  /* Die Hauptzeile passt auch bei 320px ohne horizontales Abschneiden. */
  body.element-layout-page .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(30px, 9.4vw, 34px);
    line-height: 1;
    letter-spacing: -1.1px;
    overflow: visible;
    overflow-wrap: normal;
    word-break: normal;
  }

  body.element-layout-page .hero-title-main {
    display: block;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
}
