:root{
  --accent1:#6ee7b7;
  --accent2:#60a5fa;
  --bg:#0f1724;
  --max-w:1100px;
  --muted:#94a3b8;
  --radius:16px;
  --shadow:0 8px 40px rgba(0,0,0,0.4);
  --text:#e2e8f0;

  --cfg-bg:rgba(17,24,39,0.58);
  --cfg-border:rgba(255,255,255,0.08);
  --cfg-border-strong:rgba(255,255,255,0.12);
  --cfg-text:rgba(255,255,255,0.90);
  --cfg-muted:rgba(255,255,255,0.66);
  --cfg-muted2:rgba(255,255,255,0.52);
  --cfg-accent:#00BFE9;
  --cfg-accent-2:rgba(0,191,233,0.18);
  --cfg-danger:#ff4d6d;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{ scroll-behavior:smooth; }

body{
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',system-ui,sans-serif;
  font-size:16px;
  overflow-x:hidden;
}

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

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 20px;
  background:rgba(15,23,36,0.5);
  backdrop-filter:blur(10px);
}

.header-right{
  display:flex;
  align-items:center;
  gap:12px;
}

.invoria{
  font-family:'Montserrat',sans-serif;
  font-weight:600;
  letter-spacing:1px;
  color:#fff;
  text-decoration:none;
  font-size:1.8rem;
}

.invoria .v{ color:#00BFE9; }

.invoria:hover{ opacity:0.8; }

#nav{
  display:flex;
  gap:20px;
  align-items:center;
  transition:none;
}

.nav-header{ display:none; }

#nav a{
  color:var(--muted);
  font-weight:600;
  font-size:0.95rem;
  text-decoration:none !important;
  position:relative;
  z-index:2;
  border-bottom:none !important;
}

#nav a:hover{
  color:#fff;
  text-shadow:
    0 0 6px rgba(110,231,183,0.6),
    0 0 12px rgba(96,165,250,0.4),
    0 0 18px rgba(255,255,255,0.2);
}

.cart-button{
  position:relative;
  border:none;
  background:rgba(15,23,36,0.8);
  border-radius:999px;
  padding:6px 10px 6px 12px;
  display:flex;
  align-items:center;
  gap:6px;
  cursor:pointer;
  box-shadow:0 4px 16px rgba(0,0,0,0.4);
  transition:transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cart-button:hover{
  transform:translateY(-1px);
  background:rgba(15,23,36,1);
  box-shadow:0 6px 20px rgba(0,0,0,0.6);
}

.cart-icon-svg{
  width:20px;
  height:20px;
  display:inline-flex;
}

.cart-icon-svg svg{
  width:100%;
  height:100%;
  fill:#e5e7eb;
}

.cart-count{
  min-width:20px;
  padding:2px 6px;
  border-radius:999px;
  background:#111827;
  color:#f9fafb;
  font-size:0.75rem;
  font-weight:700;
  text-align:center;
}

.hamburger{
  display:none;
  flex-direction:column;
  justify-content:space-between;
  width:28px;
  height:20px;
  background:none;
  border:none;
  cursor:pointer;
  z-index:2100;
}

.hamburger span{
  display:block;
  width:100%;
  height:3px;
  background:var(--text);
  border-radius:4px;
  transition:all 0.3s ease;
}

.hamburger.active span:nth-child(1){ transform:translateY(8.5px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity:0; }
.hamburger.active span:nth-child(3){ transform:translateY(-8.5px) rotate(-45deg); }

@media (max-width:800px){
  .hamburger{ display:flex; }

  #nav{
    position:fixed;
    top:0;
    right:-100%;
    width:75%;
    height:100vh;
    background:#0f1724;
    border-left:1px solid #1f2937;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    padding-top:120px;
    gap:28px;
    transition:right 0.35s ease;
    box-shadow:-8px 0 40px rgba(0,0,0,0.7);
    z-index:1050;
    text-align:center;
  }

  #nav.active{ right:0; }

  .nav-header{
    display:block;
    position:absolute;
    top:30px;
    left:50%;
    transform:translateX(-50%);
  }

  #nav a{
    width:100%;
    text-align:center;
  }

  #nav .nav-individuell{
    width:auto;
    display:inline-block;
  }

  body.menu-open{ overflow:hidden; }

  header{ padding:20px 10px !important; }
}

.nav-title{
  font-weight:700;
  font-size:1.4rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  padding-bottom:6px;
}

.nav-title .nav-n{ color:#00BFE9; }

body.menu-open::before{
  content:"";
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.45);
  z-index:900;
  backdrop-filter:blur(2px);
}

.hero,
.section,
.plan-card,
.service,
.testimonials,
.cta{
  position:relative;
  z-index:1;
}

.btn{
  background:linear-gradient(90deg,var(--accent2),var(--accent1));
  border-radius:10px;
  color:#052039;
  display:inline-block;
  font-weight:700;
  overflow:hidden;
  padding:10px 18px;
  position:relative;
  transition:transform 0.25s ease, box-shadow 0.3s ease;
  font-size:1rem;
  border:none;
}

.btn span{
  -webkit-background-clip:text;
  -webkit-text-fill-color:currentColor;
  background:none;
  color:#052039;
  display:inline-block;
  transition:all 0.3s;
}

.btn:hover{
  box-shadow:0 4px 20px rgba(110,231,183,0.4), 0 0 10px rgba(96,165,250,0.3);
  transform:scale(1.05);
}

.hero{
  align-items:center;
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(96,165,250,0.12), transparent),
    radial-gradient(800px 400px at 90% 90%, rgba(110,231,183,0.1), transparent),
    linear-gradient(180deg,#0f1724,#0b1320);
  display:flex;
  height:100vh;
  justify-content:center;
  overflow:hidden;
  padding:0 20px;
  position:relative;
  text-align:center;
}

