:root {
  --blue: #31566a;
  --blue-dark: #203f50;
  --blue-soft: #e8f0f4;
  --gold: #c8a45d;
  --white: #ffffff;
  --text: #22313a;
  --muted: #6d7b84;
  --line: #dfe8ed;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand { display: flex; align-items: center; }
.brand-logo { height: 46px; width: auto; display: block; object-fit: contain; }

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f7fafb 45%, #e8f0f4 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -20%;
  width: 70%;
  height: 55%;
  background:
    radial-gradient(circle at 30% 50%, rgba(49,86,106,0.22), transparent 38%),
    radial-gradient(circle at 60% 45%, rgba(200,164,93,0.16), transparent 28%);
  filter: blur(18px);
  opacity: 0.75;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 24px 82px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.04;
  margin: 0 0 24px;
  color: var(--blue-dark);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--blue-dark);
  letter-spacing: -0.03em;
}

h3 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 21px;
}

.lead {
  font-size: 21px;
  color: #42525b;
  max-width: 650px;
  margin-bottom: 34px;
}

.sub { font-size: 19px; color: var(--muted); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 0;
  cursor: pointer;
}

.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--blue); color: white; box-shadow: 0 14px 30px rgba(49,86,106,.22); }
.button.secondary { border: 1px solid var(--blue); color: var(--blue); background: white; }

.hero-card {
  overflow: hidden;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(49,86,106,0.14);
  border-radius: 32px;
  padding: 18px;
  box-shadow: 0 30px 80px rgba(32,63,80,0.15);
}

.product-box {
  min-height: 380px;
  border-radius: 26px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.95), rgba(248,251,252,0.95)),
    radial-gradient(circle at 80% 80%, rgba(49,86,106,0.18), transparent 35%);
  border: 1px solid #e5edf1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.wave {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 12%;
  height: 130px;
  background: linear-gradient(90deg, transparent, rgba(49,86,106,0.14), transparent);
  border-radius: 50%;
  transform: rotate(-7deg);
  filter: blur(2px);
}

.hero-product-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  object-fit: contain;
  border-radius: 22px;
  filter: drop-shadow(0 24px 40px rgba(32,63,80,0.18));
}

section { padding: 86px 24px; }
.container { max-width: 1180px; margin: 0 auto; }
.section-head { max-width: 760px; margin-bottom: 42px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(32,63,80,0.06);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.steps {
  background: var(--blue-dark);
  color: white;
}

.steps h2, .steps h3 { color: white; }
.steps .sub { color: rgba(255,255,255,0.78); }

.step-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 24px 20px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--blue-dark);
  font-weight: 800;
  margin-bottom: 16px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.lux-box {
  border-radius: 30px;
  min-height: 430px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(246,249,250,0.96)),
    linear-gradient(120deg, transparent 55%, rgba(200,164,93,0.18));
  border: 1px solid var(--line);
  box-shadow: 0 24px 64px rgba(32,63,80,0.11);
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.lux-box::before {
  content: "";
  position: absolute;
  left: -20%;
  bottom: 12%;
  width: 130%;
  height: 180px;
  background: radial-gradient(ellipse at center, rgba(49,86,106,0.22), transparent 65%);
  transform: rotate(-9deg);
  opacity: .8;
}

.product-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  display: block;
  margin: 0 auto;
  border-radius: 26px;
  object-fit: cover;
  filter: drop-shadow(0 30px 50px rgba(32,63,80,0.18));
}

.lux-label {
  position: relative;
  z-index: 2;
  color: var(--blue);
  font-size: 30px;
  letter-spacing: -0.02em;
  margin-top: 18px;
  text-align: center;
}

.checklist { display: grid; gap: 16px; }

.check {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 18px;
  background: #f7fafb;
  border: 1px solid var(--line);
}

.check span { color: var(--gold); font-weight: 900; font-size: 20px; }

.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.image-card { padding: 16px; overflow: hidden; }
.image-card img { width: 100%; border-radius: 20px; display: block; }
.premium-text { display: flex; flex-direction: column; justify-content: center; }