.hero::after{
  background:url('background.jpg') center/cover no-repeat;
  content:"";
  height:100%;
  left:0;
  opacity:0.08;
  position:absolute;
  top:0;
  width:100%;
  z-index:0;
}

.hero::before{
  background:linear-gradient(to bottom, rgba(15,23,36,0) 0%, #0f1724 100%);
  bottom:0;
  content:"";
  height:80px;
  left:0;
  position:absolute;
  width:100%;
  z-index:2;
}

.hero-content{
  color:var(--text);
  max-width:700px;
  position:relative;
  z-index:1;
}

.hero h1{
  font-size:2.4rem;
  line-height:1.1;
  margin-bottom:12px;
  text-shadow:0 2px 12px rgba(0,0,0,0.5);
}

.hero p{
  color:var(--muted);
  font-size:1.05rem;
  margin-bottom:24px;
  text-shadow:0 2px 12px rgba(0,0,0,0.5);
}

.hero-logo{
  animation:pulseGlow 4s ease-in-out infinite;
  display:block;
  filter:drop-shadow(0 4px 20px rgba(0,0,0,0.4));
  height:auto;
  margin:0 auto;
  opacity:0.9;
  transition:opacity 0.3s ease, transform 0.3s ease;
  width:300px;
}

.hero-logo:hover{
  opacity:1;
  transform:scale(1.05);
}

@keyframes pulseGlow{
  0%,100%{ filter:drop-shadow(0 0 8px rgba(110,231,183,0.2)); }
  50%{ filter:drop-shadow(0 0 16px rgba(96,165,250,0.4)); }
}

section{
  display:flex;
  justify-content:center;
  padding:100px 20px;
}

.inner{
  max-width:var(--max-w);
  text-align:center;
  width:100%;
}

section h2{
  font-size:2rem;
  margin-bottom:1.5rem;
  margin-top:0;
}

.services{
  display:grid;
  gap:24px;
  margin-top:40px;
}

@media (min-width:800px){
  .services{ grid-template-columns:repeat(3,1fr); }
}

.service{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
  text-align:left;
}

.service p{
  color:var(--muted);
  font-size:0.95rem;
}

.service-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}

.service h3{
  margin-bottom:0;
  font-size:1.1rem;
}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 12px;
  border-radius:999px;
  font-size:0.8rem;
  font-weight:700;
  letter-spacing:0.02em;
  white-space:nowrap;
}

.badge-sorglos{
  background:linear-gradient(90deg,var(--accent2),var(--accent1));
  color:#052039;
}

.badge-both{
  background:#0ea5e9;
  color:#052039;
}

#testimonials{
  left:50%;
  margin-left:-50vw;
  overflow:hidden;
  padding:80px 0;
  position:relative;
  width:100vw;
  padding-left:0 !important;
  padding-right:0 !important;
}

#testimonials .inner{
  margin:0;
  max-width:none;
  padding:0;
  width:100%;
  padding-left:0 !important;
  padding-right:0 !important;
}

.testimonials{
  overflow:hidden;
  position:relative;
  width:100%;
}

.testimonials-track{
  display:flex;
  gap:0;
  width:max-content;
  will-change:transform;
}

.testimonial{
  flex:0 0 auto;
  padding:30px;
  user-select:none;
  width:320px;
}

.testimonial-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.05);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  height:100%;
  justify-content:space-between;
  margin:0 8px;
  padding:24px;
  transition:transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 50px rgba(0,0,0,0.5);
  z-index:2;
  cursor:pointer;
}

.testimonial p{
  color:var(--muted);
  font-size:0.95rem;
  margin-bottom:16px;
  user-select:none;
}

.author{
  color:var(--accent1);
  font-weight:700;
  user-select:none;
}

.testimonial-footer{
  display:flex;
  flex-direction:column-reverse;
  gap:4px;
  align-items:center;
  text-align:center;
}

.stars{
  color:#facc15;
  font-size:1rem;
  display:flex;
  align-items:center;
  gap:6px;
}

.rating{
  color:var(--muted);
  font-size:0.8rem;
}

.cta{
  background:linear-gradient(90deg,rgba(96,165,250,0.08),rgba(110,231,183,0.06));
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:40px 20px;
  text-align:center;
}

.cta h2{ margin-bottom:12px; }

.cta p{
  color:var(--muted);
  margin-bottom:20px;
}

footer{
  color:var(--muted);
  font-size:0.9rem;
  padding:60px 20px;
  text-align:center;
}

.anfrage-btn.btn{
  background:linear-gradient(90deg,var(--accent2),var(--accent1));
  border:none;
  border-radius:10px;
  color:#052039;
  cursor:pointer;
  font-size:1rem;
  font-weight:700;
  outline:none;
  padding:10px 18px;
  position:relative;
  overflow:hidden;
  transition:transform 0.6s ease, box-shadow 0.6s ease;
}

.anfrage-btn.btn span{
  position:relative;
  display:inline-block;
  color:#052039;
  transition:all 0.3s ease;
}

.anfrage-btn.btn:hover{
  transform:scale(1.02);
  box-shadow:0 0 25px rgba(255,255,255,0.25), 0 0 18px rgba(255,255,255,0.15);
}

.anfrage-btn.btn:hover span{
  background:linear-gradient(
    120deg,
    #052039 0%,
    #ffffff 40%,
    #ffffff 50%,
    #ffffff 60%,
    #052039 100%
  );
  background-size:200% auto;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:shineText 2.0s linear infinite;
}

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

.anfrage-btn.btn:focus,
.anfrage-btn.btn:active{
  border:none !important;
  box-shadow:none !important;
  outline:none !important;
}

.anfrage-form{
  max-height:0;
  opacity:0;
  overflow:hidden;
  transition:max-height 0.6s ease, opacity 0.4s ease;
}

.anfrage-form.active{
  margin-top:1.2rem;
  max-height:800px;
  opacity:1;
  overflow:visible !important;
}

.anfrage-form form{
  border-radius:15px;
  display:flex;
  flex-direction:column;
  gap:1rem;
  margin:30px auto;
  padding:1.5rem;
}

.form-row{
  align-items:center;
  display:flex;
  justify-content:space-between;
}

.form-row label{
  color:var(--text);
  font-size:0.95rem;
  font-weight:600;
  margin-right:1rem;
  text-align:right;
  width:30%;
}

.form-row input,
.form-row textarea{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:8px;
  color:var(--text);
  flex:1;
  font-family:inherit;
  font-size:1rem;
  padding:0.6rem 0.8rem;
}

.form-row input:focus,
.form-row textarea:focus{
  background:rgba(255,255,255,0.08);
  border-color:var(--accent1);
  outline:none;
}

.anfrage-form .btn{
  align-self:flex-end;
  background:linear-gradient(90deg,var(--accent2),var(--accent1));
  border:none;
  border-radius:10px;
  color:#052039;
  font-size:1rem;
  font-weight:700;
  outline:none;
  padding:10px 18px;
  transition:opacity 0.3s ease;
  cursor:pointer;
}

.white-li li{ color:#fff !important; }

#pricing h2{ margin-bottom:16px; }

.pricing-subtitle{
  color:var(--muted);
  font-size:0.95rem;
  margin-bottom:24px;
}

.pricing-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
  margin-top:20px;
  align-items:stretch;
}

.plan-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:16px;
  box-shadow:0 8px 40px rgba(0,0,0,0.4);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding:24px;
  text-align:center;
  transition:
    transform 0.1s ease-in-out,
    box-shadow 0.3s ease,
    background 0.6s ease,
    border-color 0.6s ease,
    filter 0.6s ease;
  will-change:transform, box-shadow, filter;
}

.plan-card:hover{ transform:scale(1.02) !important; }

.pc-image{
  width:100%;
  height:220px;
  object-fit:contain;
  border-radius:12px;
  margin:12px 0 16px;
  padding:15px;
  filter:drop-shadow(0 0 32px rgba(0,0,0,0.9));
}

.pc-shorttext{
  color:var(--muted);
  font-size:0.95rem;
  margin-bottom:12px;
}

.plan-card.featured{
  background:linear-gradient(135deg,#6ee7b7,#60a5fa);
  color:#052039;
  overflow:visible;
  position:relative;
}

.plan-card.featured .pc-shorttext,
.plan-card.featured ul li{
  color:#052039 !important;
}

.plan-card.featured .badge{
  background:#facc15;
  border-radius:12px;
  color:#052039;
  font-size:0.85rem;
  font-weight:700;
  padding:6px 12px;
  position:absolute;
  right:-12px;
  top:-12px;
}

.plan-card h3{
  font-size:1.3rem;
  margin-bottom:6px;
}

.plan-card .price{
  font-size:1.6rem;
  font-weight:700;
  margin-bottom:8px;
}

.plan-card ul{
  list-style:none;
  margin:0 0 12px 0;
  padding:0;
}

.plan-card ul li{
  color:#94a3b8;
  margin-bottom:6px;
}

.buy-btn{
  all:unset;
  display:block;
  cursor:pointer;
  margin:0 auto;
}

.buy-btn.btn{
  background:linear-gradient(90deg,var(--accent2),var(--accent1));
  border-radius:10px;
  color:#052039;
  font-weight:700;
  padding:10px 18px;
  text-align:center;
  transition:transform 0.25s ease, box-shadow 0.3s ease;
  box-shadow:none;
}

.buy-btn.btn span{
  color:#052039;
  position:relative;
  display:inline-block;
  transition:all 0.3s ease;
}

.buy-btn.btn:hover{
  transform:scale(1.05);
  box-shadow:0 0 25px rgba(255,255,255,0.25), 0 0 18px rgba(255,255,255,0.15);
}

.buy-btn.btn:hover span{
  background:none !important;
  -webkit-background-clip:initial !important;
  -webkit-text-fill-color:#052039 !important;
  animation:none !important;
}

@media (max-width:800px){
  .pricing-cards{ margin-top:24px; }

  .plan-card{
    margin:0 auto;
    max-width:400px;
    width:100%;
  }

  .form-row{
    align-items:stretch;
    flex-direction:column;
  }

  .form-row label{
    margin-bottom:0.4rem;
    margin-right:0;
    text-align:left;
    width:100%;
  }

  .form-row input,
  .form-row textarea{
    width:100%;
  }

  .anfrage-form form{ padding:1rem; }

  footer{ padding:20px 20px !important; }
}

#contact .anfrage-form form{
  border-radius:16px;
  box-shadow:0 0 25px rgba(0,0,0,0.5);
  margin:20px auto;
  max-width:500px;
  padding:1.5rem;
  width:100%;
}

#faq{
  padding:80px 10px;
  display:flex;
  justify-content:center;
}

#faq h2{ margin-bottom:40px; }

#faq a{
  color:#00BFE9;
  font-weight:600;
  text-decoration:none;
  transition:color 0.3s ease;
}

#faq a:hover{ color:#6ee7b7; }

.faq-grid{
  display:grid;
  gap:24px;
  align-items:start;
}

@media (min-width:800px){
  .faq-grid{ grid-template-columns:repeat(2,1fr); }
}

.faq-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  transition:transform 0.25s ease, border-color 0.3s ease;
}

.faq-card:hover{ transform:scale(1.02) !important; }