.distributor-section { background: linear-gradient(180deg,#f8fbfc 0%,#ffffff 100%); }
.distributor-box {
  background:white;
  border:1px solid var(--line);
  border-radius:34px;
  padding:54px 48px;
  box-shadow:0 20px 60px rgba(32,63,80,0.08);
  text-align:center;
}
.distributor-form {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  max-width:520px;
  margin:0 auto;
}
.distributor-form input {
  width:140px;
  min-height:48px;
  border:1px solid var(--line);
  background:#f8fbfc;
  border-radius:16px;
  padding:0 16px;
  font-size:15px;
  outline:none;
  text-align:center;
  font-weight:600;
  color:var(--blue-dark);
}
.distributor-result { margin:28px auto 0; display:none; max-width:720px; text-align:left; }

.cta {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: white;
  text-align: center;
}
.cta h2 { color: white; }
.cta p { color: rgba(255,255,255,0.8); max-width: 760px; margin: 0 auto 30px; font-size: 19px; }
.cta-button { background: white; color: var(--blue-dark); }

.legal-page .container, .article-page .container { max-width: 900px; }
.article-page h2, .legal-page h2 { margin-top: 42px; }
.article-toc { background:#f8fbfc; border:1px solid var(--line); border-radius:24px; padding:28px; }

footer {
  padding: 40px 24px;
  background: #f7fafb;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

@media (max-width: 900px) {
  .hero-inner, .split { grid-template-columns: 1fr; }
  .grid-3, .step-list { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  section { padding: 64px 22px; }
  .distributor-box { padding: 36px 22px; }
}


.author-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 34px;
  background: linear-gradient(135deg, #ffffff, #f8fbfc);
}

.author-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 25%, #ffffff, #e8f0f4);
  border: 1px solid var(--line);
  color: var(--blue);
  font-weight: 800;
  font-size: 30px;
  box-shadow: 0 14px 30px rgba(32,63,80,0.10);
}

.author-meta a {
  color: var(--blue);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: #ffffff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  background: #ffffff;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.captcha-box {
  background: #f8fbfc;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

@media (max-width: 700px) {
  .author-card { grid-template-columns: 1fr; text-align: center; }
  .author-photo { margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
}


.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: none;
  justify-content: center;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-panel {
  width: min(980px, 100%);
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(49,86,106,0.18);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(32,63,80,0.22);
  backdrop-filter: blur(18px);
  padding: 26px;
}

.cookie-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.cookie-title {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 22px;
}

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

.cookie-options {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.cookie-banner.show-settings .cookie-options {
  display: grid;
}

.cookie-option {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: #f8fbfc;
}

.cookie-option strong {
  display: block;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.cookie-option small {
  color: var(--muted);
  display: block;
  line-height: 1.45;
}

.cookie-option label {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  font-weight: 700;
  color: var(--blue);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.cookie-button {
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 800;
  font: inherit;
}

.cookie-button.primary {
  background: var(--blue);
  color: #fff;
}

.cookie-button.secondary {
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--blue);
}

.cookie-button.ghost {
  background: transparent;
  color: var(--muted);
}

.cookie-link {
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .cookie-header {
    display: block;
  }

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

  .cookie-actions {
    justify-content: stretch;
  }

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


/* Fix: Sicherheitsfrage im hellen Captcha-Feld lesbar */
.captcha-box label {
  color: var(--blue-dark);
}

.captcha-box input {
  color: var(--blue-dark);
}

.cookie-option input,
.captcha-box input {
  accent-color: var(--blue);
}


.author-photo img{
  width:120px;
  height:120px;
  object-fit:cover;
  border-radius:50%;
  display:block;
}
.footer-links button{
  background:none;
  border:none;
  padding:0;
  margin:0;
  color:inherit;
  cursor:pointer;
  font:inherit;
}


.footer-links{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

.footer-links a,
.footer-links button{
  display:inline-flex;
  align-items:center;
  height:24px;
  line-height:24px;
}


/* Gleich hohe Produktdarstellung neben Textblock */
.product-img-equal-height{
  width:100%;
  height:100%;
  min-height:520px;
  object-fit:cover;
  border-radius:26px;
  display:block;
}


/* Produktbereich: linker Bildblock exakt so hoch wie rechter Textblock */
#produkt .split{
  align-items: stretch;
}

#produkt .lux-box{
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#produkt .product-img,
#produkt .product-img-equal-height,
#produkt img[src*="cpap-schlauch-altiair"],
#produkt img[src*="produktbild-altiair-o3-clean"]{
  width: 100%;
  height: 100%;
  min-height: 0;
  flex: 1;
  object-fit: cover;
  border-radius: 26px;
  display: block;
}

#produkt .lux-label{
  flex: 0 0 auto;
}


/* Mobile Menü */
.mobile-menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}

.mobile-menu-toggle span{
  width:22px;
  height:2px;
  background:var(--blue-dark);
  border-radius:999px;
  display:block;
  transition:transform .2s ease, opacity .2s ease;
}

.mobile-menu-toggle.is-open span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2){
  opacity:0;
}

.mobile-menu-toggle.is-open span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px){
  .nav-inner{
    position:relative;
  }

  .mobile-menu-toggle{
    display:flex;
  }

  .nav-links{
    display:none;
    position:absolute;
    top:100%;
    left:16px;
    right:16px;
    margin-top:12px;
    background:rgba(255,255,255,.98);
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:0 18px 50px rgba(32,63,80,.16);
    padding:16px;
    flex-direction:column;
    gap:4px;
    color:var(--blue-dark);
  }

  .nav-links.is-open{
    display:flex;
  }

  .nav-links a{
    padding:13px 14px;
    border-radius:14px;
  }

  .nav-links a:hover{
    background:#f8fbfc;
  }
}


.distributor-result .distributor-card{
  border-top:1px solid var(--line);
  padding-top:18px;
  margin-top:18px;
}

.distributor-result .distributor-card:first-of-type{
  border-top:0;
  padding-top:0;
  margin-top:0;
}


.contact-status-message{
  margin:0 auto 22px;
  max-width:760px;
  border-radius:18px;
  padding:16px 20px;
  font-weight:700;
  text-align:center;
}

.contact-status-message.success{
  background:#eaf8ef;
  border:1px solid #9fd3af;
  color:#1e5a32;
}

.contact-status-message.error{
  background:#fff0f0;
  border:1px solid #e0a5a5;
  color:#8a1f1f;
}


/* Produktbild auf der Startseite größer darstellen */
#produkt .product-img-equal-height,
#produkt img[src*="produktbild-altiair-o3-clean"]{
  transform: scale(1.08);
  transform-origin: center center;
}

#produkt .lux-box{
  overflow:hidden;
}


/* Größere Produktbox für harmonischen Abschluss mit Buttons */
#produkt .split{
  grid-template-columns: 1.15fr 1fr;
  gap: 42px;
}

#produkt .lux-box{
  min-height: 760px;
  border-radius: 34px;
}

#produkt .product-img-equal-height,
#produkt img[src*="produktbild-altiair-o3-clean"]{
  transform: scale(1.14);
}

@media (max-width: 980px){
  #produkt .split{
    grid-template-columns:1fr;
  }

  #produkt .lux-box{
    min-height: 560px;
  }
}


/* Exakte Ausrichtung Produktbox zur rechten Content-Höhe */
#produkt .split{
  display:grid;
  grid-template-columns:1.18fr 1fr;
  align-items:stretch;
  gap:48px;
}

#produkt .split > div:first-child{
  height:100%;
}

#produkt .lux-box{
  height:100%;
  min-height:860px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  overflow:hidden;
  padding-bottom:0;
}

#produkt .product-img-equal-height,
#produkt img[src*="produktbild-altiair-o3-clean"]{
  width:100%;
  height:100%;
  flex:1;
  object-fit:contain;
  transform:scale(1.22);
  transform-origin:center center;
  margin-bottom:-18px;
}

#produkt .lux-label{
  margin-bottom:12px;
}

@media (max-width:980px){
  #produkt .split{
    grid-template-columns:1fr;
  }

  #produkt .lux-box{
    min-height:620px;
  }

  #produkt .product-img-equal-height,
  #produkt img[src*="produktbild-altiair-o3-clean"]{
    transform:scale(1.1);
    margin-bottom:0;
  }
}