.faq-toggle{
  width:100%;
  background:none;
  border:none;
  text-align:left;
  padding:24px;
  color:var(--text);
  font-family:inherit;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.faq-toggle h3{
  font-size:1.1rem;
  font-weight:700;
}

.faq-icon{
  color:var(--accent2);
  font-size:1.5rem;
  transition:transform 0.3s ease;
}

.faq-card.open .faq-icon{
  color:var(--accent1);
  transform:rotate(180deg);
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
  padding:0 24px;
}

.faq-answer p{
  color:var(--muted);
  line-height:1.6;
  padding-bottom:0;
}

@media (max-width:800px){
  .faq-toggle h3{ font-size:1rem; }
}

.service{
  transition:
    transform 0.1s cubic-bezier(0.25,1,0.5,1) !important,
    box-shadow 0.2s ease !important,
    filter 0.2s ease !important;
  will-change:transform, box-shadow, filter;
}

.service:hover,
.service:not(:hover){
  transition-delay:0s !important;
}

.service:hover{
  transform:scale(1.02) !important;
  box-shadow:0 0 25px rgba(0,0,0,0.6);
  filter:brightness(1.08);
}

.plan-card.done,
.service.done{
  transform:none !important;
  will-change:auto !important;
  filter:none !important;
  backface-visibility:hidden;
  perspective:1000px;
}

.plan-card.done:hover,
.service.done:hover{
  will-change:transform, filter !important;
  transform:scale(1.02) !important;
  box-shadow:0 0 25px rgba(0,0,0,0.6);
  filter:brightness(1.08);
  transition:transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cart-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(3px);
  opacity:0;
  pointer-events:none;
  transition:opacity 0.25s ease;
  z-index:12000;
}

.cart-backdrop.active{
  opacity:1;
  pointer-events:auto;
}

.cart-panel{
  position:fixed;
  top:0;
  right:0;
  height:100vh;
  width:360px;
  max-width:90%;
  background:#0b1120;
  border-left:1px solid #1f2937;
  box-shadow:-8px 0 40px rgba(0,0,0,0.7);
  transform:translateX(100%);
  transition:transform 0.3s ease;
  z-index:12010;
  display:flex;
  flex-direction:column;
}

.cart-panel.active{ transform:translateX(0); }

.cart-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 18px 14px;
  border-bottom:1px solid #1f2937;
}

.cart-header h3{ font-size:1.2rem; }

.cart-close{
  border:none;
  background:none;
  color:var(--muted);
  font-size:1.6rem;
  cursor:pointer;
}

.cart-close:hover{ color:#fff; }

.cart-items{
  flex:1;
  overflow-y:auto;
  padding:14px 16px 16px;
}

.cart-empty{
  color:var(--muted);
  font-size:0.95rem;
}

.cart-item{
  padding:10px 0;
  border-bottom:1px solid rgba(148,163,184,0.2);
}

.cart-item-main{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:8px;
}

.cart-item-thumb{
  width:52px;
  height:52px;
  object-fit:contain;
  border-radius:10px;
  background:#111827;
  padding:4px;
}

.cart-item-text{ text-align:left; }

.cart-item-name{
  font-weight:600;
  font-size:0.98rem;
}

.cart-item-desc{
  font-size:0.85rem;
  color:var(--muted);
  margin-top:2px;
}

.cart-item-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:4px;
}

.cart-item-price{
  font-weight:600;
  font-size:0.95rem;
}

.cart-item-remove{
  border:none;
  background:none;
  color:#9ca3af;
  font-size:1.2rem;
  line-height:1;
  cursor:pointer;
}

.cart-item-remove:hover{ color:#f97373; }

.cart-footer{
  border-top:1px solid #1f2937;
  padding:12px 16px 18px;
}

.cart-total-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
  font-size:0.95rem;
}

.cart-total-row span:last-child{ font-weight:700; }

.cart-checkout-btn{
  width:100%;
  margin-top:6px;
  text-align:center;
}

.checkout-page{ padding-top:120px; }

.checkout-title-main{
  font-size:2.2rem;
  margin-bottom:24px;
}

.checkout-layout{
  display:grid;
  gap:28px;
  text-align:left;
}

@media (min-width:900px){
  .checkout-layout{
    grid-template-columns:2fr 1fr;
    align-items:flex-start;
  }
}

.checkout-cart h2,
.checkout-summary h2{
  font-size:1.3rem;
  margin-bottom:12px;
}

.checkout-cart-items{
  background:rgba(15,23,42,0.9);
  border-radius:16px;
  padding:16px 18px;
  box-shadow:var(--shadow);
}

.checkout-item{
  padding:10px 0;
  border-bottom:1px solid rgba(148,163,184,0.25);
}

.checkout-item:last-child{ border-bottom:none; }

.checkout-item-main{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:10px;
}

.checkout-item-info{ max-width:100%; }

.checkout-item-name{
  font-weight:600;
  margin-bottom:4px;
}

.checkout-item-desc{
  color:var(--muted);
  font-size:0.9rem;
}

.checkout-item-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:4px;
}

.checkout-item-price{
  font-weight:600;
  font-size:0.95rem;
}

.checkout-item-remove{
  border:none;
  background:none;
  color:#9ca3af;
  font-size:1.2rem;
  line-height:1;
  cursor:pointer;
}