/* Mobile Fix: Hygieneprozess nicht abschneiden */
@media (max-width: 900px){
  .steps{
    overflow: hidden;
  }

  .step-list{
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 18px;
    width: 100%;
    overflow: visible;
  }

  .step{
    width: 100%;
    min-width: 0;
  }

  .steps h2{
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.12;
    word-break: normal;
  }
}

body{
  overflow-x: hidden;
}


.language-switcher{
  position:relative;
  display:inline-flex;
  align-items:center;
}

.language-button{
  min-height:34px;
  padding:0 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  color:var(--blue-dark);
  font-weight:800;
  cursor:pointer;
}

.language-menu{
  display:none;
  position:absolute;
  right:0;
  top:calc(100% + 10px);
  min-width:150px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:0 16px 45px rgba(32,63,80,.16);
  padding:8px;
  z-index:100;
}

.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu{
  display:grid;
}

.language-menu a{
  padding:10px 12px;
  border-radius:12px;
  color:var(--blue-dark);
}

.language-menu a:hover,
.language-menu a.active{
  background:#f8fbfc;
  color:var(--blue);
}

@media (max-width:900px){
  .language-switcher{
    width:100%;
    padding:10px 14px;
  }

  .language-menu{
    position:static;
    display:grid;
    margin-top:10px;
    box-shadow:none;
  }
}


/* Fix: Sprachmenü bleibt anklickbar */
.language-switcher{
  position:relative;
  padding-bottom:12px;
  margin-bottom:-12px;
}

.language-menu{
  top:100%;
  margin-top:0;
  pointer-events:auto;
}

.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu,
.language-switcher.is-open .language-menu{
  display:grid;
}


/* Einheitliche Bilddarstellung: Produktblock wie Aufbewahrungsblock */
#produkt .lux-box{
  min-height:auto !important;
  height:auto !important;
  padding:16px !important;
  display:block !important;
  background:#ffffff !important;
  border:1px solid var(--line) !important;
  border-radius:24px !important;
  box-shadow:0 12px 30px rgba(32,63,80,0.06) !important;
}

#produkt .lux-box::before{
  display:none !important;
}

#produkt .product-img,
#produkt .product-img-equal-height,
#produkt .lux-box img{
  width:100% !important;
  height:auto !important;
  min-height:0 !important;
  max-height:none !important;
  transform:none !important;
  object-fit:cover !important;
  border-radius:20px !important;
  display:block !important;
  margin:0 !important;
  filter:none !important;
}

#produkt .lux-label{
  display:none !important;
}

#produkt .split{
  align-items:center !important;
}


/* Sprachmenü optisch an Hauptmenü angleichen */
.language-switcher{
  padding-bottom:0;
  margin-bottom:0;
}

.language-button{
  min-height:auto;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  color:var(--muted);
  font-size:14px;
  font-weight:400;
  cursor:pointer;
  line-height:1.6;
}

.language-button::after{
  content:" ▾";
  font-size:11px;
}

.language-button:hover{
  color:var(--blue-dark);
}

.language-menu{
  top:calc(100% + 12px);
  margin-top:0;
  min-width:150px;
}

@media (max-width:900px){
  .language-switcher{
    width:100%;
    padding:0;
  }

  .language-button{
    width:100%;
    text-align:left;
    padding:13px 14px;
    border-radius:14px;
    color:var(--blue-dark);
  }

  .language-button:hover{
    background:#f8fbfc;
  }

  .language-menu{
    position:static;
    margin-top:6px;
  }
}