.checkout-item-remove:hover{ color:#f97373; }

.checkout-summary{
  background:rgba(15,23,42,0.95);
  border-radius:16px;
  padding:16px 18px 18px;
  box-shadow:var(--shadow);
}

.checkout-item-thumb{
  width:52px;
  height:52px;
  object-fit:contain;
  border-radius:10px;
  background:#111827;
  padding:4px;
}

@media (max-width:600px){
  .checkout-item-main{
    display:grid;
    grid-template-columns:auto 1fr;
    grid-template-rows:auto auto;
    column-gap:10px;
    row-gap:6px;
    align-items:center;
  }

  .checkout-item-thumb{
    grid-column:1;
    grid-row:1;
  }

  .checkout-item-info{
    grid-column:2;
    grid-row:1;
    max-width:100%;
  }

  .checkout-item-right{
    grid-column:1 / 3;
    grid-row:2;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    width:100%;
  }

  .checkout-item-remove{ margin-left:auto; }
}

@media (min-width:900px){
  .checkout-summary{ margin-top:34px; }
}

.summary-row{
  display:flex;
  justify-content:space-between;
  margin-bottom:8px;
  font-size:0.95rem;
}

.summary-total{
  font-weight:700;
  margin-top:6px;
  padding-top:6px;
  border-top:1px solid rgba(148,163,184,0.4);
}

.checkout-summary .btn{
  width:100%;
  margin-top:12px;
}

.checkout-note{
  margin-top:10px;
  font-size:0.8rem;
  color:var(--muted);
}

@media (max-width:800px){
  section{ padding:60px 26px !important; }

  section h2{ font-size:1.6rem; }

  .checkout-page{ padding-top:110px !important; }

  .hero h1{
    font-size:2rem;
    line-height:1.1;
    margin-bottom:12px;
    text-shadow:0 2px 12px rgba(0,0,0,0.5);
  }
}

@media (max-width:480px){
  section{ padding:50px 14px; }

  section h2{
    font-size:1.4rem;
    margin-bottom:1rem;
  }
}

#impressum .service{ transition:none; }

#impressum .service:hover{
  transform:none !important;
  box-shadow:var(--shadow);
  filter:none !important;
}

#datenschutz .service{ transition:none; }

#datenschutz .service:hover{
  transform:none !important;
  box-shadow:var(--shadow);
  filter:none !important;
}

.backbtn{ text-align:center; }

.backbtn .btn{ display:inline-block; }

.cart-button.cart-flash{
  background:linear-gradient(135deg,var(--accent1),var(--accent2));
  box-shadow:
    0 0 18px rgba(110,231,183,0.8),
    0 0 28px rgba(96,165,250,0.8);
  transform:translateY(-1px) scale(1.03);
}

.price{
  font-size:1.4rem;
  font-weight:bold;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
}

.old-price{
  text-decoration:line-through;
  color:#999;
  font-size:1rem;
}

.new-price{
  color:#F5274D;
  font-size:1.6rem;
}

button,
button.btn,
.btn{ cursor:pointer; }

.empty-cart-link{
  display:inline-block;
  margin-top:6px;
  text-decoration:underline;
  font-weight:600;
  color:inherit;
  cursor:pointer;
  transition:opacity 0.2s ease;
}

.empty-cart-link:hover{ opacity:0.7; }

@media (max-width:800px){
  .mobileimpressum{ margin-top:30px !important; }
}

#cookie-banner{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,0.65);
  z-index:13000;
}

.cookie-modal{
  background:#0b1120;
  border-radius:16px;
  box-shadow:var(--shadow);
  max-width:640px;
  width:calc(100% - 32px);
  padding:20px 22px 18px;
  color:var(--text);
  font-size:0.94rem;
}

.cookie-modal-inner{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.cookie-header h3{
  font-size:1.05rem;
  margin-bottom:6px;
}

.cookie-header p{
  color:var(--muted);
  line-height:1.5;
}

.cookie-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  font-size:0.85rem;
  color:var(--muted);
}

.cookie-links a{
  color:var(--muted);
  text-decoration:none;
  border-bottom:1px solid transparent;
  padding-bottom:1px;
}

.cookie-links a:hover{
  color:#e5e7eb;
  border-bottom-color:#e5e7eb;
}

.cookie-buttons{
  display:flex;
  gap:12px;
  justify-content:flex-end;
  margin-top:6px;
}

.cookie-buttons-left,
.cookie-buttons-right{ display:contents; }

.cookie-btn-primary{
  padding:8px 18px;
  font-size:0.9rem;
}

.cookie-btn-secondary{
  background:#4b5563;
  border-radius:10px;
  color:#e5e7eb;
  border:1px solid rgba(148,163,184,0.9);
  box-shadow:none;
  padding:8px 18px;
  font-size:0.9rem;
}

.cookie-btn-secondary span{ color:inherit; }

.cookie-btn-secondary:hover{ box-shadow:none !important; }

@media (max-width:600px){
  .cookie-modal{
    max-width:420px;
    width:calc(100% - 50px);
    padding:10px 12px;
    font-size:0.85rem;
    max-height:40vh;
    overflow-y:auto;
  }

  .cookie-header h3{
    font-size:0.95rem;
    margin-bottom:4px;
  }

  .cookie-header p{ font-size:0.85rem; }

  .cookie-links{ font-size:0.8rem; }

  .cookie-buttons{
    flex-direction:column-reverse;
    align-items:stretch;
    gap:8px;
  }

  .cookie-buttons-left,
  .cookie-buttons-right{ justify-content:stretch; }

  .cookie-btn-primary,
  .cookie-btn-secondary{
    width:100%;
    text-align:center;
    padding:7px 10px;
    font-size:0.85rem;
  }
}

.maillink{
  color:#00BFE9;
  font-weight:600;
  transition:opacity 0.2s ease;
}

.maillink:hover{ opacity:0.7; }

.footer-payments{
  margin-top:22px;
  width:100%;
  display:flex;
  justify-content:center;
}

.footer-payments-icons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.footer-payments-icons img{
  height:34px;
  width:auto;
  padding:6px 10px;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:12px;
  background:#ffffff;
  opacity:0.9;
  filter:grayscale(100%);
  transition:transform 0.15s ease, opacity 0.15s ease, filter 0.15s ease, border-color 0.15s ease;
}

@media (hover:none) and (pointer:coarse){
  .plan-card:hover,
  .service:hover,
  .btn:hover,
  .anfrage-btn.btn:hover,
  .buy-btn.btn:hover,
  .testimonial-card:hover,
  .cart-button:hover,
  .faq-card:hover,
  .footer-payments-icons img:hover{
    transform:none !important;
  }

  .service:hover,
  .plan-card:hover,
  .btn:hover,
  .anfrage-btn.btn:hover,
  .buy-btn.btn:hover,
  .testimonial-card:hover,
  .cart-button:hover,
  .faq-card:hover,
  .footer-payments-icons img:hover{
    box-shadow:inherit !important;
    filter:none !important;
  }

  .plan-card:active,
  .service:active,
  .btn:active,
  .anfrage-btn.btn:active,
  .buy-btn.btn:active,
  .testimonial-card:active,
  .cart-button:active,
  .faq-card:active,
  .footer-payments-icons img:active{
    transform:scale(0.99);
    filter:brightness(1.08);
    box-shadow:0 0 18px rgba(110,231,183,0.35), 0 0 14px rgba(96,165,250,0.25);
    transition:none;
  }
}

@media (max-width:700px){
  .cart-footer{
    position:sticky !important;
    bottom:calc(10px + env(safe-area-inset-bottom)) !important;
    z-index:12020 !important;
    background:rgba(11,17,32,0.98) !important;
    backdrop-filter:blur(6px) !important;
    border-top:1px solid rgba(31,41,55,1) !important;
  }

  .cart-checkout-btn{ position:static !important; }
}

.card-actions{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  margin-top:10px;
}

.config-btn{
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(15,23,36,0.92);
  border-radius:14px;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
}

.config-btn:hover{
  transform:translateY(-1px);
  background:rgba(15,23,36,1);
  border-color:rgba(255,255,255,0.22);
}

.config-btn svg{
  width:20px;
  height:20px;
  fill:rgba(226,232,240,0.92);
}

.config-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.70);
  display:none;
  z-index:9998;
}

.config-backdrop.active{ display:block; }

.config-modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:18px;
}

.config-modal.active{ display:flex; }

.config-dialog{
  width:100%;
  max-width:540px;
  background:#0b1220;
  border:1px solid rgba(255,255,255,0.10);
  border-radius:18px;
  box-shadow:0 20px 70px rgba(0,0,0,0.65);
  overflow:hidden;
}

.config-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:16px 18px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  background:#0a0f1c;
}

#config-title{
  margin:0;
  font-size:1.05rem;
  color:rgba(255,255,255,0.95);
  font-weight:900;
  letter-spacing:0.2px;
  display:flex;
  align-items:center;
  gap:10px;
}

#config-title::before{
  content:"";
  width:34px;
  height:34px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.04);
  background-color:#111827 !important;
  background-image:var(--pc-img) !important;
  background-repeat:no-repeat !important;
  background-position:center !important;
  background-size:65% auto !important;
  box-shadow:0 10px 28px rgba(0,0,0,0.35);
  flex:0 0 auto;
}

.config-close{
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.04);
  color:rgba(255,255,255,0.90);
  width:40px;
  height:40px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
  cursor:pointer;
  transition:transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.config-close:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,0.08);
  border-color:rgba(255,255,255,0.20);
}

.config-body{ padding:16px 18px 18px 18px; }

.config-sub{
  color:rgba(148,163,184,0.95);
  font-size:0.92rem;
  margin:0 0 12px 0;
}

.config-options{
  display:grid;
  gap:10px;
  margin-bottom:12px;
}

.config-opt{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.04);
  cursor:pointer;
  transition:transform 0.12s ease, background 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}

.config-opt:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,0.06);
  border-color:rgba(255,255,255,0.18);
}

.config-opt-left{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.config-opt input{
  appearance:none;
  -webkit-appearance:none;
  width:22px;
  height:22px;
  border-radius:12px;
  border:2px solid rgba(148,163,184,0.45);
  background:rgba(255,255,255,0.03);
  margin-top:2px;
  cursor:pointer;
  flex:0 0 auto;
  transition:background 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
  box-shadow:none !important;
  filter:none !important;
  outline:none !important;
}

.config-opt input:focus,
.config-opt input:focus-visible{
  box-shadow:none !important;
  outline:none !important;
}

.config-opt input:checked{
  background:linear-gradient(90deg,var(--accent2),var(--accent1)) !important;
  border:0 !important;
  border-color:rgba(255,255,255,0.0);
  box-shadow:none !important;
  outline:none !important;
  transform:scale(1.03);
}

.config-opt-title{
  font-weight:900;
  color:rgba(255,255,255,0.92);
  font-size:0.96rem;
  line-height:1.15;
}

.config-opt-note{
  margin-top:5px;
  color:rgba(148,163,184,0.95);
  font-size:0.82rem;
  line-height:1.25;
}

.config-opt-price{
  font-weight:900;
  color:rgba(226,232,240,0.9);
  white-space:nowrap;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.03);
}

.config-opt:has(input:checked){
  background:linear-gradient(90deg,rgba(96,165,250,0.22),rgba(110,231,183,0.16));
  border-color:rgba(96,165,250,0.55);
  box-shadow:0 12px 34px rgba(96,165,250,0.18);
}

.config-opt:has(input:checked) .config-opt-title{ color:rgba(255,255,255,0.98); }
.config-opt:has(input:checked) .config-opt-note{ color:rgba(226,232,240,0.92); }

.config-opt:has(input:checked) .config-opt-price{
  background:rgba(255,255,255,0.08);
  border-color:rgba(255,255,255,0.18);
  color:rgba(255,255,255,0.95);
}

.config-summary{
  border:1px solid rgba(255,255,255,0.10);
  border-radius:18px;
  padding:12px 14px;
  background:rgba(255,255,255,0.03);
  margin-bottom:12px;
}

.config-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:4px 0;
  color:rgba(226,232,240,0.85);
  font-size:0.92rem;
}

.config-row.total{
  font-weight:900;
  color:rgba(255,255,255,0.95);
}