/* Direktbestellung */
.order-section{
  background:linear-gradient(180deg,#ffffff 0%,#f8fbfc 100%);
}

.order-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:26px;
  align-items:start;
}

.order-card{
  background:#ffffff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  box-shadow:0 18px 45px rgba(32,63,80,.08);
}

.order-product-card{
  display:grid;
  gap:22px;
}

.order-product-card img{
  width:100%;
  border-radius:22px;
  display:block;
  background:#f8fbfc;
}

.order-product-card p{
  color:var(--muted);
  margin:0 0 16px;
}

.product-price{
  display:grid;
  gap:4px;
  margin:0 0 14px;
  color:var(--blue-dark);
}

.product-price strong{
  font-size:clamp(28px,4vw,42px);
  line-height:1;
}

.product-price span{
  color:var(--muted);
  font-weight:700;
}

.payment-badge{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  border-radius:999px;
  background:var(--blue-soft);
  color:var(--blue-dark);
  padding:0 16px;
  font-weight:800;
}

.order-form{
  display:grid;
  gap:16px;
  text-align:left;
}

.order-form label{
  display:grid;
  gap:8px;
  font-weight:800;
  color:var(--blue-dark);
}

.order-form input,
.order-form textarea{
  width:100%;
  min-height:52px;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px 16px;
  font:inherit;
  color:var(--blue-dark);
  background:#f8fbfc;
  outline:none;
}

.order-form textarea{
  min-height:112px;
  resize:vertical;
}

.order-form input[readonly]{
  background:#edf4f7;
  color:var(--muted);
}

.order-form small{
  color:var(--muted);
  font-weight:600;
}

.full-width{
  width:100%;
}

.quantity-control{
  display:flex;
  align-items:center;
  gap:10px;
}

.quantity-control input{
  max-width:120px;
  text-align:center;
  font-weight:900;
  background:#ffffff;
}

.quantity-button{
  width:52px;
  min-width:52px;
  height:52px;
  border:1px solid var(--blue);
  border-radius:16px;
  background:#ffffff;
  color:var(--blue);
  font-size:26px;
  font-weight:900;
  cursor:pointer;
  line-height:1;
}

.order-summary{
  display:grid;
  gap:10px;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  background:#f8fbfc;
}

.order-summary > div{
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:var(--muted);
  font-weight:700;
}

.order-summary strong{
  color:var(--blue-dark);
  white-space:nowrap;
}

.order-summary-total{
  border-top:1px solid var(--line);
  padding-top:12px;
  margin-top:2px;
  color:var(--blue-dark) !important;
  font-size:1.08rem;
}

.prepayment-box{
  display:grid;
  gap:6px;
  border:1px solid rgba(200,164,93,.45);
  background:rgba(200,164,93,.10);
  border-radius:18px;
  padding:18px;
  color:var(--blue-dark);
}

.prepayment-box span{
  color:var(--muted);
}

.agb-check{
  display:flex !important;
  grid-template-columns:auto 1fr;
  align-items:flex-start;
  gap:12px !important;
  padding:16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#f8fbfc;
}

.agb-check input{
  width:auto;
  min-height:auto;
  margin-top:5px;
  accent-color:var(--blue);
}

.agb-check a{
  color:var(--blue);
  text-decoration:underline;
}

.order-status-message{
  margin:0 0 22px;
  border-radius:18px;
  padding:16px 20px;
  font-weight:800;
}

.order-status-message.success{
  background:#eaf8ef;
  border:1px solid #9fd3af;
  color:#1e5a32;
}

.order-status-message.error{
  background:#fff0f0;
  border:1px solid #e0a5a5;
  color:#8a1f1f;
}

@media (max-width:900px){
  .order-grid{
    grid-template-columns:1fr;
  }

  .order-card{
    padding:22px;
  }

  .quantity-control input{
    max-width:100%;
  }
}

.order-field{
  display:grid;
  gap:8px;
}

.order-field > label{
  font-weight:800;
  color:var(--blue-dark);
}

.order-status-message{
  grid-column:1 / -1;
}