.cart-item-options,
.checkout-item-options{
  margin-top:6px;
  font-size:0.82rem;
  color:rgba(148,163,184,0.92);
  line-height:1.25;
}

@media (max-width:768px){
  #pricing .plan-card:hover,
  #pricing .plan-card:active,
  #pricing .plan-card:focus,
  #pricing .plan-card:focus-within,
  #sets .plan-card:hover,
  #sets .plan-card:active,
  #sets .plan-card:focus,
  #sets .plan-card:focus-within{
    transform:none !important;
  }
}

@media (max-width:768px){
  .config-opt:hover,
  .config-opt:active{
    transform:none !important;
    box-shadow:none !important;
    background:rgba(255,255,255,0.04) !important;
    border-color:rgba(255,255,255,0.10) !important;
  }

  .config-opt:has(input:checked){
    background:linear-gradient(90deg,rgba(96,165,250,0.22),rgba(110,231,183,0.16)) !important;
    border-color:rgba(96,165,250,0.55) !important;
  }
}

.cfg-page{
  width:min(1280px, calc(100% - 36px));
  margin:0 auto;
  padding:110px 0 72px;
}

.cfg-title{
  text-align:center;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  letter-spacing:0.06em;
  margin:0 0 22px;
}

.cfg-title h1{
  font-size:clamp(22px, 2.3vw, 30px);
  margin:0;
  color:rgba(255,255,255,0.92);
}

.cfg-shell{
  display:grid;
  grid-template-columns:260px 1fr 360px;
  gap:18px;
  align-items:start;
}

.cfg-panel{
  background:var(--cfg-bg);
  border:1px solid var(--cfg-border);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 40px rgba(0,0,0,0.35);
}

.cfg-steps{ padding:14px 10px; }

.cfg-step{
  width:100%;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid transparent;
  background:transparent;
  color:rgba(255,255,255,0.86);
  cursor:pointer;
  text-align:left;
  transition:180ms ease;
}

.cfg-step:hover{
  background:rgba(255,255,255,0.03);
  border-color:rgba(255,255,255,0.06);
}

.cfg-step.active{
  background:rgba(0,191,233,0.08);
  border-color:rgba(0,191,233,0.22);
  box-shadow:inset 3px 0 0 var(--cfg-accent);
}

.cfg-step-icon{
  width:18px;
  height:18px;
  opacity:0.92;
}

.cfg-step-label{
  font-weight:600;
  font-size:13.5px;
  letter-spacing:0.02em;
}

.cfg-step-sub{
  margin-top:2px;
  font-size:11.5px;
  color:rgba(255,255,255,0.55);
}

.cfg-content{ padding:0; }

.cfg-content-header{
  padding:18px 18px 14px;
  border-bottom:1px solid var(--cfg-border);
  display:flex;
  align-items:center;
  gap:14px;
}

.cfg-content-hero{
  width:54px;
  height:54px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  overflow:hidden;
}

.cfg-content-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.cfg-content-headline{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.cfg-content-kicker{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color:rgba(255,255,255,0.90);
  letter-spacing:0.02em;
}

.cfg-content-kicker svg{ width:16px; height:16px; opacity:0.92; }

.cfg-content-title{
  margin-top:6px;
  font-size:18px;
  font-weight:700;
  color:rgba(255,255,255,0.92);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.cfg-content-sub{
  margin-top:4px;
  font-size:13px;
  color:rgba(255,255,255,0.62);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.cfg-options{ padding:8px 0; }

.cfg-option{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 18px;
  cursor:pointer;
  border-bottom:1px solid rgba(255,255,255,0.06);
  transition:160ms ease;
}

.cfg-option:last-child{ border-bottom:none; }
.cfg-option:hover{ background:rgba(255,255,255,0.025); }

.cfg-option-left{
  display:flex;
  align-items:flex-start;
  gap:12px;
  min-width:0;
}

.cfg-option input{
  margin-top:3px;
  accent-color:var(--cfg-accent);
}

.cfg-option-text{ min-width:0; }

.cfg-option-name{
  font-weight:700;
  font-size:14px;
  color:rgba(255,255,255,0.9);
}

.cfg-option-note{
  margin-top:4px;
  font-size:12.5px;
  color:rgba(255,255,255,0.55);
}

.cfg-option-price{
  font-weight:700;
  font-size:13px;
  color:rgba(255,255,255,0.75);
  white-space:nowrap;
}

.cfg-option-price.plus{ color:rgba(0,191,233,0.92); }
.cfg-option-price.minus{ color:rgba(255,77,109,0.92); }

.cfg-summary{ padding:16px 16px 14px; }

.cfg-summary h3{
  margin:0;
  font-size:14px;
  letter-spacing:0.06em;
  color:rgba(255,255,255,0.9);
}

.cfg-summary-line{
  margin-top:12px;
  font-size:14px;
  color:rgba(255,255,255,0.76);
  line-height:1.45;
}

.cfg-summary-items{
  margin-top:14px;
  border-top:1px solid rgba(255,255,255,0.07);
  padding-top:12px;
  display:grid;
  gap:10px;
}

.cfg-sum-item{
  display:flex;
  justify-content:space-between;
  gap:12px;
}

.cfg-sum-item-left{ min-width:0; }

.cfg-sum-item-left strong{
  display:block;
  font-size:12px;
  color:rgba(255,255,255,0.72);
}

.cfg-sum-item-left span{
  display:block;
  margin-top:2px;
  font-size:13px;
  color:rgba(255,255,255,0.88);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.cfg-sum-item-right{
  font-weight:700;
  font-size:12.5px;
  color:rgba(255,255,255,0.74);
  white-space:nowrap;
}

.cfg-sum-total{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,0.07);
}

.cfg-sum-total-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
}

.cfg-sum-total-row .label{
  font-weight:700;
  font-size:14px;
  color:rgba(255,255,255,0.88);
}

.cfg-sum-total-row .value{
  font-weight:800;
  font-size:28px;
  color:var(--cfg-danger);
  letter-spacing:0.01em;
}

.cfg-sum-total-note{
  margin-top:6px;
  font-size:12px;
  color:rgba(255,255,255,0.55);
}

.cfg-actions{
  margin-top:14px;
  display:grid;
  grid-template-columns:112px 1fr;
  gap:10px;
}

.cfg-qty{
  display:grid;
  grid-template-columns:34px 1fr 34px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.03);
}

.cfg-qty button{
  border:none;
  background:transparent;
  color:rgba(255,255,255,0.85);
  font-weight:900;
  cursor:pointer;
}

.cfg-qty span{
  display:grid;
  place-items:center;
  font-weight:800;
  color:rgba(255,255,255,0.92);
  border-left:1px solid rgba(255,255,255,0.10);
  border-right:1px solid rgba(255,255,255,0.10);
}

.cfg-add{
  border:1px solid rgba(0,191,233,0.35);
  background:rgba(0,191,233,0.16);
  color:rgba(255,255,255,0.95);
  border-radius:12px;
  padding:12px 14px;
  font-weight:800;
  letter-spacing:0.04em;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:160ms ease;
}

.cfg-add:hover{
  background:rgba(0,191,233,0.22);
  transform:translateY(-1px);
}

.cfg-add svg{ width:18px; height:18px; opacity:0.95; }

@media (max-width:1100px){
  .cfg-shell{ grid-template-columns:230px 1fr 340px; }
}

@media (max-width:980px){
  .cfg-shell{ grid-template-columns:1fr; }
  .cfg-page{ padding-top:100px; }
  .cfg-steps{ padding:10px; }
  .cfg-actions{ grid-template-columns:1fr; }
}

@supports (padding:max(0px)){
  .cfg-page{ padding-top:max(96px, env(safe-area-inset-top)); }
}

#config-modal #config-add.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:52px;
  padding:14px 18px;
  line-height:1;
  border-radius:14px;
  gap:10px;
}

#config-modal #config-add.btn > span{ display:inline-block; }

#config-modal .btn{ min-height:52px; }

@supports selector(:has(*)){
  html:has(#config-modal.active),
  body:has(#config-modal.active){
    overflow:hidden;
  }
}

#config-modal.active,
#config-backdrop.active{
  overscroll-behavior:contain;
}

#cfg-scroll{
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;
}

.checkout-item-main{ align-items:flex-start !important; }
.checkout-item-thumb{ align-self:flex-start !important; }

.checkout-item-right{
  align-self:flex-start !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-end !important;
  justify-content:flex-start !important;
}

.checkout-item-price{ margin-top:0 !important; }
.checkout-item-remove{ margin-top:6px !important; }

@media (max-width:520px){
  .checkout-item-main{ flex-wrap:wrap !important; }

  .checkout-item-right{
    width:100% !important;
    order:99 !important;
    margin-top:8px !important;
    display:flex !important;
    flex-direction:row !important;
    justify-content:space-between !important;
    align-items:flex-end !important;
  }

  .checkout-item-price{ margin:0 !important; }
  .checkout-item-remove{ margin:0 !important; }
}

#cart-panel .cart-item-main{
  position:relative;
  display:flex;
  align-items:flex-start !important;
  gap:12px;
}

#cart-panel .cart-item-thumb{
  align-self:flex-start;
  flex:0 0 auto;
  margin-top:2px;
  object-fit:contain;
}

#cart-panel .cart-item-text{
  flex:1 1 auto;
  min-width:0;
  padding-right:120px;
}

#cart-panel .cart-item-right{
  position:absolute;
  top:0;
  right:0;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:8px;
  text-align:right;
}

#cart-panel .cart-item-price{
  white-space:nowrap;
  line-height:1;
  margin-top:2px;
}

#cart-panel .cart-item-remove{
  line-height:1;
  margin:0;
}

#cart-panel .cart-item-options strong{
  font-size:0;
  line-height:0;
  display:block;
}

#cart-panel .cart-item-options strong::before{
  content:"Konfiguration:";
  font-size:0.88rem;
  line-height:1.2;
  display:block;
  margin-bottom:4px;
  color:rgba(226,232,240,0.95);
}

#cart-panel .cart-item-options .cart-item-options-list{
  display:block;
  white-space:pre-line;
  line-height:1.35;
}

#cart-panel .cart-item-options .cart-opt{
  display:block;
  line-height:1.35;
}

#cart-panel .cart-item-options .cart-opt::before{ content:"- "; }

@media (max-width:420px){
  #cart-panel .cart-item-text{ padding-right:0; }

  #cart-panel .cart-item-right{
    position:static;
    margin-left:auto;
    padding-top:2px;
  }
}

@media (min-width:900px){
  #config-modal .config-dialog{
    height:780px !important;
    max-height:calc(100vh - 24px) !important;
  }
}

.cfg-acc-current{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:2px;
  white-space:normal;
  overflow:visible;
  text-overflow:clip;
  line-height:1.05;
}

.cfg-cur-label{
  max-width:240px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.cfg-cur-price{
  white-space:nowrap;
  text-align:right;
  font-weight:800;
  font-size:0.88rem;
  color:#e2e8f0;
}

@media (max-width:420px){
  .cfg-cur-label{ max-width:160px; }
}

.cfg-card.disabled,
.cfg-option.disabled{
  opacity:0.45;
  cursor:not-allowed;
}

.cfg-card.disabled:hover,
.cfg-option.disabled:hover{
  transform:none;
  border-color:var(--cfg-border-2);
}

.cfg-card .badge.cfg-badge-error{ color:#ef4444; }

#config-modal #config-add.btn{
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 12px;
}
