:root{
    --green:#2f8f2f;
    --green-dark:#1e5f22;
    --text:#152118;
    --muted:#64756a;
    --border:#dbe8dc;
    --bg:#f6faf6;
    --card:#ffffff;
    --shadow:0 10px 35px rgba(23,38,25,.08);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body.package-public-body{
    font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color:var(--text);
    background:
        radial-gradient(circle at top left, #edf8ef 0, transparent 30%),
        linear-gradient(180deg, #fbfdfb 0%, var(--bg) 100%);
    line-height:1.5;
}
.public-wrap{
    width:min(1200px, calc(100% - 32px));
    margin:0 auto;
}
.public-header{
    padding:26px 0 14px;
}
.public-brand{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:var(--green-dark);
    text-decoration:none;
    font-weight:800;
    letter-spacing:.01em;
}
.public-brand-mark{
    width:40px;height:40px;border-radius:12px;
    display:inline-flex;align-items:center;justify-content:center;
    background:linear-gradient(135deg, #37a83c, #2a7f2e);
    color:#fff;
    box-shadow:0 8px 20px rgba(47,143,47,.22);
}
.public-hero{
    padding:12px 0 36px;
}
.public-hero-card{
    display:grid;
    grid-template-columns:minmax(0, 1.1fr) minmax(320px, .9fr);
    gap:28px;
    padding:32px;
    border:1px solid var(--border);
    border-radius:28px;
    background:rgba(255,255,255,.92);
    box-shadow:var(--shadow);
    backdrop-filter:blur(4px);
}
.public-kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:14px;
    padding:8px 12px;
    border-radius:999px;
    background:#eef7ef;
    color:var(--green-dark);
    font-size:13px;
    font-weight:700;
}
.public-hero h1{
    margin:0 0 10px;
    font-size:clamp(32px, 5vw, 56px);
    line-height:1.03;
}
.public-lead{
    margin:0 0 22px;
    color:var(--muted);
    font-size:18px;
    max-width:60ch;
}
.public-highlights{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:12px;
    margin:0 0 24px;
}
.public-highlight{
    padding:14px 16px;
    border:1px solid var(--border);
    border-radius:16px;
    background:#fff;
}
.public-highlight span{
    display:block;
    margin-bottom:4px;
    color:var(--muted);
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.05em;
}
.public-highlight strong{
    font-size:26px;
}
.public-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}
.public-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 20px;
    border-radius:14px;
    font-weight:700;
    text-decoration:none;
    transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.public-button-primary{
    background:var(--green);
    color:#fff;
    box-shadow:0 10px 24px rgba(47,143,47,.25);
}
.public-button-primary:hover{
    transform:translateY(-1px);
    background:var(--green-dark);
}
.public-button-secondary{
    background:#fff;
    color:var(--text);
    border:1px solid var(--border);
}
.public-button-secondary:hover{
    transform:translateY(-1px);
    border-color:#c3d5c5;
}
.public-media{
    display:flex;
    flex-direction:column;
}
.public-media-card{
    padding:16px;
    border:1px solid var(--border);
    border-radius:24px;
    background:
        linear-gradient(135deg, #ffffff 0%, #f3faf4 100%);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
}
.public-single-image{
    aspect-ratio: 4 / 3;
    overflow:hidden;
    border-radius:20px;
    background:#fff;
    border:1px solid var(--border);
}
.public-single-image img{
    width:100%;height:100%;display:block;object-fit:cover;
}
.public-collage{
    display:grid;
    gap:10px;
}
.public-collage.cols-1{grid-template-columns:1fr}
.public-collage.cols-2{grid-template-columns:repeat(2, minmax(0,1fr))}
.public-collage.cols-3{grid-template-columns:repeat(3, minmax(0,1fr))}
.public-collage-tile{
    position:relative;
    aspect-ratio:1 / 1;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    border:1px solid var(--border);
}
.public-collage-tile img{
    width:100%;height:100%;display:block;object-fit:contain;padding:10px;
}
.public-collage-more{
    position:absolute;
    inset:auto 10px 10px auto;
    padding:6px 10px;
    border-radius:999px;
    background:rgba(21,33,24,.84);
    color:#fff;
    font-size:13px;
    font-weight:800;
}
.public-media-footer{
    display:flex;
    justify-content:space-between;
    gap:12px;
    margin-top:14px;
    padding-top:14px;
    border-top:1px solid var(--border);
}
.public-media-footer strong{display:block}
.public-media-footer span{color:var(--muted);font-size:13px}

.public-grid{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 330px;
    gap:22px;
    padding-bottom:48px;
}
.public-section-card,
.public-side-card{
    padding:24px;
    border:1px solid var(--border);
    border-radius:24px;
    background:#fff;
    box-shadow:var(--shadow);
}
.public-section-card h2,
.public-side-card h2{
    margin:0 0 8px;
    font-size:30px;
}
.public-section-card > p,
.public-side-card > p{
    margin:0 0 18px;
    color:var(--muted);
}
.public-products{
    display:flex;
    flex-direction:column;
    gap:14px;
}
.public-product{
    display:grid;
    grid-template-columns:92px minmax(0,1fr) auto;
    gap:16px;
    align-items:center;
    padding:16px;
    border:1px solid var(--border);
    border-radius:18px;
    background:#fcfdfc;
}
.public-product-thumb{
    width:92px;height:92px;
    border-radius:16px;
    overflow:hidden;
    border:1px solid var(--border);
    background:#fff;
    display:flex;align-items:center;justify-content:center;
}
.public-product-thumb img{
    width:100%;height:100%;display:block;object-fit:contain;padding:8px;
}
.public-product-thumb span{
    color:#9db1a0;font-size:28px;
}
.public-product-copy h3{
    margin:0 0 6px;
    font-size:24px;
    line-height:1.12;
}
.public-product-meta{
    display:flex;
    flex-wrap:wrap;
    gap:8px 12px;
    margin-bottom:8px;
    color:var(--muted);
    font-size:14px;
}
.public-badge{
    display:inline-flex;
    align-items:center;
    padding:5px 10px;
    border-radius:999px;
    background:#edf5ee;
    color:var(--green-dark);
    font-size:12px;
    font-weight:700;
}
.public-product-description{
    color:#46564c;
    font-size:15px;
}
.public-product-prices{
    text-align:right;
    min-width:155px;
}
.public-product-prices strong{
    display:block;
    font-size:28px;
    line-height:1.08;
}
.public-product-prices span{
    display:block;
    color:var(--muted);
    font-size:14px;
}
.public-side-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}
.public-side-row{
    display:flex;
    justify-content:space-between;
    gap:10px;
    padding-bottom:12px;
    border-bottom:1px solid var(--border);
}
.public-side-row:last-child{
    padding-bottom:0;
    border-bottom:0;
}
.public-side-row span{
    color:var(--muted);
}
.public-side-row strong{
    text-align:right;
}
.public-note{
    margin-top:18px;
    padding:14px 16px;
    border-radius:16px;
    background:#f6faf7;
    color:#49604e;
    font-size:14px;
}
.public-footer{
    padding:0 0 34px;
    color:var(--muted);
    font-size:14px;
}
.public-empty{
    padding:28px;
    border:1px dashed var(--border);
    border-radius:18px;
    background:#fbfdfb;
    text-align:center;
    color:var(--muted);
}
@media(max-width:980px){
    .public-hero-card,
    .public-grid{
        grid-template-columns:1fr;
    }
}
@media(max-width:760px){
    .public-wrap{
        width:min(100% - 20px, 1200px);
    }
    .public-header{
        padding-top:16px;
    }
    .public-hero-card,
    .public-section-card,
    .public-side-card{
        padding:18px;
        border-radius:20px;
    }
    .public-highlights{
        grid-template-columns:1fr;
    }
    .public-product{
        grid-template-columns:1fr;
    }
    .public-product-thumb{
        width:86px;height:86px;
    }
    .public-product-prices{
        text-align:left;
        min-width:0;
    }
}


/* V3.3.1 – optimierte öffentliche Paket-Collage */
.public-hero-collage{
    display:grid;
    grid-template-columns:minmax(0, 1.2fr) minmax(170px, .8fr);
    gap:10px;
    min-height:360px;
}
.public-hero-main-tile,
.public-hero-side-tile,
.public-hero-placeholder{
    border:1px solid var(--border);
    border-radius:18px;
    background:#fff;
    overflow:hidden;
}
.public-hero-main-tile{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:360px;
}
.public-hero-main-tile img{
    width:100%;
    height:100%;
    display:block;
    object-fit:contain;
    padding:16px;
}
.public-hero-side-tiles{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:10px;
}
.public-hero-side-tile{
    position:relative;
    min-height:175px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.public-hero-side-tile img{
    width:100%;
    height:100%;
    display:block;
    object-fit:contain;
    padding:12px;
}
.public-hero-placeholder{
    min-height:175px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:16px;
    color:var(--muted);
    text-align:center;
    font-size:14px;
}
@media(max-width:760px){
    .public-hero-collage{
        grid-template-columns:1fr;
        min-height:auto;
    }
    .public-hero-main-tile{
        min-height:260px;
    }
}


/* V3.3.2 – öffentliches Paket-Mosaik */
.public-product-mosaic{
    display:grid;
    gap:12px;
    padding:4px;
}
.public-product-mosaic.count-1{grid-template-columns:minmax(0,1fr)}
.public-product-mosaic.count-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.public-product-mosaic.count-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.public-product-mosaic.count-4{grid-template-columns:repeat(2,minmax(0,1fr))}
.public-product-mosaic.count-5,
.public-product-mosaic.count-6{grid-template-columns:repeat(3,minmax(0,1fr))}
.public-product-mosaic.count-7,
.public-product-mosaic.count-8{grid-template-columns:repeat(4,minmax(0,1fr))}
.public-mosaic-tile{
    position:relative;
    aspect-ratio:1 / 1;
    min-width:0;
    border:1px solid var(--border);
    border-radius:18px;
    background:#fff;
    box-shadow:0 7px 22px rgba(26,60,32,.07);
    overflow:hidden;
}
.public-mosaic-image-wrap{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.public-mosaic-image-wrap img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:7%;
    transform:scale(1.13);
    mix-blend-mode:multiply;
}
.public-mosaic-quantity{
    position:absolute;
    top:9px;
    right:9px;
    min-width:32px;
    height:28px;
    padding:0 8px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:var(--green);
    color:#fff;
    font-size:12px;
    font-weight:800;
}
.public-mosaic-more{
    position:absolute;
    left:8px;
    right:8px;
    bottom:8px;
    padding:7px 9px;
    border-radius:10px;
    background:rgba(21,33,24,.84);
    color:#fff;
    text-align:center;
    font-size:12px;
    font-weight:750;
}
@media(max-width:620px){
    .public-product-mosaic.count-3,
    .public-product-mosaic.count-5,
    .public-product-mosaic.count-6,
    .public-product-mosaic.count-7,
    .public-product-mosaic.count-8{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}


/* V3.3.3 – weichere, hochwertigere Paketcollage */
.public-media-card{
    background:
        radial-gradient(circle at 85% 12%, rgba(93,197,98,.13), transparent 28%),
        linear-gradient(145deg,#ffffff 0%,#eef7ef 100%);
}
.public-product-mosaic{
    gap:12px;
}
.public-mosaic-tile{
    border-color:rgba(205,221,208,.9);
    border-radius:20px;
    background:rgba(255,255,255,.91);
    box-shadow:
        0 10px 26px rgba(25,65,31,.09),
        inset 0 1px 0 rgba(255,255,255,.95);
}
.public-mosaic-tile:nth-child(2n){
    transform:translateY(3px);
}
.public-mosaic-image-wrap img{
    padding:8%;
    transform:scale(1.10);
}


/* V3.3.4 – Menge auf der öffentlichen Empfehlung anpassbar */
.public-customer-quantity{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px 12px;
    margin:12px 0 4px;
}
.public-customer-quantity-label{
    font-size:13px;
    font-weight:800;
    color:#344b39;
}
.public-quantity-control{
    display:grid;
    grid-template-columns:42px 62px 42px;
    min-height:42px;
    overflow:hidden;
    border:1px solid var(--border);
    border-radius:12px;
    background:#fff;
}
.public-quantity-step{
    border:0;
    background:#f1f6f2;
    color:var(--green-dark);
    font-size:20px;
    font-weight:700;
    cursor:pointer;
}
.public-quantity-step:hover{
    background:#e5f1e7;
}
.public-quantity-input{
    width:100%;
    min-width:0;
    padding:7px 3px;
    border:0;
    border-left:1px solid var(--border);
    border-right:1px solid var(--border);
    border-radius:0;
    background:#fff;
    color:var(--text);
    font:inherit;
    font-weight:800;
    text-align:center;
    appearance:textfield;
}
.public-quantity-input::-webkit-inner-spin-button,
.public-quantity-input::-webkit-outer-spin-button{
    appearance:none;
    margin:0;
}
.public-customer-quantity small{
    flex-basis:100%;
    color:var(--muted);
    font-size:12px;
}
@media(max-width:760px){
    .public-customer-quantity{
        align-items:flex-start;
    }
}


/* V3.4 – öffentlicher Vorteilspreis */
.public-advantage-badge{
    display:inline-flex;
    align-items:center;
    margin:0 0 12px;
    padding:7px 11px;
    border-radius:999px;
    border:1px solid #bddcbe;
    background:#edf8ee;
    color:var(--green-dark);
    font-size:12px;
    font-weight:800;
}
.public-highlight-advantage{
    border-color:#bcdcbc;
    background:#f3faf4;
}
.public-highlight-advantage del{
    display:block;
    color:#819087;
    font-size:13px;
    margin-bottom:1px;
}
.public-highlight-advantage small{
    display:block;
    margin-top:2px;
    color:var(--green-dark);
    font-size:11px;
    font-weight:800;
}
.public-side-price-values{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:2px;
}
.public-side-price-values del{
    color:#89958d;
    font-size:12px;
}

/* V3.4.2 – Vorteilspreis klarer + Mindestmenge */
.public-advantage-hero{
    display:grid;
    grid-template-columns:46px minmax(0,1fr) auto;
    gap:14px;
    align-items:center;
    margin:0 0 22px;
    padding:14px 16px;
    border:1px solid #afd7b2;
    border-radius:18px;
    background:linear-gradient(135deg,#eef9ef 0%,#e2f4e4 100%);
    box-shadow:0 8px 24px rgba(47,143,47,.10);
}
.public-advantage-hero-icon{
    width:46px;height:46px;display:grid;place-items:center;border-radius:14px;
    background:var(--green);color:#fff;font-size:21px;font-weight:900;
}
.public-advantage-hero-copy{min-width:0;display:flex;flex-direction:column;gap:2px}
.public-advantage-hero-copy span{
    color:#36763c;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.055em;
}
.public-advantage-hero-copy strong{color:#1d5223;font-size:15px;line-height:1.35}
.public-advantage-hero-price{display:flex;flex-direction:column;align-items:flex-end;white-space:nowrap}
.public-advantage-hero-price del{color:#78897c;font-size:14px}
.public-advantage-hero-price strong{color:#185d20;font-size:26px;line-height:1.1}
.public-customer-quantity small{color:#617466;font-weight:650}
.public-quantity-input:invalid{box-shadow:inset 0 0 0 1px #d89090}
@media(max-width:680px){
    .public-advantage-hero{grid-template-columns:42px minmax(0,1fr)}
    .public-advantage-hero-icon{width:42px;height:42px}
    .public-advantage-hero-price{
        grid-column:1/-1;flex-direction:row;align-items:baseline;justify-content:flex-end;gap:10px;
        padding-top:5px;border-top:1px solid rgba(85,145,91,.16);
    }
}


/* V3.5 – öffentliche LuxSmartify Hauptseite */
html{
    scroll-behavior:smooth;
}
.public-home-body{
    min-height:100vh;
}
.home-header{
    position:sticky;
    top:0;
    z-index:30;
    border-bottom:1px solid rgba(219,232,220,.85);
    background:rgba(251,253,251,.92);
    backdrop-filter:blur(14px);
}
.home-header-inner{
    min-height:76px;
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:28px;
    align-items:center;
}
.home-nav{
    display:flex;
    justify-content:center;
    gap:26px;
}
.home-nav a,
.home-admin-link{
    color:#536158;
    text-decoration:none;
    font-size:14px;
    font-weight:750;
}
.home-nav a:hover,
.home-admin-link:hover{
    color:var(--green-dark);
}
.home-admin-link{
    padding:9px 13px;
    border:1px solid var(--border);
    border-radius:11px;
    background:#fff;
}
.home-hero{
    padding:72px 0 56px;
}
.home-hero-grid{
    display:grid;
    grid-template-columns:minmax(0,1.12fr) minmax(330px,.88fr);
    gap:38px;
    align-items:center;
}
.home-eyebrow{
    display:inline-flex;
    margin-bottom:12px;
    color:var(--green-dark);
    font-size:12px;
    font-weight:850;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.home-hero-copy h1{
    max-width:760px;
    margin:0 0 18px;
    font-size:clamp(34px,5vw,64px);
    line-height:.98;
    letter-spacing:-.04em;
}
.home-hero-copy > p{
    max-width:650px;
    margin:0;
    color:var(--muted);
    font-size:19px;
}
.home-hero-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:28px;
}
.home-hero-showcase{
    position:relative;
    overflow:hidden;
    min-height:330px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
    border:1px solid #cfe2d1;
    border-radius:30px;
    background:
        radial-gradient(circle at 80% 10%, rgba(72,174,79,.25), transparent 32%),
        linear-gradient(145deg,#eef9ef 0%,#fff 66%);
    box-shadow:var(--shadow);
}
.home-hero-showcase::before{
    content:"L";
    position:absolute;
    top:-35px;
    right:18px;
    color:rgba(47,143,47,.075);
    font-size:220px;
    line-height:1;
    font-weight:950;
}
.home-showcase-chip{
    align-self:flex-start;
    margin-bottom:auto;
    padding:8px 11px;
    border-radius:999px;
    background:#fff;
    border:1px solid var(--border);
    color:var(--green-dark);
    font-size:12px;
    font-weight:800;
}
.home-hero-showcase > strong{
    position:relative;
    font-size:33px;
    line-height:1.05;
}
.home-hero-showcase > span{
    position:relative;
    max-width:46ch;
    margin-top:8px;
    color:var(--muted);
}
.home-showcase-stats{
    position:relative;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin-top:24px;
}
.home-showcase-stats div{
    padding:12px;
    border:1px solid rgba(207,226,209,.9);
    border-radius:14px;
    background:rgba(255,255,255,.72);
}
.home-showcase-stats strong,
.home-showcase-stats span{
    display:block;
}
.home-showcase-stats strong{
    font-size:21px;
}
.home-showcase-stats span{
    margin-top:2px;
    color:var(--muted);
    font-size:11px;
}
.home-selected-intro{
    padding:22px 0 0;
}
.home-selected-intro-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}
.home-selected-intro a{
    color:var(--green-dark);
    text-decoration:none;
    font-weight:800;
}
.home-selected-intro span{
    color:var(--muted);
    font-size:13px;
}
.home-package-detail{
    padding-top:18px;
}
.home-packages-section{
    padding:66px 0;
}
.home-section-head{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:24px;
    margin-bottom:24px;
}
.home-section-head h2{
    margin:0;
    font-size:clamp(30px,4vw,46px);
    line-height:1.05;
    letter-spacing:-.025em;
}
.home-section-head p{
    margin:8px 0 0;
    color:var(--muted);
}
.home-package-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}
.home-package-card{
    min-width:0;
    overflow:hidden;
    border:1px solid var(--border);
    border-radius:22px;
    background:#fff;
    box-shadow:0 8px 26px rgba(23,38,25,.055);
    transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
.home-package-card:hover{
    transform:translateY(-3px);
    border-color:#bfd8c2;
    box-shadow:0 16px 38px rgba(23,38,25,.10);
}
.home-package-card-link{
    display:block;
    height:100%;
    color:inherit;
    text-decoration:none;
}
.home-package-card-media{
    position:relative;
    height:210px;
    display:grid;
    place-items:center;
    padding:18px;
    background:
        radial-gradient(circle at 80% 10%,rgba(47,143,47,.09),transparent 35%),
        #f7faf7;
    border-bottom:1px solid var(--border);
}
.home-package-card-media img{
    width:100%;
    height:100%;
    object-fit:contain;
}
.home-package-placeholder{
    width:72px;
    height:72px;
    display:grid;
    place-items:center;
    border-radius:22px;
    background:var(--green);
    color:#fff;
    font-size:36px;
    font-weight:900;
}
.home-package-saving{
    position:absolute;
    top:14px;
    right:14px;
    padding:7px 10px;
    border-radius:999px;
    background:#1f7a28;
    color:#fff;
    font-size:12px;
    font-weight:900;
    box-shadow:0 7px 18px rgba(31,122,40,.22);
}
.home-package-card-body{
    padding:20px;
}
.home-package-card-meta{
    display:flex;
    justify-content:space-between;
    gap:10px;
    color:var(--muted);
    font-size:11px;
    font-weight:750;
}
.home-package-card h3{
    margin:8px 0 8px;
    font-size:22px;
    line-height:1.15;
}
.home-package-card p{
    min-height:43px;
    margin:0 0 18px;
    color:var(--muted);
    font-size:14px;
}
.home-package-card-footer{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:14px;
    padding-top:15px;
    border-top:1px solid #edf2ed;
}
.home-package-price{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}
.home-package-price del{
    color:#87938a;
    font-size:12px;
}
.home-package-price strong{
    color:var(--green-dark);
    font-size:22px;
}
.home-package-price span{
    color:var(--muted);
    font-size:10px;
    font-weight:750;
    text-transform:uppercase;
    letter-spacing:.045em;
}
.home-package-open{
    color:var(--green-dark);
    font-size:13px;
    font-weight:850;
}
.home-benefits{
    padding:58px 0 80px;
    border-top:1px solid var(--border);
    background:rgba(255,255,255,.62);
}
.home-benefit-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}
.home-benefit-grid article{
    padding:24px;
    border:1px solid var(--border);
    border-radius:20px;
    background:#fff;
}
.home-benefit-grid article > span{
    display:inline-flex;
    margin-bottom:24px;
    color:#86a18b;
    font-size:12px;
    font-weight:900;
}
.home-benefit-grid strong{
    display:block;
    margin-bottom:7px;
    font-size:20px;
}
.home-benefit-grid p{
    margin:0;
    color:var(--muted);
}
.home-notice{
    margin-top:22px;
    padding:14px 16px;
    border-radius:14px;
    font-weight:700;
}
.home-notice-error{
    border:1px solid #ebcaca;
    background:#fff5f5;
    color:#8e3434;
}
.public-referral-note{
    border-color:#bddcbe;
    background:#eff8f0;
    color:#315f35;
}
.home-footer{
    padding:30px 0;
}
.home-footer-inner{
    display:flex;
    justify-content:space-between;
    gap:24px;
    align-items:center;
}
.home-footer-inner div{
    display:flex;
    flex-direction:column;
}
.home-footer-inner span{
    color:var(--muted);
    font-size:12px;
}
.home-footer-inner a{
    color:var(--green-dark);
    text-decoration:none;
    font-weight:750;
}

@media(max-width:980px){
    .home-package-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .home-hero-grid{
        grid-template-columns:1fr;
    }
    .home-hero-showcase{
        min-height:280px;
    }
}
@media(max-width:720px){
    .home-header-inner{
        min-height:66px;
        grid-template-columns:1fr auto;
    }
    .home-nav{
        display:none;
    }
    .home-hero{
        padding:44px 0 38px;
    }
    .home-hero-copy h1{
        font-size:clamp(32px,10vw,48px);
    }
    .home-showcase-stats{
        grid-template-columns:1fr;
    }
    .home-package-grid,
    .home-benefit-grid{
        grid-template-columns:1fr;
    }
    .home-package-card-media{
        height:190px;
    }
    .home-selected-intro-inner,
    .home-footer-inner{
        align-items:flex-start;
        flex-direction:column;
    }
}


/* V3.5.2 – Paketkarten zeigen alle enthaltenen Produkte */
.home-package-custom-image{
    width:100%;
    height:100%;
    object-fit:contain;
}
.home-package-card-collage{
    width:100%;
    height:100%;
    display:grid;
    gap:7px;
}
.home-package-card-collage.count-1{
    grid-template-columns:1fr;
}
.home-package-card-collage.count-2{
    grid-template-columns:repeat(2,1fr);
}
.home-package-card-collage.count-3{
    grid-template-columns:repeat(3,1fr);
}
.home-package-card-collage.count-4{
    grid-template-columns:repeat(2,1fr);
    grid-template-rows:repeat(2,1fr);
}
.home-package-card-collage.count-5,
.home-package-card-collage.count-6{
    grid-template-columns:repeat(3,1fr);
}
.home-package-card-collage.count-7,
.home-package-card-collage.count-8,
.home-package-card-collage.count-9{
    grid-template-columns:repeat(3,1fr);
}
.home-package-card-collage.count-many{
    grid-template-columns:repeat(4,1fr);
}
.home-package-card-tile{
    position:relative;
    min-width:0;
    min-height:0;
    overflow:hidden;
    display:grid;
    place-items:center;
    padding:6px;
    border:1px solid rgba(211,225,213,.9);
    border-radius:12px;
    background:rgba(255,255,255,.88);
}
.home-package-card-tile img{
    width:100%;
    height:100%;
    max-height:100%;
    object-fit:contain;
}
.home-package-card-tile-placeholder{
    color:#9ba79e;
    font-size:22px;
}
.home-package-card-quantity{
    position:absolute;
    right:4px;
    bottom:4px;
    min-width:22px;
    height:22px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 6px;
    border-radius:999px;
    background:rgba(29,82,35,.90);
    color:#fff;
    font-size:10px;
    font-weight:900;
    box-shadow:0 2px 7px rgba(20,55,24,.18);
}
.home-package-card-collage.count-many .home-package-card-tile{
    padding:3px;
    border-radius:8px;
}
.home-package-card-collage.count-many .home-package-card-quantity{
    right:2px;
    bottom:2px;
    min-width:18px;
    height:18px;
    padding:0 4px;
    font-size:9px;
}

@media(max-width:720px){
    .home-package-card-collage{
        gap:6px;
    }
}


/* V3.5.3 – Paketkarten-Collage strikt im Bildbereich halten */
.home-package-card-media{
    overflow:hidden;
    min-height:0;
}
.home-package-card-collage{
    min-width:0;
    min-height:0;
    overflow:hidden;
    grid-auto-rows:minmax(0,1fr);
}
.home-package-card-collage.count-1{
    grid-template-rows:minmax(0,1fr);
}
.home-package-card-collage.count-2,
.home-package-card-collage.count-3{
    grid-template-rows:minmax(0,1fr);
}
.home-package-card-collage.count-4{
    grid-template-rows:repeat(2,minmax(0,1fr));
}
.home-package-card-collage.count-5,
.home-package-card-collage.count-6{
    grid-template-rows:repeat(2,minmax(0,1fr));
}
.home-package-card-collage.count-7,
.home-package-card-collage.count-8,
.home-package-card-collage.count-9{
    grid-template-rows:repeat(3,minmax(0,1fr));
}
.home-package-card-collage.count-many{
    grid-auto-rows:minmax(0,1fr);
}
.home-package-card-tile{
    width:100%;
    height:100%;
    min-width:0;
    min-height:0;
}
.home-package-card-tile img{
    display:block;
    min-width:0;
    min-height:0;
    max-width:100%;
    max-height:100%;
    overflow:hidden;
}
.home-package-card-body{
    position:relative;
    z-index:2;
    background:#fff;
}


/* V3.5.4 – gestaltete Ersatzbilder */
.public-image-fallback[hidden],
.home-package-image-fallback[hidden]{
    display:none!important;
}
.public-image-fallback,
.home-package-image-fallback{
    width:100%;
    height:100%;
    min-width:0;
    min-height:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    padding:8px;
    text-align:center;
    background:
        radial-gradient(circle at 72% 20%,rgba(47,143,47,.13),transparent 35%),
        linear-gradient(145deg,#f8fbf8,#edf6ee);
}
.public-image-fallback-mark{
    width:34px;
    height:34px;
    flex:0 0 auto;
    display:grid;
    place-items:center;
    border-radius:10px;
    background:#daeddb;
    color:#246a2b;
    font-size:18px;
    font-weight:950;
}
.public-image-fallback strong,
.home-package-image-fallback strong{
    max-width:100%;
    overflow:hidden;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    color:#334d37;
    font-size:10px;
    line-height:1.15;
}
.public-image-fallback small,
.home-package-image-fallback small{
    color:#829086;
    font-size:8px;
    font-weight:700;
}
.home-package-image-fallback{
    border-radius:8px;
}
.home-package-card-collage.count-1 .home-package-image-fallback strong,
.home-package-card-collage.count-2 .home-package-image-fallback strong,
.home-package-card-collage.count-3 .home-package-image-fallback strong{
    font-size:12px;
}
.public-mosaic-fallback{
    border-radius:10px;
}
.public-product-fallback{
    border-radius:12px;
}
.public-product-fallback strong{
    font-size:10px;
}


/* V3.5.5 – kaputte Bilder vollständig ausblenden */
.home-package-card-tile img[hidden],
.public-mosaic-image-wrap img[hidden],
.public-product-thumb img[hidden]{
    display:none!important;
}

.home-package-image-fallback,
.public-mosaic-fallback,
.public-product-fallback{
    overflow:hidden;
}

.home-package-image-fallback strong,
.public-mosaic-fallback strong,
.public-product-fallback strong{
    width:100%;
    max-width:100%;
    overflow:hidden;
    text-overflow:ellipsis;
    text-align:center;
}

.home-package-card-tile .home-package-image-fallback{
    position:absolute;
    inset:0;
    border-radius:inherit;
}


/* V3.6 – LuxSmartify als Lösungsbibliothek */
.solution-home-hero .home-hero-copy p strong{color:#1e3322}
.solution-hero-visual{min-height:360px;display:flex;flex-direction:column;justify-content:space-between;padding:30px;border:1px solid #cfe2d1;border-radius:30px;background:radial-gradient(circle at 85% 15%,rgba(52,151,62,.17),transparent 34%),linear-gradient(145deg,#f7fbf7,#edf7ee);box-shadow:var(--shadow)}
.solution-hero-question{max-width:430px;font-size:27px;line-height:1.2;font-weight:800;color:#314735}
.solution-hero-answer{padding:20px;border-radius:20px;background:#fff;border:1px solid #d8e7d9}.solution-hero-answer span{display:block;margin-bottom:5px;color:var(--green-dark);font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.07em}.solution-hero-answer strong{font-size:20px;line-height:1.3}
.solution-hero-mini{display:flex;gap:9px;flex-wrap:wrap}.solution-hero-mini span{padding:7px 10px;border-radius:999px;background:rgba(255,255,255,.8);border:1px solid #d8e7d9;color:#536158;font-size:11px;font-weight:750}
.solution-choice-section,.solution-room-section,.solution-situations-section,.solution-process-section,.solution-how-section,.solution-benefits-section{padding:58px 0}
.solution-choice-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.solution-choice-card{min-height:150px;display:flex;flex-direction:column;padding:20px;border:1px solid var(--border);border-radius:20px;background:#fff;color:inherit;text-decoration:none;transition:.18s ease}.solution-choice-card:hover,.solution-choice-card.is-active{transform:translateY(-2px);border-color:#aecdB1;background:#f5fbf5;box-shadow:0 12px 28px rgba(32,75,37,.08)}.solution-choice-icon{font-size:29px;margin-bottom:auto}.solution-choice-card strong{margin-top:20px;font-size:16px;line-height:1.25}.solution-choice-card small{margin-top:5px;color:var(--muted)}
.solution-card-tags,.solution-detail-tags{display:flex;gap:6px;flex-wrap:wrap}.solution-card-tags span,.solution-detail-tags span{padding:5px 8px;border-radius:999px;background:#f1f7f2;color:#57705b;font-size:10px;font-weight:800}.solution-card .home-package-card-meta{display:none}.solution-card .home-package-card-body p{min-height:52px}.solution-reset-filter{align-self:center;color:var(--green-dark);font-weight:800;text-decoration:none}
.solution-situations-section{background:#f5f9f5}.solution-situation-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.solution-situation-card{display:flex;flex-direction:column;min-height:220px;padding:24px;border:1px solid #d8e6d9;border-radius:22px;background:#fff;color:inherit;text-decoration:none}.solution-situation-card>span{font-size:28px}.solution-situation-card blockquote{margin:22px 0 auto;font-size:21px;line-height:1.35;font-weight:750}.solution-situation-card strong{margin-top:22px;color:var(--green-dark);font-size:13px}
.solution-process-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:12px}.solution-process-grid article{padding:20px;border:1px solid var(--border);border-radius:18px;background:#fff}.solution-process-grid article>span{width:32px;height:32px;display:grid;place-items:center;margin-bottom:24px;border-radius:10px;background:#e5f3e6;color:#276d2f;font-weight:900}.solution-process-grid strong{display:block;margin-bottom:7px;font-size:15px}.solution-process-grid p{margin:0;color:var(--muted);font-size:12px}
.solution-room-section{background:#fff}.solution-room-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.solution-room-grid a{min-height:126px;display:flex;flex-direction:column;padding:18px;border:1px solid var(--border);border-radius:18px;background:#fafcfa;color:inherit;text-decoration:none}.solution-room-grid a>span{font-size:26px;margin-bottom:auto}.solution-room-grid strong{margin-top:15px}.solution-room-grid small{margin-top:3px;color:var(--muted)}
.solution-new-section{border-top:1px solid var(--border)}
.solution-detail-tags{margin-bottom:10px}.solution-detail-teaser{max-width:690px;margin:10px 0 18px;color:#28412d;font-size:21px;line-height:1.35;font-weight:700}.public-advantage-hero-copy small{display:block;margin-top:5px;color:#427648}.public-advantage-hero-copy small b{font-weight:900}
.solution-how-section{background:#f6faf6}.solution-how-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.solution-how-grid article{position:relative;min-height:145px;padding:22px;border:1px solid #d7e6d8;border-radius:20px;background:#fff}.solution-how-grid article>span{width:34px;height:34px;display:grid;place-items:center;margin-bottom:22px;border-radius:50%;background:var(--green);color:#fff;font-weight:900}.solution-how-grid strong{font-size:16px;line-height:1.35}
.solution-benefit-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.solution-benefit-grid article{display:flex;align-items:flex-start;gap:10px;padding:18px;border:1px solid var(--border);border-radius:17px;background:#fff}.solution-benefit-grid article>span{width:26px;height:26px;display:grid;place-items:center;flex:0 0 auto;border-radius:50%;background:#e5f4e6;color:#246a2b;font-weight:900}.solution-benefit-grid strong{font-size:14px;line-height:1.35}
.solution-components-grid{padding-top:58px}.solution-saving-box{margin-top:15px;padding:14px;border:1px solid #bcdabc;border-radius:14px;background:#eff8f0}.solution-saving-box strong,.solution-saving-box span{display:block}.solution-saving-box span{margin-top:3px;color:#506b54;font-size:13px}
@media(max-width:1000px){.solution-choice-grid,.solution-room-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.solution-process-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.solution-how-grid,.solution-benefit-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:720px){.solution-hero-visual{min-height:310px}.solution-choice-grid,.solution-room-grid,.solution-situation-grid,.solution-process-grid,.solution-how-grid,.solution-benefit-grid{grid-template-columns:1fr}.solution-choice-card{min-height:120px}.solution-situation-card{min-height:190px}.solution-detail-teaser{font-size:18px}}

/* V3.6.1 – Premium-Homepage mit Bildwelten */
.home-header-premium{
    position:sticky;
    top:0;
    z-index:30;
    padding:14px 0;
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(210,224,212,.9);
}
.home-header-premium-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}
.premium-brand{gap:14px}
.premium-brand-copy{display:flex;flex-direction:column;line-height:1.05}
.premium-brand-copy strong{font-size:30px;letter-spacing:-.03em;color:#223126}
.premium-brand-copy small{font-size:12px;color:#708174;font-weight:600}
.premium-home-nav{display:flex;align-items:center;gap:28px}
.premium-home-nav a{color:#243127;text-decoration:none;font-size:14px;font-weight:650}
.premium-home-nav a:hover{color:var(--green-dark)}
.premium-header-actions{display:flex;align-items:center;gap:12px}
.home-admin-link{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:50%;border:1px solid var(--border);background:#fff;color:#263129;text-decoration:none;font-size:18px;box-shadow:0 6px 16px rgba(19,31,21,.06)}
.premium-header-cta{min-height:46px;padding:0 18px;border-radius:16px}
 .front-hero{padding:0 0 20px}
.front-hero-shell{padding-top:14px}
.front-hero-panel{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(420px,.95fr);
    gap:0;
    overflow:hidden;
    border:1px solid #dbe7dc;
    border-radius:34px;
    background:#fff;
    box-shadow:0 24px 56px rgba(15,29,18,.08);
}
.front-hero-copy{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:0;
    padding:54px 50px;
    color:#19231c;
    background:linear-gradient(180deg,#ffffff 0%,#fbfdfb 100%);
}
.front-kicker{display:inline-block;margin-bottom:14px;font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#5f755f}
.front-hero-copy h1{margin:0 0 18px;font-size:clamp(44px,6vw,68px);line-height:.94;letter-spacing:-.05em;font-family:inherit;font-weight:800;color:#16201a;max-width:560px}
.front-hero-copy p{margin:0;max-width:540px;font-size:19px;line-height:1.55;color:#5a6d5e}
.front-hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.front-hero-points{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.front-hero-points span{display:inline-flex;align-items:center;min-height:38px;padding:0 14px;border-radius:999px;background:#f2f7f2;border:1px solid #dbe8dd;color:#314b35;font-size:13px;font-weight:750}
.front-hero-media{position:relative;min-height:500px;background:#dfe7e1}
.front-hero-image{position:absolute;inset:0;background-size:cover;background-position:center}
.front-hero-media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,14,10,.04) 0%,rgba(7,14,10,.16) 100%)}
.front-hero-media-card{position:absolute;left:24px;right:24px;bottom:24px;z-index:2;max-width:420px;padding:18px 20px;border-radius:22px;background:rgba(255,255,255,.92);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.88);box-shadow:0 16px 34px rgba(18,31,22,.14)}
.front-hero-media-card strong{display:block;margin-bottom:6px;color:#16211b;font-size:22px;line-height:1.2;letter-spacing:-.03em}
.front-hero-media-card span{display:block;color:#55685a;font-size:14px;line-height:1.5}
.front-section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:22px}
.front-section-head h2{margin:0;font-size:40px;line-height:1.06;letter-spacing:-.04em;font-family:inherit;font-weight:800;color:#18221b}
.front-section-head p{margin:6px 0 0;color:#657669;font-size:16px}
.front-head-side{display:flex;align-items:center;gap:18px;flex-wrap:wrap;justify-content:flex-end}
.front-head-side span{color:#738476;font-size:13px}
.front-head-side a{color:var(--green-dark);font-weight:800;text-decoration:none;font-size:14px}
.front-category-section,.front-solutions-section,.front-situations-section,.front-process-section,.front-room-section,.front-cta-section{padding:26px 0 34px}
.front-category-grid{display:grid;grid-template-columns:repeat(8,minmax(0,1fr));gap:12px}
.front-category-card{min-height:108px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;padding:16px;border:1px solid #e1ece3;border-radius:18px;background:#fff;color:#1b251d;text-decoration:none;box-shadow:0 10px 24px rgba(25,42,28,.04);transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}
.front-category-card:hover,.front-category-card.is-active{transform:translateY(-2px);border-color:#bfd6c2;box-shadow:0 14px 28px rgba(25,42,28,.09)}
.front-category-icon{font-size:28px}
.front-category-card strong{font-size:15px;text-align:center;line-height:1.22}
.front-solutions-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.front-solution-card{border:1px solid #dbe8dd;border-radius:24px;background:#fff;overflow:hidden;box-shadow:0 18px 35px rgba(22,39,25,.07)}
.front-solution-link{display:flex;flex-direction:column;height:100%;color:inherit;text-decoration:none}
.front-solution-media{position:relative;aspect-ratio:16/9;background:#e7efe8;background-size:cover;background-position:center}
.front-solution-media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.03) 0%,rgba(0,0,0,.14) 100%)}
.front-solution-media.is-fallback{background:linear-gradient(135deg,#eff7f0,#dfece1)}
.front-solution-chip{position:absolute;top:14px;left:14px;z-index:2;width:42px;height:42px;display:grid;place-items:center;border-radius:14px;background:rgba(255,255,255,.96);box-shadow:0 8px 18px rgba(0,0,0,.12);font-size:22px}
.front-solution-body{display:flex;flex:1 1 auto;flex-direction:column;padding:22px}
.front-solution-body h3{margin:0 0 10px;font-size:23px;line-height:1.15;letter-spacing:-.03em}
.front-solution-body p{margin:0 0 14px;color:#5e6f62;font-size:15px;line-height:1.5;min-height:68px}
.front-solution-meta{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:16px}
.front-solution-meta span{padding:6px 10px;border-radius:999px;background:#f0f5f1;color:#5a6f5e;font-size:12px;font-weight:700}
.front-solution-footer{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;margin-top:auto;padding-top:14px;border-top:1px solid #ecf2ed}
.front-solution-price small{display:block;margin-bottom:4px;color:#6c7b6f;font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.06em}
.front-solution-price strong{display:block;font-size:42px;line-height:1;color:#20682a;letter-spacing:-.04em}
.front-solution-price span{display:block;margin-top:6px;color:#6c7b6f;font-size:13px}
.front-solution-action{display:inline-flex;align-items:center;gap:8px;color:#20682a;font-weight:800;white-space:nowrap}
.front-situation-grid,
.front-situations-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.front-situation-card{position:relative;min-height:168px;border-radius:22px;overflow:hidden;box-shadow:0 16px 32px rgba(23,39,26,.08)}
.front-situation-card a{display:block;height:100%;color:#fff;text-decoration:none}
.front-situation-image{position:absolute;inset:0;background:#dfe9e1;background-size:cover;background-position:center}
.front-situation-image::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.12) 0%,rgba(0,0,0,.55) 100%)}
.front-situation-overlay{position:relative;z-index:1;display:flex;flex-direction:column;justify-content:flex-end;height:100%;padding:22px}
.front-situation-overlay strong{font-size:18px;line-height:1.3;text-shadow:0 6px 16px rgba(0,0,0,.22)}
.front-situation-overlay span{margin-top:18px;display:inline-flex;align-items:center;gap:8px;font-size:14px;font-weight:700;color:rgba(255,255,255,.9)}
.front-process-section{background:linear-gradient(180deg,#f7faf7 0%,#eef4ef 100%);border-top:1px solid #edf4ee;border-bottom:1px solid #edf4ee}
.front-process-head{align-items:flex-start}
.front-process-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:16px}
.front-process-grid article{position:relative;padding:22px 18px 18px;border-radius:20px;background:#fff;border:1px solid #dbe7dc;box-shadow:0 12px 28px rgba(22,38,26,.04)}
.front-process-grid article span{display:grid;place-items:center;width:54px;height:54px;margin-bottom:18px;border-radius:18px;background:#edf6ee;color:#246b2c;font-size:24px;font-weight:900}
.front-process-grid article strong{display:block;margin-bottom:8px;font-size:18px;line-height:1.25}
.front-process-grid article p{margin:0;color:#5f7063;font-size:14px;line-height:1.45}
.front-room-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:14px}
.front-room-card{display:flex;flex-direction:column;border-radius:18px;overflow:hidden;background:#fff;border:1px solid #dbe6dc;color:inherit;text-decoration:none;box-shadow:0 14px 28px rgba(21,38,25,.05);transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
.front-room-card:hover,.front-room-card.is-active{transform:translateY(-2px);box-shadow:0 16px 34px rgba(21,38,25,.09);border-color:#bfd3c2}
.front-room-image{aspect-ratio:4/3;background:#edf3ee;background-size:cover;background-position:center}
.front-room-caption{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:12px 14px}
.front-room-caption strong{font-size:18px;line-height:1.15}
.front-room-caption small{color:#738374;font-size:12px;text-align:right}
.front-cta-banner{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:34px 38px;border-radius:28px;background:linear-gradient(120deg,#17351f 0%,#26482d 42%,#406343 100%);color:#fff;box-shadow:0 20px 40px rgba(18,33,21,.15)}
.front-cta-banner h2{margin:0 0 8px;font-size:40px;line-height:1.06;letter-spacing:-.04em;font-family:inherit;font-weight:800}
.front-cta-banner p{margin:0;color:rgba(255,255,255,.84);font-size:16px}
.front-cta-button{background:#fff;border:0;min-width:280px;color:#1d2a20;font-weight:800}
@media(max-width:1180px){
    .front-category-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
    .front-room-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
    .front-process-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:980px){
    .home-header-premium-inner,.premium-footer-inner{grid-template-columns:1fr;display:grid;justify-items:start}
    .premium-home-nav{flex-wrap:wrap;gap:16px}
    .premium-header-actions{width:100%;justify-content:space-between}
    .front-hero-panel{grid-template-columns:1fr}
    .front-hero-copy{padding:38px 26px 28px}
    .front-hero-media{min-height:340px}
    .front-solutions-grid,.front-situations-grid{grid-template-columns:1fr}
    .front-process-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .front-cta-banner{flex-direction:column;align-items:flex-start}
}
@media(max-width:760px){
    .front-section-head{flex-direction:column;align-items:flex-start}
    .front-head-side{justify-content:flex-start}
    .front-section-head h2{font-size:34px}
    .front-category-grid,.front-room-grid,.front-process-grid{grid-template-columns:1fr 1fr}
    .front-hero-copy h1{font-size:44px}
    .front-hero-copy p{font-size:17px}
    .front-hero-media-card{left:16px;right:16px;bottom:16px;padding:16px 16px 15px}
    .front-hero-media-card strong{font-size:20px}
    .front-solution-price strong{font-size:34px}
    .front-room-caption{flex-direction:column;align-items:flex-start}
    .front-cta-banner h2{font-size:34px}
}
@media(max-width:520px){
    .front-category-grid,.front-room-grid,.front-process-grid{grid-template-columns:1fr}
    .premium-header-cta{width:100%}
    .front-hero-copy h1{font-size:38px}
    .front-hero-actions .public-button{width:100%}
    .front-hero-points{gap:8px}
    .front-hero-points span{width:100%;justify-content:center}
    .front-solution-footer{flex-direction:column;align-items:flex-start}
    .front-cta-button{min-width:0;width:100%}
}
.premium-footer{padding:26px 0 34px;background:#fff;border-top:1px solid #e3ece4}
.premium-footer-inner{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:24px}
.premium-footer-nav{display:flex;justify-content:center;gap:22px;flex-wrap:wrap}
.premium-footer-nav a{color:#445348;text-decoration:none;font-size:14px}
.premium-footer-note{text-align:right;color:#6d7d70;font-size:14px;line-height:1.45}
@media(max-width:1180px){
    .front-category-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
    .front-room-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
    .front-process-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:980px){
    .home-header-premium-inner,.premium-footer-inner{grid-template-columns:1fr;display:grid;justify-items:start}
    .premium-home-nav{flex-wrap:wrap;gap:16px}
    .premium-header-actions{width:100%;justify-content:space-between}
    .front-hero-panel{grid-template-columns:1fr}
    .front-hero-copy{padding:42px 26px 34px;background:linear-gradient(180deg,rgba(10,15,14,.84) 0%,rgba(10,15,14,.58) 100%)}
    .front-hero-media{min-height:360px}
    .front-solutions-grid,.front-situations-grid{grid-template-columns:1fr}
    .front-process-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .front-cta-banner{flex-direction:column;align-items:flex-start}
}
@media(max-width:760px){
    .front-section-head{flex-direction:column;align-items:flex-start}
    .front-head-side{justify-content:flex-start}
    .front-section-head h2{font-size:38px}
    .front-category-grid,.front-room-grid,.front-process-grid{grid-template-columns:1fr 1fr}
    .front-hero-copy h1{font-size:56px}
    .front-hero-copy p{font-size:18px}
    .front-hero-copy p strong{font-size:21px}
    .front-hero-bar{gap:10px;padding:16px 18px}
    .front-hero-badge{top:18px;right:18px;font-size:16px}
    .front-hero-note{display:none}
    .front-solution-price strong{font-size:34px}
    .front-room-caption{flex-direction:column;align-items:flex-start}
    .front-cta-banner h2{font-size:38px}
}
@media(max-width:520px){
    .front-category-grid,.front-room-grid,.front-process-grid{grid-template-columns:1fr}
    .premium-header-cta{width:100%}
    .front-hero-copy h1{font-size:46px}
    .front-hero-actions .public-button{width:100%}
    .front-solution-footer{flex-direction:column;align-items:flex-start}
    .front-cta-button{min-width:0;width:100%}
}

/* V3.6.2 – Premium-Lösungsdetailseite */
.has-solution-detail{
    background:linear-gradient(180deg,#f9fbf9 0%,#f3f7f4 26%,#ffffff 100%);
}
.has-solution-detail .home-header-premium{
    background:rgba(255,255,255,.92);
}
.home-selected-intro{
    padding:18px 0 8px;
}
.home-selected-intro-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:12px 18px;
    border:1px solid #dde8de;
    border-radius:18px;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(10px);
    box-shadow:0 12px 26px rgba(19,32,22,.05);
}
.home-selected-intro-inner > a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 14px;
    border-radius:999px;
    background:#edf5ee;
    color:#244328;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
}
.home-selected-intro-copy{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:3px;
    min-width:0;
}
.home-selected-intro-copy strong{
    max-width:100%;
    color:#1f2b22;
    font-size:18px;
    line-height:1.1;
    letter-spacing:-.03em;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.home-selected-intro-copy span{
    color:#748376;
    font-size:13px;
}
.solution-detail-hero{
    padding:16px 0 42px;
}
.solution-detail-hero .public-hero-card{
    position:relative;
    gap:36px;
    padding:36px;
    border:1px solid rgba(206,221,208,.95);
    border-radius:34px;
    background:
        radial-gradient(circle at top right, rgba(223,239,226,.96) 0%, rgba(223,239,226,.96) 13%, rgba(255,255,255,.92) 44%, rgba(255,255,255,.98) 100%);
    box-shadow:0 28px 60px rgba(18,31,21,.08);
    overflow:hidden;
}
.solution-detail-hero .public-hero-card::after{
    content:"";
    position:absolute;
    right:-110px;
    top:-110px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(92,160,103,.14) 0%, rgba(92,160,103,0) 72%);
    pointer-events:none;
}
.solution-detail-hero .public-kicker{
    margin-bottom:16px;
    background:#1d2d21;
    color:#f3f7f4;
    box-shadow:0 10px 22px rgba(17,27,19,.1);
}
.solution-detail-tags{
    margin-bottom:12px;
    gap:8px;
}
.solution-detail-tags span{
    padding:8px 12px;
    background:#eef5ef;
    color:#35553a;
    font-size:12px;
    font-weight:800;
}
.solution-detail-hero .public-hero h1,
.solution-detail-hero h1{
    margin:0 0 14px;
    font-size:clamp(38px,5vw,66px);
    line-height:.95;
    letter-spacing:-.05em;
    font-family:Georgia,"Times New Roman",serif;
    color:#182119;
}
.solution-detail-teaser{
    max-width:700px;
    margin:8px 0 18px;
    color:#234029;
    font-size:25px;
    line-height:1.28;
    font-weight:700;
    letter-spacing:-.03em;
}
.solution-detail-hero .public-lead{
    margin:0 0 22px;
    max-width:62ch;
    color:#627365;
    font-size:17px;
    line-height:1.65;
}
.solution-detail-hero .public-highlights{
    gap:14px;
    margin-bottom:26px;
}
.solution-detail-hero .public-highlight{
    padding:18px 18px 16px;
    border-color:#d8e5d9;
    border-radius:18px;
    background:rgba(255,255,255,.86);
    box-shadow:0 10px 24px rgba(20,34,22,.04);
}
.solution-detail-hero .public-highlight strong{
    font-size:31px;
    color:#1d2620;
}
.solution-detail-hero .public-highlight span{
    margin-bottom:6px;
    font-size:11px;
    color:#6d7d70;
}
.solution-detail-hero .public-actions{
    gap:14px;
}
.solution-detail-hero .public-button{
    min-height:52px;
    border-radius:16px;
    padding:0 22px;
    box-shadow:0 14px 28px rgba(20,37,24,.08);
}
.solution-detail-hero .public-media{
    display:flex;
    align-items:stretch;
}
.solution-detail-hero .public-media-card{
    position:relative;
    width:100%;
    padding:20px;
    border:1px solid #dde8df;
    border-radius:28px;
    background:linear-gradient(180deg,#fdfefd 0%,#f1f6f2 100%);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.9),0 18px 36px rgba(18,30,22,.06);
}
.solution-detail-hero .public-media-card::before{
    content:"";
    position:absolute;
    inset:14px;
    border-radius:22px;
    border:1px dashed rgba(124,154,128,.18);
    pointer-events:none;
}
.solution-detail-hero .public-media-footer{
    position:relative;
    margin-top:16px;
    padding-top:16px;
}
.solution-detail-hero .public-media-footer strong{
    font-size:18px;
    letter-spacing:-.02em;
}
.solution-detail-hero .public-media-footer span{
    font-size:13px;
}
.solution-how-section,
.solution-benefits-section{
    padding:12px 0 10px;
}
.solution-how-section .home-section-head,
.solution-benefits-section .home-section-head{
    margin-bottom:20px;
}
.solution-how-grid,
.solution-benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
}
.solution-how-grid article,
.solution-benefit-grid article{
    padding:24px 22px;
    border-radius:22px;
    border:1px solid #dbe7dc;
    background:#fff;
    box-shadow:0 16px 32px rgba(18,31,21,.05);
}
.solution-how-grid article{
    position:relative;
    padding-top:70px;
}
.solution-how-grid article span{
    position:absolute;
    top:20px;
    left:20px;
    width:38px;
    height:38px;
    display:grid;
    place-items:center;
    border-radius:14px;
    background:#1f5d28;
    color:#fff;
    font-size:18px;
    font-weight:900;
    box-shadow:0 10px 20px rgba(31,93,40,.2);
}
.solution-how-grid article strong,
.solution-benefit-grid article strong{
    display:block;
    color:#202c22;
    font-size:18px;
    line-height:1.35;
}
.solution-benefit-grid article{
    display:flex;
    align-items:flex-start;
    gap:12px;
    background:linear-gradient(180deg,#ffffff 0%,#f8fbf8 100%);
}
.solution-benefit-grid article span{
    flex:0 0 auto;
    width:34px;
    height:34px;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:#eaf5ec;
    color:#21622a;
    font-size:18px;
    font-weight:900;
}
.solution-components-grid{
    align-items:start;
    padding-top:14px;
    padding-bottom:62px;
    gap:24px;
}
.solution-components-grid .public-section-card,
.solution-components-grid .public-side-card{
    border-radius:28px;
    border-color:#dde7de;
    box-shadow:0 20px 42px rgba(18,31,21,.06);
}
.solution-components-grid .public-section-card{
    padding:28px;
    background:#fff;
}
.solution-components-grid .public-section-card > h2{
    font-size:38px;
    line-height:1.04;
    letter-spacing:-.04em;
    font-family:Georgia,"Times New Roman",serif;
    color:#192218;
}
.solution-components-grid .public-section-card > p{
    max-width:56ch;
    color:#667667;
    margin-bottom:22px;
}
.solution-components-grid .public-products{
    gap:18px;
}
.solution-components-grid .public-product{
    grid-template-columns:108px minmax(0,1fr) 170px;
    gap:18px;
    align-items:flex-start;
    padding:18px;
    border-radius:22px;
    border-color:#dde7de;
    background:linear-gradient(180deg,#ffffff 0%,#f9fbf9 100%);
    box-shadow:0 12px 24px rgba(18,31,21,.04);
}
.solution-components-grid .public-product-thumb{
    width:108px;
    height:108px;
    border-radius:18px;
    border-color:#e1e9e2;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.92);
}
.solution-components-grid .public-product-copy h3{
    margin-bottom:8px;
    font-size:27px;
    letter-spacing:-.03em;
}
.solution-components-grid .public-product-meta{
    margin-bottom:12px;
    gap:8px;
}
.solution-components-grid .public-product-meta span{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:0 10px;
    border-radius:999px;
    background:#f2f6f2;
    color:#5d6f61;
    font-size:12px;
    font-weight:700;
}
.solution-components-grid .public-badge{
    background:#ebf6ec;
    color:#21602a;
}
.solution-components-grid .public-product-description{
    color:#657466;
    line-height:1.55;
}
.solution-components-grid .public-customer-quantity{
    margin:14px 0 0;
    padding:14px 16px;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    border:1px solid #dfe8e0;
    border-radius:18px;
    background:linear-gradient(180deg,#f8fbf8 0%,#eff6f0 100%);
}
.solution-components-grid .public-customer-quantity-label{
    font-size:14px;
    color:#263a2a;
}
.solution-components-grid .public-quantity-control{
    border-radius:14px;
    border-color:#d7e2d8;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}
.solution-components-grid .public-quantity-step{
    background:#eef4ef;
}
.solution-components-grid .public-customer-quantity small{
    flex-basis:100%;
    margin-top:-4px;
    color:#6b7a6d;
}
.solution-components-grid .public-product-prices{
    min-width:170px;
    padding:8px 0 0;
    text-align:right;
}
.solution-components-grid .public-product-prices strong{
    font-size:32px;
    color:#1e6828;
    letter-spacing:-.04em;
}
.solution-components-grid .public-product-prices span{
    margin-top:5px;
    font-size:13px;
}
.solution-components-grid .public-side-card{
    position:sticky;
    top:100px;
    padding:26px;
    background:linear-gradient(180deg,#1a211c 0%,#27322a 100%);
    color:#fff;
    border-color:rgba(0,0,0,.05);
    box-shadow:0 22px 42px rgba(12,20,13,.18);
}
.solution-components-grid .public-side-card h2{
    color:#fff;
    font-size:34px;
    line-height:1.02;
    letter-spacing:-.04em;
    font-family:Georgia,"Times New Roman",serif;
}
.solution-components-grid .public-side-list{
    margin-top:18px;
    gap:14px;
}
.solution-components-grid .public-side-row{
    padding-bottom:14px;
    border-bottom-color:rgba(255,255,255,.1);
}
.solution-components-grid .public-side-row span,
.solution-components-grid .public-side-price-values del,
.solution-components-grid .public-note{
    color:rgba(255,255,255,.72);
}
.solution-components-grid .public-side-row strong,
.solution-components-grid .public-side-price-values strong{
    color:#fff;
}
.solution-components-grid .public-side-price-values strong{
    font-size:34px;
    letter-spacing:-.04em;
}
.solution-saving-box{
    margin-top:18px;
    padding:16px 18px;
    border-radius:18px;
    background:linear-gradient(180deg,#244c2c 0%,#2e5f37 100%);
    border:1px solid rgba(255,255,255,.08);
}
.solution-saving-box strong{
    display:block;
    margin-bottom:6px;
    color:#fff;
    font-size:15px;
}
.solution-saving-box span,
.solution-saving-box b{
    color:#d9f2dd;
}
.solution-components-grid .public-referral-note{
    background:rgba(255,255,255,.08);
    color:rgba(255,255,255,.86);
}
@media(max-width:1100px){
    .solution-how-grid,
    .solution-benefit-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .solution-components-grid .public-product{grid-template-columns:94px minmax(0,1fr)}
    .solution-components-grid .public-product-prices{grid-column:2;min-width:0;text-align:left;padding-top:0}
}
@media(max-width:900px){
    .home-selected-intro-inner{align-items:flex-start;flex-direction:column}
    .home-selected-intro-copy{align-items:flex-start}
    .solution-detail-hero .public-hero-card{grid-template-columns:1fr;padding:28px}
    .solution-components-grid{grid-template-columns:1fr}
    .solution-components-grid .public-side-card{position:static;top:auto}
}
@media(max-width:720px){
    .solution-detail-teaser{font-size:20px}
    .solution-detail-hero .public-highlights{grid-template-columns:1fr}
    .solution-how-grid,
    .solution-benefit-grid{grid-template-columns:1fr}
    .solution-components-grid .public-section-card{padding:22px}
    .solution-components-grid .public-section-card > h2{font-size:32px}
    .solution-components-grid .public-product{grid-template-columns:1fr}
    .solution-components-grid .public-product-thumb{width:100px;height:100px}
    .solution-components-grid .public-product-prices{grid-column:auto;text-align:left}
}

/* V3.6.3 – Lösungsdialog auf der Hauptseite */
.solution-modal-open{
    overflow:hidden;
}
.solution-preview-modal{
    position:fixed;
    inset:0;
    z-index:1200;
}
.solution-preview-backdrop{
    position:absolute;
    inset:0;
    background:rgba(18,26,20,.62);
    backdrop-filter:blur(8px);
}
.solution-preview-dialog{
    position:relative;
    width:min(1120px, calc(100vw - 28px));
    max-height:min(88vh, 920px);
    margin:clamp(18px,4vh,42px) auto;
    overflow:auto;
    border-radius:30px;
    border:1px solid rgba(230,238,231,.8);
    background:linear-gradient(180deg,#fbfcfb 0%,#f3f7f4 100%);
    box-shadow:0 36px 90px rgba(10,18,12,.34);
}
.solution-preview-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(360px,460px);
    gap:0;
}
.solution-preview-media{
    padding:26px;
    background:linear-gradient(180deg,#eef4ef 0%,#f7faf7 100%);
    border-right:1px solid #dbe6dc;
}
.solution-preview-media .home-package-card-media,
.solution-preview-media .front-solution-media,
.solution-preview-media .front-situation-image{
    min-height:100%;
    height:100%;
    border-radius:26px;
    box-shadow:0 18px 36px rgba(18,31,21,.08);
}
.solution-preview-media .home-package-card-media{
    min-height:430px;
    padding:24px;
    background:#fff;
}
.solution-preview-media .home-package-card-collage{
    min-height:380px;
}
.solution-preview-media .front-solution-media,
.solution-preview-media .front-situation-image{
    min-height:430px;
    background-size:cover;
    background-position:center;
}
.solution-preview-media .front-solution-chip,
.solution-preview-media .home-package-saving{
    transform:scale(1.08);
}
.solution-preview-media-empty{
    min-height:430px;
    display:grid;
    place-items:center;
    border-radius:26px;
    background:#fff;
    color:#95ab98;
    font-size:72px;
    font-weight:900;
}
.solution-preview-copy{
    padding:34px 32px 32px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.solution-preview-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:12px;
}
.solution-preview-tags span{
    display:inline-flex;
    align-items:center;
    min-height:32px;
    padding:0 12px;
    border-radius:999px;
    background:#e9f2ea;
    color:#2e5634;
    font-size:12px;
    font-weight:800;
}
.solution-preview-kicker{
    margin-bottom:10px;
    color:#69806c;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.12em;
}
.solution-preview-copy h2{
    margin:0 0 14px;
    color:#182018;
    font-size:clamp(32px,3.7vw,52px);
    line-height:.96;
    letter-spacing:-.05em;
    font-family:Georgia,"Times New Roman",serif;
}
.solution-preview-copy p{
    margin:0 0 20px;
    color:#5e7061;
    font-size:18px;
    line-height:1.65;
}
.solution-preview-price{
    margin:0 0 22px;
    padding:18px 20px;
    border:1px solid #dde7de;
    border-radius:20px;
    background:#fff;
}
.solution-preview-price-label{
    display:block;
    margin-bottom:8px;
    color:#637465;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.1em;
}
.solution-preview-price-values{
    display:flex;
    flex-direction:column;
    gap:6px;
}
.solution-preview-price-values del{
    color:#91a093;
    font-size:18px;
}
.solution-preview-price-values strong{
    color:#1e6a29;
    font-size:40px;
    line-height:1;
    letter-spacing:-.05em;
}
.solution-preview-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}
.solution-preview-actions .public-button{
    min-height:52px;
    border-radius:16px;
}
.solution-preview-dismiss{
    border:1px solid var(--border);
}
.solution-preview-close{
    position:absolute;
    top:18px;
    right:18px;
    z-index:2;
    width:46px;
    height:46px;
    border:0;
    border-radius:50%;
    background:rgba(18,32,22,.08);
    color:#1e2a21;
    font-size:30px;
    line-height:1;
    cursor:pointer;
}
.solution-preview-close:hover{
    background:rgba(18,32,22,.14);
}
@media(max-width:900px){
    .solution-preview-dialog{width:min(100vw - 18px, 760px)}
    .solution-preview-layout{grid-template-columns:1fr}
    .solution-preview-media{border-right:0;border-bottom:1px solid #dbe6dc}
    .solution-preview-media .home-package-card-media,
    .solution-preview-media .front-solution-media,
    .solution-preview-media .front-situation-image,
    .solution-preview-media-empty{min-height:280px}
}
@media(max-width:640px){
    .solution-preview-dialog{margin:10px auto;max-height:calc(100vh - 20px);border-radius:22px}
    .solution-preview-media{padding:18px}
    .solution-preview-copy{padding:22px 18px 20px}
    .solution-preview-actions{flex-direction:column}
    .solution-preview-actions .public-button{width:100%}
}


/* V3.9 – Medien innerhalb einer geöffneten Lösung */
.solution-media-section{padding:24px 0 18px}
.solution-media-carousel{
    position:relative;
    max-width:980px;
    margin:0 auto;
}
.solution-media-track{
    display:flex;
    gap:14px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    touch-action:auto;
    overscroll-behavior-x:contain;
    overscroll-behavior-y:auto;
    padding:2px 2px 6px;
}
.solution-media-track::-webkit-scrollbar{display:none}
.solution-media-slide{
    flex:0 0 100%;
    min-width:0;
    scroll-snap-align:start;
    scroll-snap-stop:always;
}
.solution-media-slide img,.solution-media-slide video{
    width:100%;
    display:block;
    aspect-ratio:16/9;
    object-fit:cover;
    border-radius:26px;
    border:1px solid #dbe7dc;
    background:#101712;
    box-shadow:0 16px 34px rgba(18,31,21,.07);
}
.solution-media-dots{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:14px;
}
.solution-media-dot{
    width:10px;
    height:10px;
    border-radius:999px;
    border:none;
    padding:0;
    background:#ccd9cd;
    cursor:pointer;
    transition:transform .18s ease,background-color .18s ease,width .18s ease;
}
.solution-media-dot:hover{background:#9eb49f}
.solution-media-dot.is-active{
    width:28px;
    background:#2e8f2c;
}
@media(max-width:640px){
    .solution-media-section{padding:18px 0 12px}
    .solution-media-slide img,.solution-media-slide video{
        aspect-ratio:4/5;
        border-radius:22px;
    }
    .solution-media-dots{
        gap:8px;
        margin-top:12px;
    }
}

/* V3.9.1 – ruhigeres Bild im Bereich Beliebte Lösungen */
.front-solution-card .front-solution-chip{display:none}


/* V3.10.3 – schönere Paketdetailseite + Titelbild im Hero */
.solution-hero-visual-card{
    min-height:100%;
}
.solution-hero-title-image{
    position:relative;
    border-radius:22px;
    overflow:hidden;
    background:#eff5ef;
    min-height:420px;
}
.solution-hero-title-image img{
    width:100%;
    height:100%;
    min-height:420px;
    object-fit:cover;
    display:block;
}
.solution-detail-hero .public-media-card.solution-hero-visual-card::before{
    inset:12px;
}
.solution-glance-section{
    padding:4px 0 26px;
}
.solution-glance-grid{
    display:grid;
    grid-template-columns:minmax(0,1.45fr) minmax(300px,.9fr);
    gap:22px;
}
.solution-glance-card{
    padding:24px;
    border:1px solid #dbe7dc;
    border-radius:28px;
    background:#fff;
    box-shadow:0 18px 36px rgba(18,31,21,.05);
}
.solution-glance-card-head{
    margin-bottom:18px;
}
.solution-glance-kicker{
    display:inline-flex;
    padding:6px 10px;
    border-radius:999px;
    background:#edf5ee;
    color:#315338;
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.06em;
}
.solution-glance-card-head h3{
    margin:10px 0 0;
    font-size:28px;
    line-height:1.08;
    letter-spacing:-.03em;
}
.solution-glance-summary{
    display:flex;
    flex-direction:column;
}
.solution-glance-points{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    margin-bottom:18px;
}
.solution-glance-points div{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:14px;
    padding:14px 16px;
    border-radius:18px;
    background:#f7faf7;
    border:1px solid #e5eee6;
}
.solution-glance-points span{
    color:#607162;
    font-size:13px;
}
.solution-glance-points strong{
    color:#1d2b1f;
    font-size:24px;
    letter-spacing:-.03em;
}
.solution-glance-list{
    margin:0;
    padding:0 0 0 20px;
    color:#4f6353;
    line-height:1.6;
}
.solution-glance-list li+li{margin-top:8px}
.solution-glance-actions{
    margin-top:auto;
    padding-top:20px;
}
.solution-components-grid .public-section-card{
    box-shadow:0 18px 38px rgba(18,31,21,.05);
}
.solution-components-grid .public-side-card{
    box-shadow:0 18px 38px rgba(18,31,21,.06);
}
@media(max-width:980px){
    .solution-glance-grid{grid-template-columns:1fr}
    .solution-hero-title-image,
    .solution-hero-title-image img{min-height:320px}
}
@media(max-width:760px){
    .solution-glance-card{padding:18px}
    .solution-glance-card-head h3{font-size:24px}
    .solution-hero-title-image,
    .solution-hero-title-image img{min-height:250px}
}


/* V3.10.4 – neues hero layout für Paketseite */
.solution-cover-hero{
    padding:16px 0 18px;
}
.solution-cover-card{
    position:relative;
    min-height:540px;
    border-radius:34px;
    overflow:hidden;
    background:#203225;
    box-shadow:0 24px 54px rgba(16,28,19,.18);
}
.solution-cover-card.is-fallback{
    background:linear-gradient(135deg,#1b2b1f 0%,#35533c 54%,#54725a 100%);
}
.solution-cover-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.solution-cover-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(8,12,9,.72) 0%,rgba(8,12,9,.45) 36%,rgba(8,12,9,.18) 62%,rgba(8,12,9,.50) 100%),linear-gradient(180deg,rgba(8,12,9,.10) 0%,rgba(8,12,9,.12) 32%,rgba(8,12,9,.68) 100%);
}
.solution-cover-content{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    min-height:540px;
    max-width:min(720px, calc(100% - 48px));
    padding:42px;
    color:#fff;
}
.solution-cover-kicker{
    display:inline-flex;
    align-self:flex-start;
    margin-bottom:14px;
    background:rgba(255,255,255,.16);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    backdrop-filter:blur(10px);
    box-shadow:none;
}
.solution-cover-content .solution-detail-tags{
    margin-bottom:16px;
}
.solution-cover-content .solution-detail-tags span{
    background:rgba(255,255,255,.14);
    color:#fff;
    border:1px solid rgba(255,255,255,.14);
    backdrop-filter:blur(8px);
}
.solution-cover-content h1{
    margin:0 0 14px;
    font-size:clamp(42px,5.8vw,76px);
    line-height:.93;
    letter-spacing:-.05em;
    font-family:Georgia,"Times New Roman",serif;
    color:#fff;
    text-shadow:0 10px 24px rgba(0,0,0,.25);
}
.solution-cover-teaser{
    max-width:700px;
    margin:0 0 14px;
    color:rgba(255,255,255,.96);
    font-size:27px;
    line-height:1.2;
    font-weight:700;
    letter-spacing:-.03em;
}
.solution-cover-description{
    max-width:62ch;
    margin:0 0 18px;
    color:rgba(255,255,255,.82);
    font-size:16px;
    line-height:1.65;
}
.solution-cover-inline-meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:18px;
}
.solution-cover-inline-meta span{
    display:inline-flex;
    align-items:center;
    padding:9px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.14);
    color:#fff;
    font-size:13px;
    font-weight:700;
}
.solution-cover-actions{
    gap:14px;
}
.solution-cover-actions .public-button{
    min-height:52px;
    border-radius:16px;
    box-shadow:0 12px 26px rgba(8,12,9,.22);
}
.solution-cover-price-badge{
    position:absolute;
    right:28px;
    bottom:28px;
    z-index:2;
    display:flex;
    flex-direction:column;
    gap:4px;
    min-width:230px;
    padding:18px 20px;
    border-radius:24px;
    background:rgba(255,255,255,.94);
    color:#16311d;
    box-shadow:0 16px 40px rgba(8,12,9,.20);
    backdrop-filter:blur(12px);
}
.solution-cover-price-badge span{
    color:#607162;
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.06em;
}
.solution-cover-price-badge del{
    color:#8a978d;
    font-size:14px;
}
.solution-cover-price-badge strong{
    font-size:40px;
    line-height:1;
    letter-spacing:-.05em;
    color:#1f5d28;
}
.solution-cover-price-badge small{
    color:#496150;
    font-size:13px;
}
.solution-cover-fallback-mark{
    position:absolute;
    inset:0;
    display:grid;
    place-items:center;
    z-index:1;
    color:rgba(255,255,255,.22);
    font-size:140px;
    font-weight:900;
}
.solution-overview-section{
    padding:0 0 24px;
}
.solution-overview-grid{
    display:grid;
    grid-template-columns:minmax(0,1.2fr) minmax(340px,.9fr);
    gap:22px;
}
.solution-overview-copy-card,
.solution-overview-stats-card{
    padding:26px 28px;
    border-radius:28px;
    border:1px solid #dde8df;
    background:#fff;
    box-shadow:0 18px 40px rgba(18,31,21,.05);
}
.solution-overview-copy-card h2{
    margin:12px 0 10px;
    font-size:34px;
    line-height:1.05;
    letter-spacing:-.04em;
}
.solution-overview-copy-card > p{
    margin:0 0 12px;
    color:#29412f;
    font-size:19px;
    line-height:1.45;
    font-weight:600;
}
.solution-overview-description{
    color:#66786a;
    line-height:1.7;
}
.solution-overview-note{
    margin-top:18px;
    padding:14px 16px;
    border-radius:16px;
    background:#f5f8f5;
    color:#57695a;
    font-size:14px;
    line-height:1.55;
}
.solution-overview-highlights{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
    margin-bottom:18px;
}
.solution-overview-highlights .public-highlight{
    padding:18px 16px;
    border-radius:20px;
    background:#f8fbf8;
    box-shadow:none;
}
.solution-overview-highlights .public-highlight strong{
    font-size:30px;
}
.solution-overview-highlights .public-highlight span{
    font-size:11px;
}
@media(max-width:1100px){
    .solution-overview-grid{grid-template-columns:1fr}
}
@media(max-width:900px){
    .solution-cover-card,
    .solution-cover-content{min-height:500px}
    .solution-cover-content{max-width:calc(100% - 32px);padding:28px}
    .solution-cover-price-badge{left:28px;right:auto;bottom:28px}
}
@media(max-width:720px){
    .solution-cover-card,
    .solution-cover-content{min-height:460px}
    .solution-cover-content h1{font-size:42px}
    .solution-cover-teaser{font-size:22px}
    .solution-cover-description{font-size:15px}
    .solution-cover-price-badge{position:relative;left:auto;right:auto;bottom:auto;margin:0 16px 16px;min-width:0}
    .solution-overview-copy-card,
    .solution-overview-stats-card{padding:20px}
    .solution-overview-highlights{grid-template-columns:1fr}
}


/* V3.10.5 – kompaktere, modernere Paketseite */
.has-solution-detail,
.has-solution-detail button,
.has-solution-detail input,
.has-solution-detail select,
.has-solution-detail textarea{
    font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

/* Keine Serifenschrift auf der Paketseite */
.has-solution-detail .solution-cover-content h1,
.has-solution-detail .solution-overview-copy-card h2,
.has-solution-detail .solution-glance-card-head h3,
.has-solution-detail .home-section-head h2,
.has-solution-detail .solution-components-grid .public-section-card > h2,
.has-solution-detail .solution-components-grid .public-side-card h2{
    font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

/* Oberer Rücksprung kompakter */
.has-solution-detail .home-selected-intro{
    padding:10px 0 4px;
}
.has-solution-detail .home-selected-intro-inner{
    min-height:48px;
    padding:7px 12px;
    border-radius:14px;
    box-shadow:none;
}
.has-solution-detail .home-selected-intro-inner > a{
    padding:7px 10px;
    font-size:12px;
}
.has-solution-detail .home-selected-intro-copy strong{
    font-size:14px;
}
.has-solution-detail .home-selected-intro-copy span{
    font-size:11px;
}

/* Hero flacher und dichter */
.has-solution-detail .solution-cover-hero{
    padding:10px 0 14px;
}
.has-solution-detail .solution-cover-card{
    min-height:430px;
    border-radius:26px;
}
.has-solution-detail .solution-cover-content{
    min-height:430px;
    max-width:min(650px,calc(100% - 40px));
    padding:30px;
}
.has-solution-detail .solution-cover-content h1{
    margin-bottom:10px;
    font-size:clamp(36px,5vw,58px);
    line-height:.98;
    letter-spacing:-.045em;
    font-weight:780;
}
.has-solution-detail .solution-cover-teaser{
    max-width:620px;
    margin-bottom:10px;
    font-size:21px;
    line-height:1.25;
    font-weight:650;
}
.has-solution-detail .solution-cover-description{
    max-width:58ch;
    margin-bottom:12px;
    font-size:14px;
    line-height:1.55;
}
.has-solution-detail .solution-cover-content .solution-detail-tags{
    margin-bottom:10px;
}
.has-solution-detail .solution-cover-content .solution-detail-tags span{
    padding:6px 9px;
    font-size:10px;
}
.has-solution-detail .solution-cover-kicker{
    margin-bottom:10px;
    padding:6px 10px;
    font-size:10px;
}
.has-solution-detail .solution-cover-inline-meta{
    gap:7px;
    margin-bottom:13px;
}
.has-solution-detail .solution-cover-inline-meta span{
    padding:7px 10px;
    font-size:11px;
}
.has-solution-detail .solution-cover-actions{
    gap:9px;
}
.has-solution-detail .solution-cover-actions .public-button{
    min-height:44px;
    padding:0 16px;
    border-radius:13px;
    font-size:13px;
}
.has-solution-detail .solution-cover-price-badge{
    right:20px;
    bottom:20px;
    min-width:205px;
    padding:14px 16px;
    border-radius:18px;
}
.has-solution-detail .solution-cover-price-badge span{
    font-size:10px;
}
.has-solution-detail .solution-cover-price-badge strong{
    font-size:31px;
}
.has-solution-detail .solution-cover-price-badge small{
    font-size:11px;
}

/* Grundübersicht kompakter */
.has-solution-detail .solution-overview-section{
    padding:0 0 16px;
}
.has-solution-detail .solution-overview-grid{
    gap:14px;
    grid-template-columns:minmax(0,1.25fr) minmax(310px,.75fr);
}
.has-solution-detail .solution-overview-copy-card,
.has-solution-detail .solution-overview-stats-card{
    padding:20px;
    border-radius:20px;
    box-shadow:0 10px 24px rgba(18,31,21,.035);
}
.has-solution-detail .solution-overview-copy-card h2{
    margin:8px 0 7px;
    font-size:27px;
    line-height:1.08;
    font-weight:760;
}
.has-solution-detail .solution-overview-copy-card > p{
    margin-bottom:8px;
    font-size:16px;
    font-weight:550;
}
.has-solution-detail .solution-overview-description{
    font-size:13px;
    line-height:1.6;
}
.has-solution-detail .solution-overview-note{
    margin-top:12px;
    padding:11px 12px;
    border-radius:13px;
    font-size:12px;
}
.has-solution-detail .solution-overview-highlights{
    gap:8px;
    margin-bottom:11px;
}
.has-solution-detail .solution-overview-highlights .public-highlight{
    padding:13px 12px;
    border-radius:15px;
}
.has-solution-detail .solution-overview-highlights .public-highlight strong{
    font-size:23px;
}
.has-solution-detail .solution-overview-highlights .public-highlight span{
    font-size:9px;
}
.has-solution-detail .solution-saving-box{
    margin-top:10px;
    padding:11px 12px;
    border-radius:12px;
    font-size:12px;
}

/* Produktcollage / Überblick */
.has-solution-detail .solution-glance-section{
    padding:4px 0 16px;
}
.has-solution-detail .solution-glance-section .home-section-head{
    margin-bottom:14px;
}
.has-solution-detail .solution-glance-section .home-section-head h2{
    font-size:30px;
    font-weight:760;
}
.has-solution-detail .solution-glance-section .home-section-head p{
    margin-top:5px;
    font-size:13px;
}
.has-solution-detail .solution-glance-grid{
    gap:14px;
}
.has-solution-detail .solution-glance-card{
    padding:18px;
    border-radius:20px;
    box-shadow:0 10px 24px rgba(18,31,21,.035);
}
.has-solution-detail .solution-glance-card-head{
    margin-bottom:12px;
}
.has-solution-detail .solution-glance-kicker{
    padding:5px 8px;
    font-size:9px;
}
.has-solution-detail .solution-glance-card-head h3{
    margin-top:7px;
    font-size:21px;
    font-weight:730;
}
.has-solution-detail .solution-glance-points{
    gap:8px;
    margin-bottom:12px;
}
.has-solution-detail .solution-glance-points div{
    padding:10px 12px;
    border-radius:13px;
}
.has-solution-detail .solution-glance-points span{
    font-size:11px;
}
.has-solution-detail .solution-glance-points strong{
    font-size:19px;
}
.has-solution-detail .solution-glance-list{
    font-size:12px;
    line-height:1.5;
}
.has-solution-detail .solution-glance-list li+li{
    margin-top:4px;
}
.has-solution-detail .solution-glance-actions{
    padding-top:13px;
}

/* So funktioniert's und Vorteile */
.has-solution-detail .solution-how-section,
.has-solution-detail .solution-benefits-section{
    padding:18px 0 8px;
}
.has-solution-detail .solution-how-section .home-section-head,
.has-solution-detail .solution-benefits-section .home-section-head{
    margin-bottom:13px;
}
.has-solution-detail .home-section-head .home-eyebrow{
    font-size:10px;
}
.has-solution-detail .solution-how-section .home-section-head h2,
.has-solution-detail .solution-benefits-section .home-section-head h2{
    font-size:30px;
    font-weight:760;
}
.has-solution-detail .solution-how-grid,
.has-solution-detail .solution-benefit-grid{
    gap:10px;
}
.has-solution-detail .solution-how-grid article,
.has-solution-detail .solution-benefit-grid article{
    min-height:0;
    padding:16px;
    border-radius:16px;
    box-shadow:0 8px 18px rgba(18,31,21,.035);
}
.has-solution-detail .solution-how-grid article{
    padding-top:50px;
}
.has-solution-detail .solution-how-grid article span{
    top:14px;
    left:14px;
    width:28px;
    height:28px;
    border-radius:9px;
    font-size:13px;
}
.has-solution-detail .solution-benefit-grid article > span{
    width:23px;
    height:23px;
    font-size:12px;
}
.has-solution-detail .solution-how-grid article strong,
.has-solution-detail .solution-benefit-grid article strong{
    font-size:14px;
    line-height:1.4;
    font-weight:650;
}

/* Foto / Video kompakter */
.has-solution-detail .solution-media-section{
    padding:18px 0 8px;
}
.has-solution-detail .solution-media-section .home-section-head{
    margin-bottom:13px;
}
.has-solution-detail .solution-media-section .home-section-head h2{
    font-size:30px;
    font-weight:760;
}
.has-solution-detail .solution-media-gallery{
    gap:10px;
}
.has-solution-detail .solution-media-gallery img,
.has-solution-detail .solution-media-gallery video{
    border-radius:16px;
    box-shadow:none;
}

/* Komponenten kompakter */
.has-solution-detail .solution-components-grid{
    padding-top:24px;
    gap:14px;
}
.has-solution-detail .solution-components-grid .public-section-card,
.has-solution-detail .solution-components-grid .public-side-card{
    border-radius:20px;
    box-shadow:0 10px 24px rgba(18,31,21,.04);
}
.has-solution-detail .solution-components-grid .public-section-card{
    padding:20px;
}
.has-solution-detail .solution-components-grid .public-section-card > h2{
    margin-bottom:6px;
    font-size:28px;
    line-height:1.08;
    font-weight:760;
}
.has-solution-detail .solution-components-grid .public-section-card > p{
    margin-bottom:14px;
    font-size:13px;
}
.has-solution-detail .solution-components-grid .public-products{
    gap:8px;
}
.has-solution-detail .solution-components-grid .public-product{
    grid-template-columns:74px minmax(0,1fr) auto;
    gap:12px;
    padding:12px;
    border-radius:15px;
}
.has-solution-detail .solution-components-grid .public-product-thumb{
    width:74px;
    height:74px;
    border-radius:12px;
}
.has-solution-detail .solution-components-grid .public-product-copy h3{
    margin-bottom:5px;
    font-size:15px;
    font-weight:700;
}
.has-solution-detail .solution-components-grid .public-product-meta{
    gap:5px;
}
.has-solution-detail .solution-components-grid .public-product-meta span{
    padding:4px 7px;
    font-size:9px;
}
.has-solution-detail .solution-components-grid .public-product-description{
    margin-top:6px;
    font-size:11px;
    line-height:1.45;
}
.has-solution-detail .solution-components-grid .public-product-prices strong{
    font-size:17px;
}
.has-solution-detail .solution-components-grid .public-product-prices span{
    font-size:10px;
}
.has-solution-detail .solution-components-grid .public-customer-quantity{
    margin-top:8px;
    padding-top:8px;
}
.has-solution-detail .solution-components-grid .public-quantity-control{
    max-width:145px;
}
.has-solution-detail .solution-components-grid .public-side-card{
    padding:18px;
}
.has-solution-detail .solution-components-grid .public-side-card h2{
    font-size:21px;
    font-weight:740;
}
.has-solution-detail .solution-components-grid .public-side-row{
    padding:10px 0;
}
.has-solution-detail .solution-components-grid .public-side-row span{
    font-size:11px;
}
.has-solution-detail .solution-components-grid .public-side-row strong{
    font-size:14px;
}
.has-solution-detail .solution-components-grid .public-side-price-values strong{
    font-size:22px;
}

/* Weitere Lösungen */
.has-solution-detail .home-packages-section{
    padding:38px 0 48px;
}
.has-solution-detail .home-packages-section .home-section-head{
    margin-bottom:16px;
}
.has-solution-detail .home-packages-section .home-section-head h2{
    font-size:30px;
    font-weight:760;
}
.has-solution-detail .home-package-grid{
    gap:14px;
}
.has-solution-detail .home-package-card{
    border-radius:17px;
}
.has-solution-detail .home-package-card-media{
    height:170px;
}
.has-solution-detail .home-package-card-body{
    padding:15px;
}
.has-solution-detail .home-package-card h3{
    font-size:18px;
}
.has-solution-detail .home-package-card p{
    min-height:0;
    font-size:12px;
}
.has-solution-detail .home-package-price strong{
    font-size:18px;
}

@media(max-width:1100px){
    .has-solution-detail .solution-overview-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:900px){
    .has-solution-detail .solution-cover-card,
    .has-solution-detail .solution-cover-content{
        min-height:400px;
    }
    .has-solution-detail .solution-cover-content{
        padding:24px;
        max-width:calc(100% - 24px);
    }
    .has-solution-detail .solution-cover-price-badge{
        right:16px;
        bottom:16px;
    }
}

@media(max-width:720px){
    .has-solution-detail .home-selected-intro-copy{
        display:none;
    }
    .has-solution-detail .solution-cover-card{
        min-height:390px;
        border-radius:20px;
    }
    .has-solution-detail .solution-cover-content{
        min-height:390px;
        padding:20px;
        max-width:100%;
    }
    .has-solution-detail .solution-cover-content h1{
        font-size:36px;
    }
    .has-solution-detail .solution-cover-teaser{
        font-size:18px;
    }
    .has-solution-detail .solution-cover-description{
        display:none;
    }
    .has-solution-detail .solution-cover-actions .public-button{
        min-height:42px;
        padding:0 13px;
        font-size:12px;
    }
    .has-solution-detail .solution-cover-price-badge{
        position:relative;
        left:auto;
        right:auto;
        bottom:auto;
        margin:0 12px 12px;
        padding:12px 14px;
    }
    .has-solution-detail .solution-cover-price-badge strong{
        font-size:27px;
    }
    .has-solution-detail .solution-overview-copy-card,
    .has-solution-detail .solution-overview-stats-card,
    .has-solution-detail .solution-glance-card,
    .has-solution-detail .solution-components-grid .public-section-card,
    .has-solution-detail .solution-components-grid .public-side-card{
        padding:16px;
        border-radius:17px;
    }
    .has-solution-detail .solution-overview-copy-card h2,
    .has-solution-detail .solution-glance-section .home-section-head h2,
    .has-solution-detail .solution-how-section .home-section-head h2,
    .has-solution-detail .solution-benefits-section .home-section-head h2,
    .has-solution-detail .solution-media-section .home-section-head h2,
    .has-solution-detail .solution-components-grid .public-section-card > h2,
    .has-solution-detail .home-packages-section .home-section-head h2{
        font-size:24px;
    }
    .has-solution-detail .solution-how-grid,
    .has-solution-detail .solution-benefit-grid{
        grid-template-columns:1fr;
    }
    .has-solution-detail .solution-components-grid .public-product{
        grid-template-columns:64px minmax(0,1fr);
        padding:10px;
    }
    .has-solution-detail .solution-components-grid .public-product-thumb{
        width:64px;
        height:64px;
    }
    .has-solution-detail .solution-components-grid .public-product-prices{
        grid-column:2;
        text-align:left;
        padding-top:0;
    }
}


/* V3.10.6 – reduzierter Titelbereich der Paketseite */
.has-solution-detail .solution-cover-card{
    min-height:390px;
}
.has-solution-detail .solution-cover-content-clean{
    min-height:390px;
    max-width:760px;
    padding:32px;
    justify-content:flex-end;
}
.has-solution-detail .solution-cover-content-clean h1{
    margin:0 0 8px;
    max-width:720px;
    font-size:clamp(38px,5vw,58px);
    line-height:.98;
    font-weight:780;
    letter-spacing:-.045em;
}
.has-solution-detail .solution-cover-content-clean .solution-cover-teaser{
    max-width:650px;
    margin:0;
    font-size:20px;
    line-height:1.28;
    font-weight:600;
    color:rgba(255,255,255,.94);
}
.has-solution-detail .solution-cover-info-bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-top:10px;
    padding:12px 14px;
    border:1px solid #dfe8e0;
    border-radius:18px;
    background:#fff;
    box-shadow:0 8px 22px rgba(18,31,21,.035);
}
.has-solution-detail .solution-cover-info-tags{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
}
.has-solution-detail .solution-cover-info-tags span{
    display:inline-flex;
    align-items:center;
    padding:7px 10px;
    border-radius:999px;
    background:#f2f6f2;
    color:#44594a;
    font-size:11px;
    font-weight:650;
}
.has-solution-detail .solution-cover-price-inline{
    display:flex;
    align-items:baseline;
    justify-content:flex-end;
    gap:9px;
    flex-wrap:wrap;
    text-align:right;
}
.has-solution-detail .solution-cover-price-inline > span{
    color:#6c7b6f;
    font-size:10px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.06em;
}
.has-solution-detail .solution-cover-price-inline del{
    color:#8d9990;
    font-size:12px;
}
.has-solution-detail .solution-cover-price-inline strong{
    color:#20682a;
    font-size:25px;
    line-height:1;
    letter-spacing:-.035em;
}
.has-solution-detail .solution-cover-price-inline small{
    flex-basis:100%;
    color:#607162;
    font-size:10px;
}
/* Die alte Preisbox und Hero-Steuerung wird ab dieser Version nicht mehr verwendet. */
.has-solution-detail .solution-cover-price-badge,
.has-solution-detail .solution-cover-kicker,
.has-solution-detail .solution-cover-inline-meta,
.has-solution-detail .solution-cover-actions,
.has-solution-detail .solution-cover-content > .solution-detail-tags{
    display:none !important;
}

@media(max-width:720px){
    .has-solution-detail .solution-cover-hero{
        padding:8px 0 12px;
    }
    .has-solution-detail .solution-cover-card{
        min-height:315px;
        border-radius:18px;
    }
    .has-solution-detail .solution-cover-content-clean{
        min-height:315px;
        padding:18px;
        max-width:100%;
    }
    .has-solution-detail .solution-cover-overlay{
        background:linear-gradient(180deg,rgba(8,12,9,.08) 12%,rgba(8,12,9,.20) 45%,rgba(8,12,9,.82) 100%);
    }
    .has-solution-detail .solution-cover-content-clean h1{
        max-width:100%;
        margin-bottom:6px;
        font-size:34px;
        line-height:1;
        letter-spacing:-.04em;
    }
    .has-solution-detail .solution-cover-content-clean .solution-cover-teaser{
        max-width:100%;
        font-size:16px;
        line-height:1.3;
    }
    .has-solution-detail .solution-cover-info-bar{
        display:grid;
        grid-template-columns:1fr;
        gap:9px;
        margin-top:8px;
        padding:11px 12px;
        border-radius:15px;
    }
    .has-solution-detail .solution-cover-info-tags{
        order:2;
        gap:5px;
    }
    .has-solution-detail .solution-cover-info-tags span{
        padding:5px 8px;
        font-size:10px;
    }
    .has-solution-detail .solution-cover-price-inline{
        order:1;
        justify-content:flex-start;
        text-align:left;
        gap:7px;
    }
    .has-solution-detail .solution-cover-price-inline strong{
        font-size:24px;
    }
    .has-solution-detail .solution-cover-price-inline small{
        flex-basis:auto;
        font-size:10px;
    }
}


/* V3.10.9 – Galerie darf vertikales Seitenscrollen nicht blockieren */
@media(max-width:640px){
    .solution-media-track,
    .solution-media-slide{
        touch-action:auto;
    }
    .solution-media-track{
        overscroll-behavior-y:auto;
    }
    .solution-media-slide img{
        -webkit-user-drag:none;
        user-select:none;
    }
}

/* V3.11.0 – klare, ruhigere Struktur der Paketseite */
.has-solution-detail main{
    background:linear-gradient(180deg,#f7faf7 0%,#ffffff 38%,#ffffff 100%);
}
.has-solution-detail .home-selected-intro{
    padding:8px 0 2px;
}
.has-solution-detail .home-selected-intro-inner{
    border:0;
    background:transparent;
    box-shadow:none;
    backdrop-filter:none;
    padding:4px 0;
}
.has-solution-detail .home-selected-intro-inner > a{
    background:transparent;
    padding:7px 0;
    color:#315437;
}
.has-solution-detail .home-selected-intro-copy{display:none}

.has-solution-detail .solution-cover-hero{
    padding:8px 0 22px;
}
.has-solution-detail .solution-cover-card{
    min-height:390px;
    border-radius:26px;
    box-shadow:0 18px 44px rgba(17,29,20,.12);
}
.has-solution-detail .solution-cover-content{
    min-height:390px;
    max-width:720px;
    padding:34px;
}
.has-solution-detail .solution-cover-content h1{
    max-width:650px;
    font-size:clamp(38px,5vw,62px);
    line-height:.98;
}
.has-solution-detail .solution-cover-teaser{
    max-width:610px;
    font-size:20px;
    line-height:1.3;
    margin-bottom:0;
}
.has-solution-detail .solution-cover-info-bar{
    margin-top:12px;
    min-height:70px;
    padding:12px 16px;
    border:1px solid #dce8de;
    border-radius:18px;
    background:#fff;
    box-shadow:0 8px 22px rgba(19,34,22,.04);
}
.has-solution-detail .solution-cover-info-tags{
    gap:7px;
}
.has-solution-detail .solution-cover-info-tags span{
    padding:6px 9px;
    background:#f1f6f2;
    border:0;
    font-size:11px;
}
.has-solution-detail .solution-cover-price-inline{
    gap:7px;
}
.has-solution-detail .solution-cover-price-inline > span{
    font-size:10px;
}
.has-solution-detail .solution-cover-price-inline strong{
    font-size:28px;
}
.has-solution-detail .solution-cover-price-inline small{
    font-size:11px;
}

.has-solution-detail .solution-story-section,
.has-solution-detail .solution-benefits-compact-section,
.has-solution-detail .solution-package-visual-section,
.has-solution-detail .solution-media-section{
    padding:24px 0;
}
.has-solution-detail .solution-story-section{
    padding-top:10px;
}
.has-solution-detail .solution-story-grid{
    display:grid;
    grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);
    gap:28px;
    align-items:start;
    padding:28px 0;
    border-top:1px solid #e4ece5;
    border-bottom:1px solid #e4ece5;
}
.has-solution-detail .solution-story-main h2,
.has-solution-detail .solution-section-title-row h2{
    margin:8px 0 0;
    color:#17231a;
    font-size:clamp(27px,3.2vw,38px);
    line-height:1.08;
    letter-spacing:-.035em;
    font-weight:750;
}
.has-solution-detail .solution-story-description{
    margin-top:14px;
    max-width:62ch;
    color:#617064;
    font-size:15px;
    line-height:1.7;
}
.has-solution-detail .solution-story-steps{
    padding:18px;
    border:1px solid #dce8de;
    border-radius:18px;
    background:#f8fbf8;
}
.has-solution-detail .solution-story-step-list{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:12px;
}
.has-solution-detail .solution-story-step{
    display:grid;
    grid-template-columns:30px 1fr;
    gap:10px;
    align-items:start;
}
.has-solution-detail .solution-story-step > span{
    width:30px;
    height:30px;
    display:grid;
    place-items:center;
    border-radius:10px;
    background:#2c7b33;
    color:#fff;
    font-size:12px;
    font-weight:800;
}
.has-solution-detail .solution-story-step strong{
    padding-top:4px;
    color:#29382d;
    font-size:13px;
    line-height:1.45;
    font-weight:650;
}

.has-solution-detail .solution-section-title-row{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:14px;
}
.has-solution-detail .solution-section-title-row .home-eyebrow{
    font-size:10px;
}
.has-solution-detail .solution-benefit-strip{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:10px;
}
.has-solution-detail .solution-benefit-strip article{
    display:flex;
    align-items:flex-start;
    gap:10px;
    min-height:78px;
    padding:14px;
    border:1px solid #dfe9e0;
    border-radius:15px;
    background:#fff;
}
.has-solution-detail .solution-benefit-strip article span{
    width:24px;
    height:24px;
    flex:0 0 auto;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#e7f4e8;
    color:#24702b;
    font-size:12px;
    font-weight:900;
}
.has-solution-detail .solution-benefit-strip article strong{
    color:#2c3930;
    font-size:13px;
    line-height:1.4;
    font-weight:650;
}

.has-solution-detail .solution-package-visual-section{
    background:#f5f8f5;
    border-top:1px solid #e7eee8;
    border-bottom:1px solid #e7eee8;
}
.has-solution-detail .solution-package-visual-meta{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}
.has-solution-detail .solution-package-visual-meta span{
    padding:6px 9px;
    border-radius:999px;
    background:#fff;
    border:1px solid #dfe9e0;
    color:#5b6b5e;
    font-size:11px;
}
.has-solution-detail .solution-package-visual-card{
    padding:16px;
    border:1px solid #dfe8e0;
    border-radius:20px;
    background:#fff;
    box-shadow:0 8px 22px rgba(18,31,21,.035);
}
.has-solution-detail .solution-package-visual-card .public-product-mosaic{
    min-height:0;
}
.has-solution-detail .solution-package-visual-card .public-mosaic-tile{
    border-radius:14px;
}

.has-solution-detail .solution-media-section .home-section-head{
    margin-bottom:14px;
}
.has-solution-detail .solution-media-section .home-section-head h2{
    font-size:32px;
}
.has-solution-detail .solution-media-carousel{
    max-width:100%;
}
.has-solution-detail .solution-media-slide img,
.has-solution-detail .solution-media-slide video{
    aspect-ratio:16/8.5;
    border-radius:20px;
    box-shadow:0 10px 24px rgba(18,31,21,.05);
}

.has-solution-detail .solution-components-grid{
    padding-top:28px;
    padding-bottom:26px;
    gap:16px;
}
.has-solution-detail .solution-components-grid .public-section-card,
.has-solution-detail .solution-components-grid .public-side-card{
    border-radius:18px;
}
.has-solution-detail .solution-components-grid .public-section-card > h2{
    font-size:29px;
}
.has-solution-detail .solution-components-grid .public-section-card > p{
    max-width:62ch;
    color:#67756a;
}
.has-solution-detail .solution-components-grid .public-product{
    border:0;
    border-top:1px solid #e8eee9;
    border-radius:0;
    background:transparent;
}
.has-solution-detail .solution-components-grid .public-product:first-child{
    border-top:0;
}
.has-solution-detail .solution-components-grid .public-side-card{
    border:1px solid #dce8de;
    background:#f8fbf8;
    box-shadow:none;
}
.has-solution-detail .solution-components-grid .public-side-card .home-eyebrow{
    font-size:9px;
}

.has-solution-detail .home-packages-section{
    padding:34px 0 48px;
    border-top:1px solid #e5ece6;
    background:#fafcfb;
}
.has-solution-detail .home-packages-section .home-section-head h2{
    font-size:30px;
}

@media(max-width:980px){
    .has-solution-detail .solution-story-grid{grid-template-columns:1fr}
    .has-solution-detail .solution-benefit-strip{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:720px){
    .has-solution-detail .solution-cover-card,
    .has-solution-detail .solution-cover-content{min-height:340px}
    .has-solution-detail .solution-cover-content{padding:22px}
    .has-solution-detail .solution-cover-content h1{font-size:38px}
    .has-solution-detail .solution-cover-teaser{font-size:17px}
    .has-solution-detail .solution-cover-info-bar{
        align-items:flex-start;
        gap:10px;
        padding:12px;
    }
    .has-solution-detail .solution-cover-price-inline{align-items:flex-end}
    .has-solution-detail .solution-story-section,
    .has-solution-detail .solution-benefits-compact-section,
    .has-solution-detail .solution-package-visual-section,
    .has-solution-detail .solution-media-section{padding:18px 0}
    .has-solution-detail .solution-story-grid{gap:18px;padding:20px 0}
    .has-solution-detail .solution-story-main h2,
    .has-solution-detail .solution-section-title-row h2{font-size:26px}
    .has-solution-detail .solution-story-steps{padding:14px}
    .has-solution-detail .solution-benefit-strip{grid-template-columns:1fr;gap:8px}
    .has-solution-detail .solution-benefit-strip article{min-height:0}
    .has-solution-detail .solution-section-title-row{align-items:flex-start;flex-direction:column;gap:10px}
    .has-solution-detail .solution-package-visual-card{padding:10px;border-radius:16px}
    .has-solution-detail .solution-media-slide img,
    .has-solution-detail .solution-media-slide video{aspect-ratio:4/3;border-radius:16px}
    .has-solution-detail .solution-components-grid{padding-top:18px}
}


/* V3.11.1 – dezente Pfeile für Foto-/Video-Slider */
.solution-media-arrow{
    position:absolute;
    top:50%;
    z-index:4;
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    transform:translateY(-50%);
    border:1px solid rgba(255,255,255,.42);
    border-radius:999px;
    background:rgba(18,31,21,.38);
    color:#fff;
    font-size:30px;
    line-height:1;
    font-weight:400;
    cursor:pointer;
    opacity:.72;
    backdrop-filter:blur(8px);
    box-shadow:0 6px 18px rgba(0,0,0,.12);
    transition:opacity .18s ease,background-color .18s ease,transform .18s ease;
}
.solution-media-arrow:hover{
    opacity:1;
    background:rgba(18,31,21,.58);
}
.solution-media-arrow:active{
    transform:translateY(-50%) scale(.96);
}
.solution-media-arrow-prev{left:14px}
.solution-media-arrow-next{right:14px}
.solution-media-arrow[disabled]{
    opacity:.22;
    cursor:default;
}
@media(max-width:640px){
    .solution-media-arrow{
        width:36px;
        height:36px;
        font-size:25px;
        opacity:.58;
    }
    .solution-media-arrow-prev{left:9px}
    .solution-media-arrow-next{right:9px}
}


/* V3.11.6 – Zusammenfassung „Komplettlösung“ lesbar und kompakt */
.has-solution-detail .solution-components-grid .public-side-card{
    position:sticky;
    top:92px;
    padding:18px;
    border:1px solid #dce7dd;
    border-radius:18px;
    background:#fff;
    color:#1c2a1f;
    box-shadow:0 10px 24px rgba(18,31,21,.05);
}

.has-solution-detail .solution-components-grid .public-side-card .home-eyebrow{
    margin-bottom:8px;
    color:#2f6f35;
    font-size:9px;
    letter-spacing:.08em;
}

.has-solution-detail .solution-components-grid .public-side-card h2{
    margin:0 0 12px;
    color:#18251b;
    font-size:20px;
    line-height:1.15;
    font-weight:760;
    letter-spacing:-.025em;
}

.has-solution-detail .solution-components-grid .public-side-list{
    margin-top:0;
    gap:0;
}

.has-solution-detail .solution-components-grid .public-side-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:10px 0;
    border-bottom:1px solid #edf2ee;
}

.has-solution-detail .solution-components-grid .public-side-row:last-child{
    border-bottom:0;
}

.has-solution-detail .solution-components-grid .public-side-row span{
    color:#718074;
    font-size:11px;
}

.has-solution-detail .solution-components-grid .public-side-row strong{
    color:#1d2b20;
    font-size:13px;
    font-weight:700;
}

.has-solution-detail .solution-components-grid .public-side-price-values{
    align-items:flex-end;
}

.has-solution-detail .solution-components-grid .public-side-price-values del{
    color:#89958d;
    font-size:11px;
}

.has-solution-detail .solution-components-grid .public-side-price-values strong{
    color:#2b7a32;
    font-size:21px;
    font-weight:780;
    letter-spacing:-.025em;
}

.has-solution-detail .solution-components-grid .solution-saving-box{
    margin-top:12px;
    padding:12px 13px;
    border:0;
    border-radius:13px;
    background:#eef7ef;
}

.has-solution-detail .solution-components-grid .solution-saving-box strong{
    margin-bottom:3px;
    color:#24592a;
    font-size:12px;
}

.has-solution-detail .solution-components-grid .solution-saving-box span,
.has-solution-detail .solution-components-grid .solution-saving-box b{
    color:#4d6851;
    font-size:12px;
}

@media(max-width:980px){
    .has-solution-detail .solution-components-grid .public-side-card{
        position:static;
        top:auto;
    }
}


/* V3.12.0 – Warenkorb */
.public-cart-link{position:relative;text-decoration:none}
.public-cart-link span{
    position:absolute;top:-6px;right:-6px;min-width:18px;height:18px;padding:0 5px;display:grid;place-items:center;
    border-radius:999px;background:#2d8f2d;color:#fff;font-size:10px;font-weight:800;border:2px solid #fff
}
.public-cart-link.is-active{border-color:#b8d7bb;background:#eff8f0}
.solution-add-cart-form{margin-top:14px}
.solution-add-cart-button{width:100%;min-height:48px;border:0}
.cart-main{padding:30px 0 64px;background:linear-gradient(180deg,#f7faf7 0%,#fff 30%)}
.cart-page-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:22px}
.cart-page-head h1{margin:2px 0 8px;font-size:clamp(36px,5vw,58px);letter-spacing:-.045em}
.cart-page-head p{margin:0;color:#667568}
.cart-text-button,.cart-remove-button{border:0;background:none;color:#657568;text-decoration:underline;cursor:pointer;font:inherit}
.cart-layout{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:20px;align-items:start}
.cart-packages{display:flex;flex-direction:column;gap:16px}
.cart-package-card,.cart-summary-card,.cart-empty{
    border:1px solid #dce7dd;border-radius:22px;background:#fff;box-shadow:0 12px 28px rgba(18,31,21,.05)
}
.cart-package-card{overflow:hidden}
.cart-package-head{display:flex;justify-content:space-between;gap:18px;padding:20px;border-bottom:1px solid #edf2ee}
.cart-package-kicker{color:#2e7135;font-size:10px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}
.cart-package-head h2{margin:5px 0 5px;font-size:25px;letter-spacing:-.03em}
.cart-package-head p{margin:0;color:#667568;font-size:13px}
.cart-product-list{padding:4px 20px}
.cart-product-row{display:grid;grid-template-columns:64px minmax(0,1fr) 74px 110px;gap:12px;align-items:center;padding:13px 0;border-bottom:1px solid #edf2ee}
.cart-product-row:last-child{border-bottom:0}
.cart-product-thumb{width:64px;height:64px;display:grid;place-items:center;border:1px solid #e3ebe4;border-radius:12px;background:#fff;overflow:hidden}
.cart-product-thumb img{width:100%;height:100%;object-fit:contain;padding:6px}
.cart-product-thumb span{font-size:24px;font-weight:850;color:#2f7736}
.cart-product-copy strong{display:block;font-size:14px}
.cart-product-copy small,.cart-product-price small{display:block;margin-top:3px;color:#77847a;font-size:10px}
.cart-product-quantity{text-align:center}
.cart-product-quantity span{display:block;color:#77847a;font-size:10px}
.cart-product-quantity strong{font-size:16px}
.cart-product-price{text-align:right}
.cart-product-price strong{font-size:15px;color:#246b2c}
.cart-package-footer{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:14px 20px;background:#f8faf8;border-top:1px solid #edf2ee}
.cart-package-footer>span{color:#68786b;font-size:11px}
.cart-package-footer>div{display:flex;align-items:center;gap:8px}
.cart-package-footer del{color:#8e9990;font-size:12px}
.cart-package-footer strong{color:#246b2c;font-size:20px}
.cart-summary-card{position:sticky;top:90px;padding:20px}
.cart-summary-card h2{margin:2px 0 16px;font-size:26px}
.cart-summary-row{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:11px 0;border-bottom:1px solid #edf2ee}
.cart-summary-row span{color:#68786b;font-size:12px}
.cart-summary-row strong{font-size:14px}
.cart-shipping-form{padding:14px 0;border-bottom:1px solid #edf2ee}
.cart-shipping-form label{display:block;color:#4f6253;font-size:12px;font-weight:650}
.cart-shipping-form select{width:100%;margin-top:7px;padding:11px 12px;border:1px solid #d8e4d9;border-radius:12px;background:#fff;color:#26392a}
.cart-shipping-note{margin-top:10px;padding:10px 11px;border-radius:11px;background:#f4f7f4;color:#657368;font-size:11px;line-height:1.45}
.cart-summary-total{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;padding:18px 0 10px}
.cart-summary-total span{font-weight:700}
.cart-summary-total strong{color:#23702c;font-size:30px;letter-spacing:-.04em}
.cart-summary-footnote{display:block;color:#7b877d;font-size:10px;line-height:1.45}
.cart-empty{padding:54px 24px;text-align:center}
.cart-empty-icon{font-size:42px}
.cart-empty h2{margin:12px 0 7px}
.cart-empty p{max-width:500px;margin:0 auto 20px;color:#68786b}
.cart-notice-success{border:1px solid #c9e0cb;background:#f1f8f2;color:#285e2e}

@media(max-width:980px){
    .cart-layout{grid-template-columns:1fr}
    .cart-summary-card{position:static}
}
@media(max-width:720px){
    .public-cart-link{display:grid}
    .cart-main{padding-top:18px}
    .cart-page-head{align-items:flex-start;flex-direction:column}
    .cart-page-head h1{font-size:36px}
    .cart-package-head{padding:16px}
    .cart-product-list{padding:0 16px}
    .cart-product-row{grid-template-columns:54px minmax(0,1fr) auto;gap:10px}
    .cart-product-thumb{width:54px;height:54px}
    .cart-product-quantity{grid-column:2;text-align:left;display:flex;gap:6px;align-items:center}
    .cart-product-price{grid-column:3;grid-row:1 / span 2}
    .cart-package-footer{padding:12px 16px}
}


/* V3.12.1 – aufklappbare Paketdetails + AJAX-Versand */
.cart-package-details{
    border-top:1px solid #edf2ee;
}
.cart-package-details > summary{
    list-style:none;
    display:grid;
    grid-template-columns:minmax(0,1fr) auto auto;
    align-items:center;
    gap:10px;
    padding:13px 20px;
    cursor:pointer;
    user-select:none;
    background:#fbfcfb;
    color:#344b38;
}
.cart-package-details > summary::-webkit-details-marker{
    display:none;
}
.cart-package-details > summary span:first-child{
    font-size:12px;
    font-weight:700;
}
.cart-package-details > summary strong{
    color:#718074;
    font-size:11px;
    font-weight:650;
}
.cart-details-chevron{
    color:#718074;
    font-size:18px;
    transition:transform .18s ease;
}
.cart-package-details[open] .cart-details-chevron{
    transform:rotate(180deg);
}
.cart-package-details .cart-product-list{
    border-top:1px solid #edf2ee;
}
.cart-summary-row strong.is-updating,
.cart-summary-total strong.is-updating{
    opacity:.45;
}
.cart-shipping-form select:disabled{
    opacity:.7;
    cursor:wait;
}
@media(max-width:720px){
    .cart-package-details > summary{
        padding:12px 16px;
    }
}


/* V3.12.3 – Versandlandwechsel auf iOS stabil */
.cart-shipping-form select.is-updating{
    opacity:.72;
    cursor:progress;
}


/* V3.12.4 – stabiler Versandlandwechsel */
.cart-shipping-form select.is-updating{
    opacity:.68;
    background-image:none;
}


/* =========================================================
   V3.13.0 – LuxSmartify Shop-Redesign
   Eigenständige, klare Smart-Home-Shop-Ästhetik
   ========================================================= */
:root{
    --lux-green:#20a83a;
    --lux-green-dark:#087a26;
    --lux-neon:#79f45d;
    --lux-ink:#111611;
    --lux-muted:#747a75;
    --lux-soft:#f4f5f4;
    --lux-line:#e8eae8;
    --lux-card:#fff;
}
.package-public-body,
.public-home-body{
    background:#fff;
    color:var(--lux-ink);
    font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
.public-wrap{width:min(100% - 40px,1320px)}
.home-header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(255,255,255,.96);
    border-bottom:1px solid #eceeec;
    backdrop-filter:blur(14px);
}
.home-header-premium-inner{
    min-height:76px;
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:30px;
}
.premium-brand{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:max-content;
}
.public-brand-mark{
    width:42px;
    height:42px;
    border-radius:9px;
    background:linear-gradient(145deg,#16a032,#28b943);
    color:#fff;
    display:grid;
    place-items:center;
    font-size:25px;
    font-weight:900;
    box-shadow:0 8px 18px rgba(31,168,57,.2);
}
.premium-brand-copy strong{
    display:block;
    color:#101510;
    font-size:26px;
    line-height:1;
    font-weight:850;
    letter-spacing:-.045em;
}
.premium-brand-copy strong span{color:var(--lux-green)}
.premium-brand-copy small{
    display:block;
    margin-top:4px;
    color:#7f857f;
    font-size:10px;
    letter-spacing:.02em;
}
.premium-home-nav{
    justify-self:center;
    display:flex;
    align-items:center;
    gap:30px;
}
.premium-home-nav a{
    color:#242924;
    text-decoration:none;
    font-size:13px;
    font-weight:650;
}
.premium-home-nav a:hover{color:var(--lux-green-dark)}
.lux-header-tools{
    display:flex;
    align-items:center;
    gap:10px;
}
.lux-header-search{
    width:310px;
    height:40px;
    padding:0 12px;
    display:flex;
    align-items:center;
    gap:8px;
    border:1px solid #e4e7e4;
    border-radius:10px;
    background:#f8f9f8;
}
.lux-header-search span{font-size:20px;line-height:1}
.lux-header-search input{
    width:100%;
    border:0;
    outline:0;
    background:transparent;
    color:#262b27;
    font-size:11px;
}
.lux-icon-button{
    position:relative;
    width:40px;
    height:40px;
    display:grid;
    place-items:center;
    border:0;
    border-radius:10px;
    background:transparent;
    color:#111;
    text-decoration:none;
    font-size:23px;
}
.lux-icon-button:hover{background:#f1f3f1}
.lux-icon-button b{
    position:absolute;
    right:0;
    top:-3px;
    min-width:18px;
    height:18px;
    padding:0 5px;
    display:grid;
    place-items:center;
    border-radius:999px;
    background:var(--lux-green);
    color:#fff;
    border:2px solid #fff;
    font-size:9px;
}
.public-cart-link span{position:static;min-width:0;height:auto;padding:0;border:0;background:transparent;color:inherit;font-size:inherit}

/* Hero */
.front-hero{padding:0;background:#fff}
.front-hero .public-wrap{width:100%;max-width:none}
.front-hero-shell{padding:0}
.front-hero-panel{
    min-height:470px;
    display:grid;
    grid-template-columns:minmax(390px,.9fr) minmax(0,1.35fr);
    border-radius:0;
    overflow:hidden;
    background:#f1f2f1;
    box-shadow:none;
}
.front-hero-copy{
    position:relative;
    z-index:2;
    padding:58px max(42px,calc((100vw - 1280px)/2));
    padding-right:44px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:
        linear-gradient(90deg,rgba(244,245,244,.99) 0%,rgba(244,245,244,.96) 76%,rgba(244,245,244,.72) 100%);
}
.front-kicker{
    margin-bottom:16px;
    color:#5e665f;
    font-size:11px;
    font-weight:700;
    letter-spacing:.25em;
}
.front-hero-copy h1{
    margin:0 0 14px;
    color:#111611;
    font-size:clamp(50px,5.4vw,76px);
    line-height:.92;
    letter-spacing:-.065em;
    font-weight:900;
}
.front-hero-copy p{
    max-width:520px;
    margin:0;
    color:#646a65;
    font-size:16px;
    line-height:1.5;
}
.front-hero-actions{margin-top:24px;display:flex;gap:10px;flex-wrap:wrap}
.public-button{
    min-height:44px;
    padding:0 22px;
    border-radius:999px;
    font-size:13px;
    font-weight:760;
}
.public-button-primary{
    background:linear-gradient(135deg,#15962f,#2ebd48);
    color:#fff;
    border:1px solid transparent;
    box-shadow:none;
}
.public-button-primary:hover{background:#108628}
.public-button-secondary{
    background:#fff;
    color:#237a31;
    border:1px solid #7bc987;
    box-shadow:none;
}
.front-hero-media{position:relative;min-width:0;min-height:470px}
.front-hero-image{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    filter:saturate(.9) contrast(.97);
}
.front-hero-media:before{
    content:"";
    position:absolute;
    z-index:1;
    inset:0;
    background:linear-gradient(90deg,rgba(244,245,244,.72) 0%,rgba(244,245,244,0) 24%);
    pointer-events:none;
}
.front-hero-badge{
    position:absolute;
    z-index:3;
    right:48px;
    bottom:56px;
    width:150px;
    min-height:168px;
    padding:18px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    gap:22px;
    border-radius:18px;
    background:rgba(255,255,255,.82);
    color:#263129;
    backdrop-filter:blur(12px);
    box-shadow:0 16px 38px rgba(0,0,0,.13);
}
.front-hero-badge span{font-size:30px;color:#1c8d31}
.front-hero-badge strong{font-size:15px;line-height:1.3}
.front-hero-note{
    position:absolute;
    z-index:3;
    right:46px;
    top:45px;
    max-width:180px;
    color:rgba(22,31,24,.64);
    font-size:24px;
    line-height:1.05;
    font-style:italic;
    transform:rotate(-5deg);
}
.front-hero-bar{
    width:min(100% - 40px,1320px);
    margin:0 auto;
    min-height:68px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-bottom:1px solid var(--lux-line);
}
.front-hero-bar span{
    display:grid;
    grid-template-columns:auto 1fr;
    grid-template-rows:auto auto;
    align-content:center;
    column-gap:10px;
    padding:12px 20px;
    color:#2a312b;
    font-size:19px;
}
.front-hero-bar span b{font-size:12px}
.front-hero-bar span small{grid-column:2;color:#919791;font-size:10px}

/* Sections */
.front-category-section,
.front-solutions-section,
.front-situations-section,
.front-process-section,
.front-room-section{padding:26px 0}
.front-section-head{
    margin-bottom:14px;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
}
.front-section-head h2{
    margin:0;
    font-size:26px;
    line-height:1.05;
    font-weight:850;
    letter-spacing:-.04em;
}
.front-section-head p{margin:5px 0 0;color:#7e847f;font-size:11px}
.front-head-side{
    display:flex;
    align-items:center;
    gap:18px;
    color:#828983;
    font-size:10px;
}
.front-head-side a{color:#15852b;text-decoration:none;font-weight:700}

/* Category strip */
.front-category-grid{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:8px;
}
.front-category-grid .front-category-card:nth-child(n+7){display:none}
.front-category-card{
    min-height:98px;
    padding:14px 10px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    border:1px solid #eceeec;
    border-radius:10px;
    background:#f4f5f4;
    color:#1d241e;
    text-decoration:none;
    box-shadow:none;
}
.front-category-card:hover,
.front-category-card.is-active{
    border-color:#ccebcf;
    background:linear-gradient(145deg,#eefbee,#ddf7df);
    color:#15782a;
}
.front-category-icon{font-size:28px}
.front-category-card strong{font-size:13px}

/* Product-like solution cards */
.front-solutions-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
}
.front-solution-card{
    position:relative;
    border:1px solid #ebedeb;
    border-radius:12px;
    background:#fff;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(18,28,20,.035);
}
.front-solution-link{
    display:grid;
    grid-template-columns:48% 52%;
    min-height:220px;
    color:inherit;
    text-decoration:none;
}
.front-solution-media{
    min-height:220px;
    background-size:cover;
    background-position:center;
    background-color:#f2f4f2;
}
.front-solution-body{
    min-width:0;
    padding:18px 18px 68px;
}
.front-solution-body h3{
    margin:0 0 6px;
    font-size:19px;
    line-height:1.05;
    letter-spacing:-.025em;
}
.front-solution-body p{
    margin:0 0 10px;
    color:#8a908b;
    font-size:11px;
    line-height:1.45;
}
.front-solution-meta{display:flex;gap:5px;flex-wrap:wrap}
.front-solution-meta span{
    padding:4px 7px;
    border-radius:999px;
    background:#f4f5f4;
    color:#757d76;
    font-size:8px;
}
.front-solution-footer{
    position:absolute;
    left:48%;
    right:0;
    bottom:0;
    padding:12px 62px 14px 18px;
    display:block;
    border-top:0;
}
.front-solution-price small{display:none}
.front-solution-price strong{display:block;color:#121712;font-size:22px}
.front-solution-price span{display:block;color:#9a9f9a;font-size:9px}
.front-solution-action{display:none}
.front-solution-quick-cart{
    position:absolute;
    right:15px;
    bottom:14px;
    z-index:5;
}
.front-solution-quick-cart button{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border:0;
    border-radius:9px;
    background:linear-gradient(135deg,#c8ffc1,#77ef65);
    color:#102114;
    cursor:pointer;
    font-size:23px;
    box-shadow:none;
}
.front-solution-quick-cart button span{transform:rotate(180deg);font-family:Arial,sans-serif}

/* Situations */
.front-situations-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
}
.front-situation-card{
    min-height:125px;
    border-radius:11px;
    overflow:hidden;
    box-shadow:none;
}
.front-situation-card a{min-height:125px}
.front-situation-image{filter:saturate(.85)}
.front-situation-overlay{
    padding:18px;
    background:linear-gradient(90deg,rgba(8,11,9,.16),rgba(8,11,9,.74));
}
.front-situation-overlay strong{
    max-width:260px;
    margin-left:auto;
    color:#fff;
    font-size:15px;
    line-height:1.3;
}
.front-situation-overlay span{
    margin-left:auto;
    color:#e5e9e5;
    font-size:10px;
}

/* Process */
.front-process-section{
    border-top:1px solid #f0f1f0;
    border-bottom:1px solid #f0f1f0;
    background:#fff;
}
.front-process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
    border:0;
}
.front-process-grid article{
    position:relative;
    min-height:92px;
    padding:10px 34px 10px 54px;
    border:0;
    border-right:1px solid #eceeec;
    background:#fff;
    border-radius:0;
    box-shadow:none;
}
.front-process-grid article:last-child{border-right:0}
.front-process-grid article>span{
    position:absolute;
    left:10px;
    top:12px;
    width:28px;
    height:28px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#def6e1;
    color:#1b8b30;
    font-size:10px;
    font-weight:800;
}
.front-process-grid strong{font-size:12px}
.front-process-grid p{margin:5px 0 0;color:#8a908b;font-size:10px;line-height:1.35}

/* Rooms */
.front-room-grid{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:8px;
}
.front-room-grid .front-room-card:nth-child(n+7){display:none}
.front-room-card{
    min-height:120px;
    border-radius:10px;
    overflow:hidden;
    background:#f2f3f2;
}
.front-room-image{height:120px;transition:transform .25s ease}
.front-room-card:hover .front-room-image{transform:scale(1.025)}
.front-room-caption{
    position:absolute;
    inset:auto 0 0;
    padding:34px 12px 11px;
    background:linear-gradient(transparent,rgba(0,0,0,.62));
    color:#fff;
}
.front-room-caption strong{font-size:12px}
.front-room-caption small{display:none}

/* CTA */
.front-cta-section{padding:10px 0 28px}
.front-cta-banner{
    min-height:76px;
    padding:16px 22px;
    border:0;
    border-radius:12px;
    background:linear-gradient(90deg,#e9f8ea,#f5fbf5);
    color:#203a25;
    box-shadow:none;
}
.front-cta-banner h2{font-size:18px}
.front-cta-banner p{font-size:11px;color:#6d7d70}

/* Footer */
.premium-footer{
    padding:24px 0 14px;
    border-top:1px solid #eceeec;
    background:#fff;
}
.premium-footer-inner{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:24px;
}
.premium-footer .public-brand-mark{width:34px;height:34px;font-size:20px;border-radius:7px}
.premium-footer .premium-brand-copy strong{font-size:18px}
.premium-footer-nav{display:flex;gap:24px}
.premium-footer-nav a{color:#515852;text-decoration:none;font-size:10px}
.premium-footer-note{text-align:right;color:#536154;font-size:11px}
.lux-footer-legal{
    margin-top:18px;
    padding-top:12px;
    display:flex;
    justify-content:space-between;
    gap:20px;
    border-top:1px solid #f0f1f0;
    color:#9a9f9a;
    font-size:9px;
}

/* Detail + cart in same design language */
.has-solution-detail .solution-cover-card,
.cart-package-card,
.cart-summary-card{
    border-radius:14px;
    border-color:#e9ece9;
    box-shadow:0 8px 24px rgba(18,28,20,.04);
}
.has-solution-detail .solution-cover-card{min-height:480px}
.has-solution-detail .solution-cover-content h1{font-weight:900;letter-spacing:-.055em}
.has-solution-detail .solution-cover-price-inline strong,
.cart-summary-total strong,
.cart-package-footer strong{color:var(--lux-green-dark)}
.cart-main{background:#f7f8f7}
.cart-summary-card{top:94px}

/* Responsive */
@media(max-width:1180px){
    .lux-header-search{display:none}
    .premium-home-nav{gap:18px}
    .front-solutions-grid{grid-template-columns:1fr 1fr}
    .front-category-grid{grid-template-columns:repeat(4,1fr)}
    .front-category-grid .front-category-card:nth-child(n+7){display:flex}
    .front-room-grid{grid-template-columns:repeat(3,1fr)}
    .front-room-grid .front-room-card:nth-child(n+7){display:block}
}
@media(max-width:820px){
    .public-wrap{width:min(100% - 24px,1320px)}
    .home-header-premium-inner{
        min-height:68px;
        grid-template-columns:auto 1fr;
        gap:14px;
    }
    .premium-home-nav{
        grid-column:1 / -1;
        order:3;
        justify-self:stretch;
        overflow-x:auto;
        padding:0 0 9px;
        gap:22px;
        scrollbar-width:none;
    }
    .premium-home-nav::-webkit-scrollbar{display:none}
    .premium-home-nav a{white-space:nowrap;font-size:12px}
    .lux-header-tools{justify-self:end}
    .premium-brand-copy strong{font-size:23px}
    .premium-brand-copy small{font-size:9px}
    .public-brand-mark{width:38px;height:38px}
    .front-hero-panel{
        grid-template-columns:1fr;
        min-height:0;
    }
    .front-hero-copy{
        min-height:330px;
        padding:38px 24px 30px;
        background:#f4f5f4;
    }
    .front-hero-copy h1{font-size:54px}
    .front-hero-media{min-height:330px}
    .front-hero-media:before{display:none}
    .front-hero-note{display:none}
    .front-hero-badge{right:18px;bottom:18px;width:128px;min-height:130px;padding:14px}
    .front-hero-bar{width:calc(100% - 24px);grid-template-columns:1fr}
    .front-hero-bar span{border-bottom:1px solid #eef0ee}
    .front-category-grid{display:flex;overflow-x:auto;gap:8px;padding-bottom:3px;scrollbar-width:none}
    .front-category-grid::-webkit-scrollbar{display:none}
    .front-category-card,.front-category-grid .front-category-card:nth-child(n+7){
        display:flex;
        flex:0 0 132px;
    }
    .front-solutions-grid{grid-template-columns:1fr}
    .front-solution-link{grid-template-columns:42% 58%}
    .front-solution-footer{left:42%}
    .front-situations-grid{grid-template-columns:1fr}
    .front-process-grid{grid-template-columns:1fr 1fr}
    .front-process-grid article:nth-child(2){border-right:0}
    .front-process-grid article{border-bottom:1px solid #eceeec}
    .front-room-grid{
        display:flex;
        overflow-x:auto;
        gap:8px;
        scrollbar-width:none;
    }
    .front-room-grid::-webkit-scrollbar{display:none}
    .front-room-card,.front-room-grid .front-room-card:nth-child(n+7){
        display:block;
        flex:0 0 190px;
    }
    .premium-footer-inner{grid-template-columns:1fr}
    .premium-footer-nav{flex-wrap:wrap}
    .premium-footer-note{text-align:left}
    .lux-footer-legal{flex-direction:column;gap:5px}
}
@media(max-width:560px){
    .home-header-premium-inner{gap:8px}
    .premium-brand-copy small{display:none}
    .lux-icon-button{width:36px;height:36px}
    .front-hero-copy{min-height:300px;padding:32px 18px 26px}
    .front-hero-copy h1{font-size:46px}
    .front-hero-copy p{font-size:14px}
    .front-hero-actions{display:grid;grid-template-columns:1fr 1fr}
    .public-button{padding:0 14px;font-size:11px}
    .front-hero-media{min-height:280px}
    .front-hero-badge{width:115px;min-height:112px}
    .front-section-head{align-items:flex-start}
    .front-head-side span{display:none}
    .front-section-head h2{font-size:23px}
    .front-solution-link{
        grid-template-columns:1fr;
        min-height:0;
    }
    .front-solution-media{min-height:210px}
    .front-solution-body{padding:15px 15px 70px}
    .front-solution-footer{left:0;padding-left:15px}
    .front-process-grid{grid-template-columns:1fr}
    .front-process-grid article{border-right:0}
    .front-cta-banner{align-items:flex-start;flex-direction:column}
}


/* V3.13.2 – Homepage-Layout verfeinert */
.front-hero .public-wrap{width:min(100% - 40px,1320px);max-width:1320px}
.front-hero-shell{padding:18px 0 10px}
.front-hero-panel{
    min-height:540px;
    grid-template-columns:minmax(360px,.88fr) minmax(0,1.12fr);
    border:1px solid #e3e8e3;
    border-radius:28px;
    overflow:hidden;
    background:#f4f6f3;
    box-shadow:0 18px 48px rgba(20,36,23,.06);
}
.front-hero-copy{
    min-width:0;
    padding:60px 54px 54px;
    background:linear-gradient(90deg,rgba(244,246,243,.995) 0%,rgba(244,246,243,.98) 76%,rgba(244,246,243,.75) 100%);
}
.front-kicker{display:inline-block;margin-bottom:14px}
.front-hero-copy h1{
    display:block;
    max-width:5ch;
    margin:0 0 18px;
    color:#111611;
    font-size:clamp(56px,5.6vw,88px);
    line-height:.92;
    letter-spacing:-.075em;
    font-weight:900;
}
.front-hero-copy p{
    max-width:520px;
    margin:0;
    color:#616863;
    font-size:18px;
    line-height:1.58;
}
.front-hero-actions{margin-top:28px;gap:12px}
.front-hero-points{margin-top:28px;gap:12px}
.front-hero-points span{
    min-height:40px;
    padding:0 16px;
    background:#fff;
    border:1px solid #dce4dd;
    color:#304535;
    font-size:13px;
}
.front-hero-media{min-height:540px}
.front-hero-image{background-position:center center}
.front-hero-media:before{background:linear-gradient(90deg,rgba(244,246,243,.30) 0%,rgba(244,246,243,0) 20%)}
.front-hero-media-card{
    left:28px;
    right:auto;
    bottom:28px;
    max-width:360px;
    padding:20px 22px;
    border-radius:24px;
    background:rgba(255,255,255,.94);
    border:1px solid rgba(255,255,255,.92);
    box-shadow:0 18px 40px rgba(18,31,22,.12);
}
.front-hero-media-card strong{font-size:30px;line-height:1.05;letter-spacing:-.05em}
.front-hero-media-card span{margin-top:8px;font-size:14px;color:#637166}

.front-category-section,
.front-solutions-section,
.front-situations-section,
.front-process-section,
.front-room-section{padding:34px 0}
.front-section-head{margin-bottom:18px}
.front-section-head h2{font-size:34px;letter-spacing:-.05em}
.front-section-head p{margin-top:7px;font-size:14px;color:#6f786f}
.front-head-side{font-size:13px}
.front-head-side a{font-size:14px}

.front-category-grid{grid-template-columns:repeat(6,minmax(0,1fr));gap:12px}
.front-category-card{
    min-height:112px;
    padding:16px 12px;
    gap:10px;
    border:1px solid #e7ebe7;
    border-radius:18px;
    background:#f5f6f5;
}
.front-category-icon{font-size:30px}
.front-category-card strong{font-size:14px}

.front-solutions-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;align-items:stretch}
.front-solution-card{
    height:100%;
    border:1px solid #e5e9e5;
    border-radius:24px;
    background:#fff;
    overflow:hidden;
    box-shadow:0 14px 34px rgba(18,28,20,.05);
}
.front-solution-link{
    display:flex;
    flex-direction:column;
    min-height:100%;
    grid-template-columns:none;
}
.front-solution-media{
    min-height:265px;
    border-bottom:1px solid #eef1ee;
    background-color:#f2f4f2;
}
.front-solution-body{
    display:flex;
    flex-direction:column;
    gap:14px;
    flex:1;
    min-width:0;
    padding:22px 22px 20px;
}
.front-solution-body h3{
    margin:0;
    color:#121712;
    font-size:30px;
    line-height:.98;
    letter-spacing:-.05em;
}
.front-solution-body p{
    margin:0;
    color:#687368;
    font-size:15px;
    line-height:1.58;
}
.front-solution-meta{gap:8px}
.front-solution-meta span{
    padding:6px 10px;
    border-radius:999px;
    background:#f3f6f3;
    color:#6b756d;
    font-size:11px;
}
.front-solution-footer{
    position:static;
    left:auto;
    right:auto;
    bottom:auto;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:18px;
    margin-top:auto;
    padding:0;
}
.front-solution-price small{
    display:block;
    margin-bottom:6px;
    color:#869087;
    font-size:11px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.front-solution-price strong{
    display:block;
    color:#121712;
    font-size:34px;
    line-height:1;
    letter-spacing:-.05em;
}
.front-solution-price span{display:block;margin-top:5px;color:#7f8980;font-size:12px;line-height:1.4}
.front-solution-action{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#15852b;
    font-size:14px;
    font-weight:800;
    white-space:nowrap;
}
.front-solution-quick-cart{
    position:absolute;
    top:18px;
    right:18px;
    bottom:auto;
    z-index:5;
}
.front-solution-quick-cart button{
    width:44px;
    height:44px;
    border-radius:50%;
    border:1px solid #dfe6df;
    background:rgba(255,255,255,.96);
    box-shadow:0 8px 20px rgba(18,28,20,.10);
}
.front-solution-quick-cart button span{transform:none}

.front-situations-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.front-situation-card,
.front-situation-card a{min-height:180px;border-radius:20px}
.front-situation-overlay{padding:22px}
.front-situation-overlay strong{max-width:300px;font-size:22px;line-height:1.25}
.front-situation-overlay span{font-size:13px}

.front-process-section{border-top:1px solid #eef1ee;border-bottom:1px solid #eef1ee;background:#fff}
.front-process-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.front-process-grid article{min-height:128px;padding:18px 22px 18px 58px}
.front-process-grid article>span{left:18px;top:18px;width:30px;height:30px;font-size:11px}
.front-process-grid strong{font-size:16px}
.front-process-grid p{font-size:13px;line-height:1.45}

.front-room-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.front-room-grid .front-room-card:nth-child(n+7){display:block}
.front-room-card{min-height:250px;border-radius:22px;border:1px solid #e8ece8;background:#f3f5f3}
.front-room-image{height:250px}
.front-room-caption{padding:64px 18px 16px}
.front-room-caption strong{font-size:17px}
.front-room-caption small{display:block;margin-top:4px;font-size:12px;color:rgba(255,255,255,.88)}

.front-cta-section{padding:24px 0 42px}
.front-cta-banner{min-height:112px;padding:26px 28px;border-radius:24px;border:1px solid #dfebe0;background:linear-gradient(90deg,#edf9ee,#f7fbf7)}
.front-cta-banner h2{font-size:28px;letter-spacing:-.04em}
.front-cta-banner p{font-size:15px;color:#617063}

@media(max-width:1180px){
    .front-hero-panel{grid-template-columns:1fr;min-height:0}
    .front-hero-copy{padding:42px 34px 34px}
    .front-hero-copy h1{max-width:none;font-size:64px}
    .front-hero-media{min-height:380px}
    .front-solutions-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .front-room-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:820px){
    .front-hero .public-wrap{width:min(100% - 24px,1320px)}
    .front-hero-shell{padding:14px 0 6px}
    .front-hero-panel{border-radius:24px}
    .front-hero-copy{padding:34px 24px 28px;min-height:0}
    .front-hero-copy h1{font-size:52px}
    .front-hero-copy p{font-size:16px}
    .front-hero-media{min-height:320px}
    .front-hero-media-card{left:18px;right:18px;bottom:18px;max-width:none;padding:18px 18px 16px}
    .front-hero-media-card strong{font-size:22px}
    .front-section-head h2{font-size:28px}
    .front-category-grid{display:flex;overflow-x:auto;gap:10px;padding-bottom:4px;scrollbar-width:none}
    .front-category-grid::-webkit-scrollbar{display:none}
    .front-category-card,.front-category-grid .front-category-card:nth-child(n+7){display:flex;flex:0 0 148px}
    .front-solutions-grid,.front-situations-grid{grid-template-columns:1fr}
    .front-process-grid{grid-template-columns:1fr 1fr}
    .front-room-grid{display:flex;overflow-x:auto;gap:12px;scrollbar-width:none}
    .front-room-grid::-webkit-scrollbar{display:none}
    .front-room-card{flex:0 0 260px}
}
@media(max-width:560px){
    .front-hero-copy{padding:28px 18px 22px}
    .front-hero-copy h1{font-size:42px}
    .front-hero-copy p{font-size:15px}
    .front-hero-actions{display:grid;grid-template-columns:1fr}
    .front-hero-points{display:grid;grid-template-columns:1fr;gap:8px}
    .front-hero-points span{justify-content:center}
    .front-hero-media{min-height:255px}
    .front-hero-media-card{left:14px;right:14px;bottom:14px;padding:14px 15px;border-radius:18px}
    .front-hero-media-card strong{font-size:18px}
    .front-section-head{align-items:flex-start;flex-direction:column}
    .front-head-side{width:100%;justify-content:space-between}
    .front-section-head h2{font-size:24px}
    .front-solution-media{min-height:210px}
    .front-solution-body{padding:18px 18px 16px}
    .front-solution-body h3{font-size:24px}
    .front-solution-body p{font-size:14px}
    .front-solution-footer{flex-direction:column;align-items:flex-start;gap:10px}
    .front-solution-price strong{font-size:28px}
    .front-process-grid{grid-template-columns:1fr}
    .front-room-card{flex-basis:220px}
    .front-room-image{height:220px}
    .front-room-caption{padding:54px 14px 14px}
    .front-cta-banner{padding:22px 20px}
    .front-cta-banner h2{font-size:22px}
    .front-cta-banner p{font-size:14px}
}


/* V3.13.3 – Mobile Homepage Hero Fix */
@media (max-width: 560px) {
    .front-hero .public-wrap {
        width: min(100% - 20px, 1320px);
    }
    .front-hero-shell {
        padding: 10px 0 6px;
    }
    .front-hero-panel {
        display: block;
        min-height: 0;
        border-radius: 22px;
        overflow: hidden;
    }
    .front-hero-copy {
        min-height: 0;
        padding: 28px 18px 22px;
        background: #f4f6f3;
    }
    .front-kicker {
        margin-bottom: 12px;
        letter-spacing: .22em;
    }
    .front-hero-copy h1 {
        max-width: none;
        font-size: 42px;
        line-height: .94;
        margin-bottom: 14px;
    }
    .front-hero-copy p {
        font-size: 15px;
        line-height: 1.52;
    }
    .front-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 22px;
    }
    .public-button {
        min-height: 48px;
        font-size: 12px;
        padding: 0 16px;
    }
    .front-hero-points {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 20px;
    }
    .front-hero-points span {
        width: 100%;
        min-height: 44px;
        justify-content: center;
    }
    .front-hero-media {
        display: none;
    }
    .front-category-section,
    .front-solutions-section,
    .front-situations-section,
    .front-process-section,
    .front-room-section {
        padding-top: 28px;
    }
    .front-section-head {
        margin-bottom: 16px;
    }
}

/* V3.13.4 – Raumkarten: Caption darf nicht über die Seite schweben */
.front-room-card{
    position:relative;
    isolation:isolate;
}
.front-room-image{
    position:relative;
    z-index:0;
}
.front-room-caption{
    z-index:1;
    pointer-events:none;
}


/* V3.13.5 – Warenkorb: kleine Schriftgrößen besser lesbar */
.cart-package-kicker{
    font-size:12px;
}
.cart-package-head p{
    font-size:15px;
}
.cart-package-details > summary span:first-child{
    font-size:14px;
}
.cart-package-details > summary strong{
    font-size:13px;
}
.cart-product-copy strong{
    font-size:15px;
}
.cart-product-copy small,
.cart-product-price small{
    font-size:12px;
    line-height:1.4;
}
.cart-product-quantity span{
    font-size:12px;
}
.cart-package-footer > span{
    font-size:13px;
}
.cart-package-footer del{
    font-size:13px;
}
.cart-summary-row span{
    font-size:14px;
}
.cart-summary-row strong{
    font-size:15px;
}
.cart-shipping-form label{
    font-size:14px;
}
.cart-shipping-form select{
    font-size:14px;
}
.cart-shipping-note{
    font-size:13px;
}
.cart-summary-footnote{
    font-size:12px;
}
.cart-summary-card .home-eyebrow,
.cart-page-head .home-eyebrow{
    font-size:12px;
}

@media(max-width:720px){
    .cart-package-kicker{
        font-size:11px;
    }
    .cart-package-details > summary span:first-child{
        font-size:13px;
    }
    .cart-package-details > summary strong{
        font-size:12px;
    }
    .cart-summary-row span,
    .cart-shipping-form label{
        font-size:13px;
    }
}


/* V3.13.6 – nur wirklich kleine Texte vergrößern */

/* Warenkorb-Größen aus V3.13.4 wiederherstellen */
.cart-package-kicker{font-size:10px}
.cart-package-head p{font-size:13px}
.cart-package-details > summary span:first-child{font-size:12px}
.cart-package-details > summary strong{font-size:11px}
.cart-product-copy strong{font-size:14px}
.cart-product-copy small,
.cart-product-price small{font-size:10px;line-height:1.4}
.cart-product-quantity span{font-size:10px}
.cart-package-footer > span{font-size:11px}
.cart-package-footer del{font-size:12px}
.cart-summary-row span{font-size:12px}
.cart-summary-row strong{font-size:14px}
.cart-shipping-form label{font-size:12px}
.cart-shipping-form select{font-size:inherit}
.cart-shipping-note{font-size:11px}
.cart-summary-footnote{font-size:10px}
.cart-summary-card .home-eyebrow,
.cart-page-head .home-eyebrow{font-size:12px}

/* Stattdessen die zu kleinen Sekundärtexte besser lesbar machen */
.premium-footer-nav a{
    font-size:13px;
}
.lux-footer-legal{
    font-size:11px;
}
.premium-footer-note{
    font-size:12px;
}
.premium-footer .premium-brand-copy small{
    font-size:11px;
}
.front-solution-meta span{
    font-size:12px;
}
.front-solution-price small,
.front-solution-price span{
    font-size:12px;
}
.front-head-side{
    font-size:12px;
}

@media(max-width:720px){
    .premium-footer-nav a{
        font-size:13px;
    }
    .lux-footer-legal{
        font-size:11px;
        line-height:1.5;
    }
}

/* V3.13.8 – strukturierte Paketseite + Produktdetails */
.has-solution-detail{scroll-behavior:smooth}
.solution-detail-nav{position:relative;z-index:5;padding:0 0 26px}
.solution-detail-nav-inner{display:flex;align-items:center;gap:8px;padding:8px;border:1px solid #dde7de;border-radius:18px;background:rgba(255,255,255,.94);box-shadow:0 12px 28px rgba(18,31,21,.05);overflow-x:auto;scrollbar-width:none}
.solution-detail-nav-inner::-webkit-scrollbar{display:none}
.solution-detail-nav a{display:inline-flex;align-items:center;gap:8px;min-height:42px;padding:0 14px;border-radius:12px;color:#405244;text-decoration:none;font-size:13px;font-weight:800;white-space:nowrap;transition:background .18s ease,color .18s ease,transform .18s ease}
.solution-detail-nav a:hover{background:#eff5f0;color:#214e28;transform:translateY(-1px)}
.solution-detail-nav a span{display:grid;place-items:center;width:24px;height:24px;border-radius:8px;background:#edf5ee;color:#2d6b35;font-size:10px}
.solution-story-section[id],.solution-benefits-compact-section[id],.solution-components-section[id]{scroll-margin-top:92px}

.solution-components-section{padding:26px 0 68px;background:linear-gradient(180deg,rgba(244,248,245,.45) 0%,rgba(255,255,255,0) 100%)}
.solution-components-head{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;margin-bottom:20px;padding:0 2px}
.solution-components-head h2{margin:8px 0 8px;font-size:clamp(32px,4vw,46px);line-height:1.02;letter-spacing:-.045em;color:#17241a}
.solution-components-head p{max-width:720px;margin:0;color:#647568;font-size:16px;line-height:1.6}
.solution-components-summary{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.solution-components-summary span{display:inline-flex;align-items:baseline;gap:6px;padding:10px 14px;border:1px solid #dce8de;border-radius:14px;background:#fff;color:#66766a;font-size:12px;font-weight:700;box-shadow:0 8px 18px rgba(18,31,21,.04)}
.solution-components-summary b{color:#203a25;font-size:18px}
.solution-components-section .solution-components-grid{padding:0;grid-template-columns:minmax(0,1fr) 350px}
.solution-product-list-card{padding:10px!important;background:rgba(255,255,255,.75)!important}
.solution-product-list-card .public-products{gap:10px!important}
.solution-components-grid .public-product.public-product-clickable{position:relative;grid-template-columns:104px minmax(0,1fr) 150px;padding:16px;border:1px solid #e0e9e1;border-radius:20px;background:#fff;box-shadow:none;cursor:pointer;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}
.solution-components-grid .public-product.public-product-clickable:hover,.solution-components-grid .public-product.public-product-clickable:focus-visible{transform:translateY(-2px);border-color:#bdd4c0;box-shadow:0 16px 32px rgba(18,31,21,.08);outline:none}
.solution-components-grid .public-product-thumb{width:104px;height:104px;border-radius:16px;background:#f9fbf9}
.public-product-title-row{display:flex;align-items:flex-start;justify-content:space-between;gap:14px}
.public-product-brand{display:block;margin-bottom:4px;color:#6e8171;font-size:11px;font-weight:900;letter-spacing:.06em;text-transform:uppercase}
.solution-components-grid .public-product-copy h3{margin:0 0 8px;font-size:22px;line-height:1.12}
.public-product-open-hint{display:inline-flex;align-items:center;gap:5px;flex:0 0 auto;padding:7px 9px;border-radius:10px;background:#eef6ef;color:#24672d;font-size:11px;font-weight:900}
.solution-components-grid .public-product-meta{margin-bottom:9px}
.solution-components-grid .public-product-meta span{min-height:24px;padding:0 8px;font-size:11px}
.solution-components-grid .public-product-description{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;font-size:14px;line-height:1.5}
.solution-components-grid .public-product-prices{min-width:150px;padding-top:4px}
.solution-components-grid .public-product-prices strong{font-size:27px}
.solution-components-grid .public-customer-quantity{position:relative;z-index:2;margin-top:12px;padding:11px 12px;border-radius:14px;cursor:default}
.solution-checkout-intro{margin:6px 0 18px;color:rgba(255,255,255,.72);font-size:14px;line-height:1.55}
.solution-add-cart-form{margin-top:18px}
.solution-add-cart-button{width:100%}
.solution-checkout-note{margin-top:14px;padding-top:14px;border-top:1px solid rgba(255,255,255,.1);color:rgba(255,255,255,.68);font-size:12px;line-height:1.8}

.product-detail-modal[hidden]{display:none!important}
.product-detail-modal{position:fixed;inset:0;z-index:1500;display:grid;grid-template-columns:1fr;align-items:center;justify-items:center;padding:24px}
.product-detail-backdrop{position:absolute;inset:0;width:100%;height:100%;padding:0;border:0;background:rgba(10,16,11,.58);backdrop-filter:blur(5px);cursor:pointer}
.product-detail-panel{position:relative;z-index:1;width:min(860px,calc(100% - 48px));max-width:100%;height:min(900px,calc(100vh - 48px));max-height:calc(100vh - 48px);margin:0 auto;border-radius:28px;background:#fff;box-shadow:0 28px 80px rgba(0,0,0,.24);overflow:auto;animation:productDetailIn .22s ease-out}
@keyframes productDetailIn{from{opacity:0;transform:translateY(18px) scale(.985)}to{opacity:1;transform:translateY(0) scale(1)}}
.product-detail-panel-head{position:sticky;top:0;z-index:3;display:flex;align-items:center;justify-content:space-between;gap:18px;padding:20px 22px;border-bottom:1px solid #e4ece5;background:rgba(255,255,255,.94);backdrop-filter:blur(12px)}
.product-detail-panel-head>div{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.product-detail-panel-head .home-eyebrow{margin:0}
.product-detail-brand{color:#718073;font-size:13px;font-weight:700}
.product-detail-close{display:grid;place-items:center;width:42px;height:42px;border:1px solid #dce6dd;border-radius:13px;background:#f7faf7;color:#293b2d;font-size:28px;line-height:1;cursor:pointer}
.product-detail-body{display:grid;grid-template-columns:minmax(230px,.75fr) minmax(0,1.25fr);gap:26px;padding:26px}
.product-detail-media{position:sticky;top:92px;display:flex;align-items:center;justify-content:center;align-self:start;min-height:310px;padding:24px;border:1px solid #e2eae3;border-radius:22px;background:linear-gradient(145deg,#fbfdfb,#f2f7f3)}
.product-detail-media img{display:block;width:100%;max-height:340px;object-fit:contain}
.product-detail-media .public-image-fallback{min-height:260px;border-radius:18px}
.product-detail-content{min-width:0}
.product-detail-meta{display:flex;gap:7px;flex-wrap:wrap;margin-bottom:10px}
.product-detail-meta span{padding:6px 9px;border-radius:999px;background:#f0f5f1;color:#5c6f60;font-size:11px;font-weight:800}
.product-detail-content h2{margin:0 0 9px;font-size:31px;line-height:1.05;letter-spacing:-.04em;color:#17231a}
.product-detail-price{margin-bottom:24px;color:#21652b;font-size:25px;font-weight:900;letter-spacing:-.03em}
.product-detail-section{padding:20px 0;border-top:1px solid #e5ece6}
.product-detail-section h3{margin:0 0 10px;font-size:15px;color:#26382a}
.product-detail-text{color:#536558;font-size:14px;line-height:1.72;overflow-wrap:anywhere}
.product-detail-features{white-space:normal}
.product-detail-empty{color:#879489;font-style:italic}
.product-detail-source{margin-top:4px;width:100%}
body.product-detail-open{overflow:hidden}

@media(max-width:1100px){
    .solution-components-section .solution-components-grid{grid-template-columns:1fr}
    .solution-components-section .public-side-card{position:static}
}
@media(max-width:780px){
    .solution-components-head{align-items:flex-start;flex-direction:column}
    .solution-components-summary{justify-content:flex-start}
    .solution-components-grid .public-product.public-product-clickable{grid-template-columns:84px minmax(0,1fr)}
    .solution-components-grid .public-product-thumb{width:84px;height:84px}
    .solution-components-grid .public-product-prices{grid-column:2;text-align:left;padding-top:0}
    .public-product-open-hint{display:none}
    .product-detail-modal{padding:0}
    .product-detail-panel{width:100%;height:calc(100% - 10px);max-height:none;margin:10px 0 0;border-radius:24px 24px 0 0}
    .product-detail-body{grid-template-columns:1fr;padding:20px}
    .product-detail-media{position:static;min-height:240px}
}
@media(max-width:520px){
    .solution-detail-nav{padding-bottom:18px}
    .solution-detail-nav-inner{width:calc(100% - 20px)}
    .solution-components-section{padding-top:18px}
    .solution-components-head h2{font-size:34px}
    .solution-product-list-card{padding:7px!important}
    .solution-components-grid .public-product.public-product-clickable{grid-template-columns:74px minmax(0,1fr);gap:12px;padding:13px}
    .solution-components-grid .public-product-thumb{width:74px;height:74px}
    .solution-components-grid .public-product-copy h3{font-size:19px}
    .solution-components-grid .public-product-prices{grid-column:1 / -1;display:flex;align-items:baseline;gap:8px}
    .solution-components-grid .public-product-prices strong{font-size:23px}
    .solution-components-grid .public-customer-quantity{grid-column:1/-1}
    .product-detail-content h2{font-size:27px}
}

/* V3.13.11 – ruhige Premium-Karten für Lösungen */
.front-solutions-grid{
    gap:22px;
    align-items:stretch;
}
.front-solution-card{
    position:relative;
    height:100%;
    overflow:hidden;
    border:1px solid #e6ebe6;
    border-radius:26px;
    background:#fff;
    box-shadow:0 12px 34px rgba(19,31,22,.055);
    transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.front-solution-card:hover{
    transform:translateY(-3px);
    border-color:#d7e2d8;
    box-shadow:0 20px 44px rgba(19,31,22,.085);
}
.front-solution-link{
    display:flex;
    flex-direction:column;
    height:100%;
    min-height:100%;
    color:inherit;
    text-decoration:none;
}
.front-solution-media{
    position:relative;
    min-height:255px;
    aspect-ratio:16/10;
    border:0;
    background:#edf1ed center/cover no-repeat;
}
.front-solution-media::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(5,12,7,.015) 48%,rgba(5,12,7,.14) 100%);
}
.front-solution-body{
    display:flex;
    flex:1 1 auto;
    flex-direction:column;
    gap:10px;
    padding:20px 21px 19px;
}
.front-solution-topline{
    display:flex;
    align-items:center;
    gap:8px;
    min-height:28px;
}
.front-solution-topline span{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:0 10px;
    border-radius:999px;
    background:#f3f5f3;
    color:#687269;
    font-size:11px;
    font-weight:750;
}
.front-solution-topline .is-benefit{
    background:#eaf7ec;
    color:#1b7f30;
}
.front-solution-body h3{
    margin:0;
    color:#121612;
    font-size:27px;
    line-height:1.04;
    letter-spacing:-.045em;
    font-weight:850;
}
.front-solution-body p{
    margin:0;
    color:#6b746c;
    font-size:15px;
    line-height:1.5;
    min-height:0;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    overflow:hidden;
}
.front-solution-footer{
    position:static;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:14px;
    margin-top:auto;
    padding:16px 0 0;
    border-top:1px solid #eef1ee;
}
.front-solution-price small{
    display:block;
    margin:0 0 5px;
    color:#929993;
    font-size:10px;
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase;
}
.front-solution-price strong{
    display:block;
    color:#111511;
    font-size:33px;
    line-height:.95;
    letter-spacing:-.045em;
}
.front-solution-price span{
    display:block;
    margin-top:6px;
    color:#8a928b;
    font-size:12px;
}
.front-solution-action{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:0 2px 4px 0;
    color:#16852c;
    font-size:14px;
    font-weight:850;
    white-space:nowrap;
    background:transparent;
    box-shadow:none;
}
.front-solution-action b{
    display:grid;
    place-items:center;
    width:30px;
    height:30px;
    border-radius:50%;
    background:#edf7ef;
    color:#16852c;
    font-size:17px;
    transition:transform .18s ease,background .18s ease;
}
.front-solution-card:hover .front-solution-action b{
    transform:translateX(2px);
    background:#e4f3e7;
}
.front-solution-favorite{
    position:absolute;
    top:15px;
    right:15px;
    z-index:5;
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    padding:0;
    border:1px solid rgba(255,255,255,.88);
    border-radius:50%;
    background:rgba(255,255,255,.92);
    color:#151915;
    box-shadow:0 8px 22px rgba(18,28,20,.12);
    backdrop-filter:blur(10px);
    cursor:pointer;
    transition:transform .18s ease,background .18s ease,color .18s ease;
}
.front-solution-favorite:hover{transform:scale(1.04)}
.front-solution-favorite span{font-size:27px;line-height:1}
.front-solution-favorite.is-active{
    background:#16852c;
    border-color:#16852c;
    color:#fff;
}
.front-solution-favorite.is-active span{font-size:0}
.front-solution-favorite.is-active span::after{content:"★";font-size:26px}
.front-solution-quick-cart{display:none!important}

@media(max-width:820px){
    .front-solutions-grid{gap:18px}
    .front-solution-card{border-radius:22px}
    .front-solution-media{min-height:220px}
}
@media(max-width:560px){
    .front-solution-card{border-radius:22px}
    .front-solution-media{min-height:190px;aspect-ratio:16/9}
    .front-solution-body{gap:9px;padding:17px 17px 16px}
    .front-solution-topline{min-height:25px}
    .front-solution-topline span{min-height:25px;padding:0 9px;font-size:10px}
    .front-solution-body h3{font-size:22px;line-height:1.06}
    .front-solution-body p{font-size:14px;line-height:1.45;-webkit-line-clamp:2}
    .front-solution-footer{gap:10px;padding-top:14px}
    .front-solution-price strong{font-size:29px}
    .front-solution-price span{font-size:11px}
    .front-solution-action{font-size:13px}
    .front-solution-action b{width:28px;height:28px;font-size:16px}
    .front-solution-favorite{top:12px;right:12px;width:44px;height:44px}
    .front-solution-favorite span{font-size:25px}
}

/* V3.13.12 – Kartenlücke sinnvoll schließen */
.front-solution-facts{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:0;
    margin:2px 0 2px;
    color:#7b857c;
    font-size:12px;
    font-weight:700;
}
.front-solution-facts span{
    display:inline-flex;
    align-items:center;
    min-height:24px;
}
.front-solution-facts span+span::before{
    content:"";
    width:3px;
    height:3px;
    margin:0 9px;
    border-radius:50%;
    background:#b9c2ba;
}
.front-solution-facts b{
    margin-right:4px;
    color:#39463b;
    font-weight:850;
}

@media(max-width:560px){
    .front-solution-body{
        padding-bottom:15px;
    }
    .front-solution-facts{
        margin-top:1px;
        font-size:11px;
    }
    .front-solution-facts span+span::before{
        margin:0 7px;
    }
    .front-solution-footer{
        flex-direction:row;
        align-items:flex-end;
        justify-content:space-between;
        width:100%;
        gap:12px;
        margin-top:2px;
        padding:14px 0 0;
    }
    .front-solution-price{
        min-width:0;
        text-align:left;
    }
    .front-solution-price small,
    .front-solution-price strong,
    .front-solution-price span{
        text-align:left;
    }
    .front-solution-action{
        flex:0 0 auto;
        align-self:flex-end;
        padding-bottom:2px;
    }
}

/* V3.13.21 – Einheitliche Bruttopreise inkl. USt. */
.front-solution-tax,
.public-price-tax-note{
    display:block;
    margin-top:5px;
    color:#7b857d;
    font-size:11px;
    font-weight:650;
    line-height:1.25;
}
.public-side-price-values .public-price-tax-note{
    text-align:right;
}
.cart-tax-row{
    color:#6f7b71;
    font-size:13px;
}
.cart-tax-row strong{
    color:#526057;
    font-size:13px;
}
@media(max-width:560px){
    .front-solution-tax,
    .public-price-tax-note{font-size:10px}
}


/* V3.13.22 – Ruhiger Premium-Preisblock auf Lösungskarten */
.front-solution-footer{
    align-items:flex-end;
    gap:18px;
    padding-top:15px;
}
.front-solution-price{
    display:grid;
    grid-template-columns:auto auto;
    align-items:end;
    column-gap:10px;
    min-width:0;
}
.front-solution-price > small:first-child{
    grid-column:1 / -1;
    margin:0 0 4px;
    color:#7f8981;
    font-size:12px;
    font-weight:700;
    letter-spacing:0;
    text-transform:none;
}
.front-solution-price strong{
    grid-column:1;
    font-size:35px;
    line-height:1;
}
.front-solution-tax{
    grid-column:1;
    margin:4px 0 0!important;
    color:#7d877f!important;
    font-size:10px!important;
    font-weight:650!important;
    letter-spacing:.01em!important;
    text-transform:none!important;
}
.front-solution-old-price{
    grid-column:2;
    grid-row:2;
    align-self:end;
    margin:0 0 2px;
    color:#9aa29b;
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
}
.front-solution-old-price del{
    text-decoration-thickness:1.5px;
    text-decoration-color:#9aa29b;
}
.home-package-old-price{
    display:block;
    color:#8f9891;
    font-size:12px;
    font-weight:600;
}
.home-package-old-price del{
    text-decoration-thickness:1.5px;
    text-decoration-color:#9aa29b;
}
.front-solution-action{
    padding-bottom:1px;
    font-size:14px;
}
.front-solution-action b{
    width:32px;
    height:32px;
}
.home-package-saving{display:none!important}

@media(max-width:560px){
    .front-solution-footer{
        align-items:flex-end;
        gap:10px;
        padding-top:13px;
    }
    .front-solution-price{
        column-gap:8px;
    }
    .front-solution-price > small:first-child{
        font-size:11px;
    }
    .front-solution-price strong{
        font-size:31px;
    }
    .front-solution-tax{
        font-size:9px!important;
    }
    .front-solution-old-price{
        font-size:12px;
        margin-bottom:1px;
    }
    .front-solution-action{
        font-size:13px;
    }
}


/* V3.13.25 – Hersteller-Rabatt sichtbar in Produktzeilen */
.public-product-price-meta{display:block;color:var(--muted);font-size:13px;line-height:1.45}
.public-product-price-meta del{color:#9aa39b;text-decoration-thickness:1.5px}
.public-product-price-meta .public-unit-price{display:inline;color:inherit;font-size:inherit}
@media(max-width:560px){
  .solution-components-grid .public-product-prices{flex-wrap:wrap}
  .solution-components-grid .public-product-price-meta{flex-basis:100%;margin-top:0}
}

/* V3.13.26 – Lösungskonfigurator */
.solution-components-grid>div:first-child{display:grid;gap:18px}.solution-configurator{padding:22px;border:1px solid #dfe9df;border-radius:24px;background:linear-gradient(180deg,#fbfdfb 0%,#f5f9f5 100%);box-shadow:0 12px 30px rgba(18,32,21,.05)}.solution-configurator-head h2{margin:5px 0 7px;font-size:28px;line-height:1.05;letter-spacing:-.04em}.solution-configurator-head p{margin:0;color:#68756a;font-size:14px;line-height:1.5}.solution-option-groups{display:grid;gap:16px;margin-top:20px}.solution-option-group{margin:0;padding:0;border:0}.solution-option-group legend{display:block;width:100%;padding:0;margin:0 0 4px;color:#152019;font-size:19px;font-weight:900;letter-spacing:-.025em}.solution-option-group>p{margin:0 0 11px;color:#748076;font-size:13px}.solution-option-list{display:grid;gap:9px}.solution-option-choice{position:relative;display:grid;grid-template-columns:26px minmax(0,1fr) auto;align-items:center;gap:12px;min-height:76px;padding:13px 15px;border:1px solid #dfe7df;border-radius:17px;background:#fff;cursor:pointer;transition:border-color .16s ease,box-shadow .16s ease,background .16s ease}.solution-option-choice:hover{border-color:#bcd4bf}.solution-option-choice.is-selected{border-color:#74b17c;background:#f5fbf6;box-shadow:0 8px 20px rgba(29,118,45,.08)}.solution-option-choice>input{position:absolute;opacity:0;pointer-events:none}.solution-option-radio{width:22px;height:22px;border:2px solid #aab5ac;border-radius:50%;background:#fff;box-shadow:inset 0 0 0 5px #fff}.solution-option-choice.is-selected .solution-option-radio{border-color:#218b36;background:#218b36}.solution-option-choice input[type=checkbox]+.solution-option-radio{border-radius:7px}.solution-option-copy{display:grid;gap:3px;min-width:0}.solution-option-copy strong{font-size:15px;line-height:1.25;color:#172019}.solution-option-copy small{font-size:13px;line-height:1.35;color:#637066}.solution-option-copy>span{font-size:11px;color:#929b93}.solution-option-price{justify-self:end;color:#218b36;font-size:13px;font-weight:850;white-space:nowrap}
@media(max-width:640px){.solution-configurator{padding:17px;border-radius:20px}.solution-configurator-head h2{font-size:23px}.solution-option-choice{grid-template-columns:24px minmax(0,1fr);padding:13px;align-items:start}.solution-option-price{grid-column:2;justify-self:start;margin-top:3px}.solution-option-copy strong{font-size:14px}}

/* V3.13.28 – Varianten als Produktkarten */
.solution-option-list{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
}
.solution-option-choice{
    position:relative;
    display:grid;
    grid-template-columns:92px minmax(0,1fr);
    grid-template-rows:auto auto;
    align-items:start;
    gap:12px 14px;
    min-height:142px;
    padding:14px;
    border:1px solid #dfe7df;
    border-radius:20px;
    background:#fff;
    cursor:pointer;
    overflow:hidden;
    transition:border-color .16s ease,box-shadow .16s ease,background .16s ease,transform .16s ease;
}
.solution-option-choice:hover{
    border-color:#bdd4c0;
    transform:translateY(-1px);
}
.solution-option-choice.is-selected{
    border-color:#55a463;
    background:#f6fbf7;
    box-shadow:0 10px 24px rgba(29,118,45,.09);
}
.solution-option-choice>input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}
.solution-option-media{
    grid-row:1 / 3;
    width:92px;
    height:92px;
    display:grid;
    place-items:center;
    border-radius:15px;
    overflow:hidden;
    border:1px solid #e7ece7;
    background:#fff;
}
.solution-option-media img{
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    padding:8px;
    box-sizing:border-box;
}
.solution-option-media-fallback{
    display:grid;
    place-items:center;
    width:100%;
    height:100%;
    background:#f2f6f2;
    color:#2d863d;
    font-size:30px;
    font-weight:900;
}
.solution-option-copy{
    display:grid;
    gap:4px;
    min-width:0;
}
.solution-option-topline{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    color:#708073;
    font-size:10px;
    font-weight:850;
    letter-spacing:.11em;
    text-transform:uppercase;
}
.solution-option-check{
    width:26px;
    height:26px;
    display:grid;
    place-items:center;
    flex:0 0 26px;
    border-radius:50%;
    background:#edf2ed;
    color:transparent;
    font-size:15px;
    font-weight:900;
    transition:background .16s ease,color .16s ease;
}
.solution-option-choice.is-selected .solution-option-check{
    background:#1f9138;
    color:#fff;
}
.solution-option-copy strong{
    color:#172019;
    font-size:15px;
    line-height:1.25;
}
.solution-option-copy small{
    color:#637066;
    font-size:12px;
    line-height:1.35;
}
.solution-option-article{
    color:#929b93;
    font-size:11px;
}
.solution-option-price{
    grid-column:2;
    justify-self:start;
    align-self:end;
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:0 10px;
    border-radius:999px;
    background:#eff7f0;
    color:#218b36;
    font-size:12px;
    font-weight:850;
    white-space:nowrap;
}
.solution-option-choice.is-selected .solution-option-price{
    background:#e3f3e6;
}
@media(max-width:760px){
    .solution-option-list{grid-template-columns:1fr}
    .solution-option-choice{
        grid-template-columns:86px minmax(0,1fr);
        min-height:124px;
        padding:12px;
        border-radius:18px;
    }
    .solution-option-media{width:86px;height:86px}
    .solution-option-copy strong{font-size:14px}
}


/* V3.13.30 – kompakte Varianten-Dropdowns */
.solution-option-group{
    position:relative;
}
.solution-option-group:not(.is-expanded) .solution-option-choice:not(.is-selected){
    display:none;
}
.solution-option-toggle{
    width:100%;
    min-height:48px;
    margin-top:10px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:0 16px;
    border:1px solid #dfe7df;
    border-radius:15px;
    background:#fff;
    color:#2b6734;
    font:inherit;
    font-size:13px;
    font-weight:850;
    cursor:pointer;
    box-shadow:0 5px 14px rgba(24,43,28,.035);
    transition:border-color .16s ease,background .16s ease,box-shadow .16s ease;
}
.solution-option-toggle:hover{
    border-color:#bcd4bf;
    background:#f9fcf9;
    box-shadow:0 8px 18px rgba(24,43,28,.06);
}
.solution-option-toggle-icon{
    width:28px;
    height:28px;
    flex:0 0 28px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#eef7ef;
    color:#218b36;
    font-size:18px;
    line-height:1;
    transition:transform .18s ease;
}
.solution-option-group.is-expanded .solution-option-toggle-icon{
    transform:rotate(180deg);
}
.solution-option-group.is-expanded .solution-option-list{
    gap:10px;
}
@media(max-width:640px){
    .solution-option-toggle{
        min-height:46px;
        padding:0 14px;
        border-radius:14px;
        font-size:12px;
    }
}

/* V3.13.31 – Produktdetails auch bei Varianten wieder direkt erreichbar */
.solution-option-detail-trigger{
    -webkit-appearance:none;
    appearance:none;
    border:0;
    margin:0;
    font:inherit;
    color:inherit;
    cursor:pointer;
}
button.solution-option-media{
    padding:0;
}
.solution-option-name{
    display:block;
    width:100%;
    padding:0;
    background:transparent;
    text-align:left;
    color:#172019;
    font-size:15px;
    line-height:1.25;
    font-weight:800;
}
.solution-option-name:hover,
.solution-option-name:focus-visible{
    color:#218b36;
}
.solution-option-media:focus-visible,
.solution-option-name:focus-visible{
    outline:2px solid #218b36;
    outline-offset:3px;
}
@media(max-width:760px){
    .solution-option-name{font-size:14px}
}

/* V3.13.32 – Varianten: Karte wählt, Info-Button öffnet Details */
.solution-option-actions{
    display:inline-flex;
    align-items:center;
    gap:8px;
    flex:0 0 auto;
}
.solution-option-info{
    -webkit-appearance:none;
    appearance:none;
    width:28px;
    height:28px;
    display:grid;
    place-items:center;
    flex:0 0 28px;
    padding:0;
    border:1px solid #d8e3d9;
    border-radius:50%;
    background:#fff;
    color:#397047;
    font:800 14px/1 inherit;
    text-transform:none;
    letter-spacing:0;
    cursor:pointer;
    box-shadow:0 3px 8px rgba(24,43,28,.05);
    transition:background .16s ease,border-color .16s ease,color .16s ease,transform .16s ease;
}
.solution-option-info:hover,
.solution-option-info:focus-visible{
    background:#eef8f0;
    border-color:#9bc7a2;
    color:#16812d;
    outline:none;
    transform:scale(1.04);
}
.solution-option-name{
    display:block;
    width:100%;
    padding:0;
    background:transparent;
    color:#172019;
    font-size:15px;
    line-height:1.25;
    font-weight:800;
    text-align:left;
}
.solution-option-media,
.solution-option-name{
    pointer-events:none;
}
.solution-option-choice{
    -webkit-tap-highlight-color:transparent;
}
.solution-option-choice:active{
    transform:scale(.997);
}
@media(max-width:760px){
    .solution-option-info{width:30px;height:30px;flex-basis:30px;font-size:15px}
    .solution-option-name{font-size:14px}
}


/* V3.13.33 – Varianten wie normale Paketprodukte */
.solution-components-grid>div:first-child{gap:10px}
.solution-configurator{
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
}
.solution-configurator-head{display:none}
.solution-option-groups{display:grid;gap:10px;margin:0}
.solution-option-group{
    min-width:0;
    margin:0;
    padding:0;
    border:0;
}
.solution-option-group>legend,
.solution-option-group>p{display:none}
.solution-option-list{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
}
.solution-option-choice{
    position:relative;
    display:grid;
    grid-template-columns:104px minmax(0,1fr) 150px;
    grid-template-rows:auto;
    align-items:start;
    gap:14px;
    min-height:0;
    padding:16px;
    border:1px solid #e0e9e1;
    border-radius:20px;
    background:#fff;
    box-shadow:none;
    overflow:visible;
}
.solution-option-choice:hover{
    transform:translateY(-2px);
    border-color:#bdd4c0;
    box-shadow:0 16px 32px rgba(18,31,21,.08);
}
.solution-option-choice.is-selected{
    border-color:#e0e9e1;
    background:#fff;
    box-shadow:none;
}
.solution-option-choice.is-selected:hover{
    border-color:#bdd4c0;
    box-shadow:0 16px 32px rgba(18,31,21,.08);
}
.solution-option-media{
    grid-row:auto;
    width:104px;
    height:104px;
    border-radius:16px;
    background:#f9fbf9;
}
.solution-option-copy{gap:5px;padding-top:2px}
.solution-option-topline{
    justify-content:flex-start;
    color:#66806b;
    font-size:11px;
}
.solution-option-actions{
    position:absolute;
    top:14px;
    right:14px;
}
.solution-option-check{display:none}
.solution-option-copy strong,
.solution-option-name{
    margin:0;
    color:#172019;
    font-size:22px;
    line-height:1.12;
    letter-spacing:-.025em;
}
.solution-option-copy small{font-size:14px;line-height:1.5;color:#667569}
.solution-option-article{
    display:inline-flex;
    width:max-content;
    max-width:100%;
    min-height:24px;
    align-items:center;
    padding:0 8px;
    border-radius:999px;
    background:#f1f4f1;
    color:#647166;
    font-size:11px;
    font-weight:750;
}
.solution-option-price{
    grid-column:3;
    justify-self:end;
    align-self:end;
    min-height:0;
    padding:0;
    border-radius:0;
    background:transparent;
    color:#218b36;
    font-size:14px;
    font-weight:850;
    text-align:right;
}
.solution-option-choice.is-selected .solution-option-price{background:transparent}
.solution-option-toggle{
    width:auto;
    min-height:34px;
    margin:8px 0 0 118px;
    display:inline-flex;
    justify-content:flex-start;
    gap:8px;
    padding:0 11px 0 12px;
    border:0;
    border-radius:999px;
    background:#edf7ef;
    color:#237735;
    box-shadow:none;
    font-size:11px;
    font-weight:850;
}
.solution-option-toggle:hover{
    border:0;
    background:#e5f3e8;
    box-shadow:none;
}
.solution-option-toggle-icon{
    width:22px;
    height:22px;
    flex-basis:22px;
    background:#dcefe0;
    font-size:15px;
}
.solution-option-group.is-expanded{
    padding:10px;
    border:1px solid #dfe9df;
    border-radius:22px;
    background:#f7faf7;
}
.solution-option-group.is-expanded .solution-option-toggle{margin-left:108px}
.solution-option-group.is-expanded .solution-option-choice{background:#fff}

@media(max-width:760px){
    .solution-option-choice{
        grid-template-columns:74px minmax(0,1fr);
        gap:12px;
        padding:13px;
    }
    .solution-option-media{width:74px;height:74px}
    .solution-option-copy strong,
    .solution-option-name{font-size:19px}
    .solution-option-price{
        grid-column:1 / -1;
        justify-self:start;
        margin-left:86px;
        margin-top:-7px;
        text-align:left;
    }
    .solution-option-actions{top:11px;right:11px}
    .solution-option-toggle{margin-left:86px}
    .solution-option-group.is-expanded{padding:7px}
    .solution-option-group.is-expanded .solution-option-toggle{margin-left:79px}
}

/* V3.13.34 – Varianten-Hinweis direkt in der Produktkarte */
.solution-option-group:not(.is-expanded){
    position:relative;
}
.solution-option-group:not(.is-expanded) .solution-option-choice.is-selected{
    position:relative;
    padding-bottom:58px;
}
.solution-option-group:not(.is-expanded) .solution-option-toggle{
    position:absolute;
    left:118px;
    bottom:14px;
    z-index:4;
    width:auto;
    min-height:32px;
    margin:0;
    padding:0 10px 0 11px;
    border:0;
    border-radius:999px;
    background:#edf7ef;
    color:#237735;
    box-shadow:none;
    font-size:11px;
    font-weight:850;
}
.solution-option-group:not(.is-expanded) .solution-option-toggle:hover{
    background:#e4f2e7;
}
.solution-option-group:not(.is-expanded) .solution-option-toggle-icon{
    width:21px;
    height:21px;
    flex-basis:21px;
}
.solution-option-group.is-expanded .solution-option-toggle{
    position:static;
    width:auto;
}
@media(max-width:760px){
    .solution-option-group:not(.is-expanded) .solution-option-choice.is-selected{
        padding-bottom:58px;
    }
    .solution-option-group:not(.is-expanded) .solution-option-toggle{
        left:99px;
        bottom:13px;
        min-height:31px;
        margin:0;
        font-size:11px;
    }
}

/* V3.13.35 – Variantenkarte wie normale Produktkarte, Schalter im selben Feld */
.solution-option-details-button{
    border:0;
    cursor:pointer;
    text-decoration:none;
}
.solution-option-category,
.solution-option-quantity{
    display:inline-flex;
    width:max-content;
    max-width:100%;
    min-height:24px;
    align-items:center;
    padding:0 8px;
    border-radius:999px;
    background:#f1f4f1;
    color:#647166;
    font-size:11px;
    font-weight:750;
}
.solution-option-description{
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    overflow:hidden;
    margin-top:4px;
    color:#667569;
    font-size:14px!important;
    line-height:1.5;
}
.solution-option-choice > .solution-option-toggle{
    position:static!important;
    grid-column:2;
    grid-row:auto;
    justify-self:start;
    align-self:start;
    width:auto;
    min-height:32px;
    margin:6px 0 0!important;
    padding:0 10px 0 11px;
}
.solution-option-group:not(.is-expanded) .solution-option-choice.is-selected{
    padding-bottom:16px;
}
.solution-option-group:not(.is-expanded) .solution-option-toggle,
.solution-option-group.is-expanded .solution-option-toggle{
    position:static;
    left:auto;
    bottom:auto;
    margin:6px 0 0!important;
}
.solution-option-actions{
    top:14px;
    right:14px;
}
.solution-option-details-button{
    min-height:34px;
    padding:0 11px;
    border-radius:10px;
    background:#eef6ef;
    color:#24672d;
    font-size:11px;
    font-weight:900;
}
.solution-option-details-button:hover,
.solution-option-details-button:focus-visible{
    background:#e4f1e6;
    outline:none;
}
@media(max-width:760px){
    .solution-option-choice > .solution-option-toggle{
        grid-column:2;
        margin-top:7px!important;
    }
    .solution-option-details-button{
        min-height:31px;
        padding:0 9px;
    }
    .solution-option-description{
        font-size:13px!important;
    }
}

/* V3.13.36 – Varianten wie normale Produkte: Karte = Details, Auswahlmarkierung = Variante wählen */
.solution-option-choice{
    cursor:pointer;
}
.solution-option-actions{
    display:flex;
    align-items:center;
}
.solution-option-select{
    -webkit-appearance:none;
    appearance:none;
    width:36px;
    height:36px;
    display:grid;
    place-items:center;
    padding:0;
    border:1px solid #d9e4da;
    border-radius:50%;
    background:#f1f5f1;
    cursor:pointer;
    transition:background .16s ease,border-color .16s ease,transform .16s ease,box-shadow .16s ease;
}
.solution-option-select:hover,
.solution-option-select:focus-visible{
    border-color:#a9cdb0;
    background:#eaf5ec;
    outline:none;
    box-shadow:0 0 0 3px rgba(31,145,56,.10);
    transform:scale(1.03);
}
.solution-option-check{
    display:grid!important;
    width:26px;
    height:26px;
    place-items:center;
    border-radius:50%;
    background:transparent;
    color:transparent;
    font-size:15px;
    font-weight:900;
}
.solution-option-choice.is-selected .solution-option-select{
    border-color:#1f9138;
    background:#1f9138;
}
.solution-option-choice.is-selected .solution-option-check{
    background:transparent;
    color:#fff;
}
.solution-option-details-button{display:none!important}
.solution-option-price{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:3px;
    color:#172019;
    font-weight:700;
}
.solution-option-price strong{
    color:#218b36;
    font-size:22px;
    line-height:1;
    letter-spacing:-.025em;
}
.solution-option-price span{
    color:#7b877d;
    font-size:11px;
    font-weight:600;
    white-space:nowrap;
}
.solution-option-price del{
    color:#8a948c;
}
@media(max-width:760px){
    .solution-option-select{width:34px;height:34px}
    .solution-option-price{
        align-items:flex-start;
        margin-left:86px;
    }
    .solution-option-price strong{font-size:20px}
}


/* V3.13.37 – Varianten: erster Klick wählt, aktive Variante klar markieren */
.solution-option-selected-label{
    display:none;
    align-items:center;
    min-height:28px;
    padding:0 10px;
    border-radius:999px;
    background:#e6f6e9;
    color:#1f8735;
    font-size:11px;
    font-weight:850;
    letter-spacing:.01em;
    white-space:nowrap;
}
.solution-option-group.is-expanded .solution-option-choice.is-selected{
    border-color:#2e9d45!important;
    background:#f5fbf6!important;
    box-shadow:0 0 0 2px rgba(46,157,69,.08),0 10px 24px rgba(29,118,45,.08)!important;
}
.solution-option-group.is-expanded .solution-option-choice.is-selected .solution-option-selected-label{
    display:inline-flex;
}
.solution-option-group.is-expanded .solution-option-choice:not(.is-selected) .solution-option-select{
    background:#f2f5f2;
    border-color:#dbe4dc;
}
@media(max-width:560px){
    .solution-option-selected-label{
        min-height:25px;
        padding:0 8px;
        font-size:10px;
    }
}

/* V3.13.40 – Produktbilder im Warenkorb vollständig anzeigen */
.cart-product-thumb img{
    display:block;
    width:100%;
    height:100%;
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    object-position:center center;
    box-sizing:border-box;
    padding:6px;
}

/* V3.13.41 – Warenkorb-Thumbnails vollständig sichtbar */
.cart-product-thumb{
    display:grid;
    place-items:center;
    overflow:hidden;
}
.cart-product-thumb img{
    display:block !important;
    width:auto !important;
    height:auto !important;
    max-width:calc(100% - 10px) !important;
    max-height:calc(100% - 10px) !important;
    min-width:0 !important;
    min-height:0 !important;
    object-fit:contain !important;
    object-position:center center !important;
    padding:0 !important;
    margin:auto !important;
    box-sizing:border-box !important;
}

/* V3.13.46 – iOS: kein automatischer Zoom beim Fokus auf Formfelder */
@media (max-width: 900px) {
    input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
    select,
    textarea,
    button,
    [contenteditable="true"] {
        font-size: 16px !important;
    }
}


/* V3.13.55 – Premium-Hauptnavigation */
.home-header-premium{
    box-shadow:0 6px 24px rgba(18,28,20,.035);
}
.home-header-premium-inner{
    min-height:82px;
}
.premium-home-nav{
    gap:3px;
    padding:4px;
    border:1px solid #e8ece8;
    border-radius:999px;
    background:rgba(246,248,246,.96);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
}
.premium-home-nav a{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:0 15px;
    border-radius:999px;
    color:#303730;
    font-size:13px;
    font-weight:760;
    letter-spacing:-.01em;
    transition:background .18s ease,color .18s ease,box-shadow .18s ease,transform .18s ease;
}
.premium-home-nav a:hover,
.premium-home-nav a:focus-visible{
    color:var(--lux-green-dark);
    background:#fff;
    box-shadow:0 5px 14px rgba(21,43,25,.07);
    outline:none;
}
.premium-home-nav a:active{
    transform:scale(.98);
}
.lux-header-tools{
    gap:8px;
}
.lux-icon-button{
    border:1px solid transparent;
    transition:background .18s ease,border-color .18s ease,transform .18s ease;
}
.lux-icon-button:hover,
.lux-icon-button:focus-visible{
    background:#f5f8f5;
    border-color:#e5ebe5;
    outline:none;
}
.lux-icon-button:active{
    transform:scale(.96);
}

@media(max-width:820px){
    .home-header-premium-inner{
        min-height:72px;
        row-gap:8px;
    }
    .premium-home-nav{
        grid-column:1/-1;
        width:100%;
        justify-self:stretch;
        justify-content:center;
        gap:3px;
        padding:4px;
        margin:0 0 8px;
        overflow:visible;
        border-radius:16px;
        background:#f6f8f6;
    }
    .premium-home-nav a{
        min-height:36px;
        padding:0 10px;
        font-size:12px;
        flex:0 0 auto;
    }
}
@media(max-width:430px){
    .premium-home-nav{
        gap:2px;
        padding:3px;
    }
    .premium-home-nav a{
        min-height:34px;
        padding:0 8px;
        font-size:11.5px;
    }
}

/* V3.13.56 – Raumkarten mit Upload-Bild und Platzhalter */
.front-room-image.is-placeholder{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:linear-gradient(180deg,#eef5ef 0%,#e4ece5 100%);
    color:#456349;
}
.front-room-placeholder-icon{
    font-size:42px;
    line-height:1;
}
.front-room-placeholder-label{
    font-size:15px;
    font-weight:800;
    letter-spacing:-.02em;
}


/* V3.13.57 – Loxone-inspiriertes Lösungsmenü */
.home-solution-strip{background:#fff;border-bottom:1px solid rgba(20,36,24,.08);box-shadow:0 14px 30px rgba(24,38,27,.04);position:sticky;top:88px;z-index:24}
.home-solution-strip .public-wrap{padding-top:12px;padding-bottom:12px}
.home-solution-strip-scroller{display:flex;gap:12px;overflow-x:auto;padding-bottom:2px;scrollbar-width:none}
.home-solution-strip-scroller::-webkit-scrollbar{display:none}
.home-solution-chip{flex:0 0 auto;min-width:174px;display:flex;align-items:center;gap:12px;padding:12px 16px;border:1px solid #d8e4d9;border-radius:18px;background:#fff;color:#1d281f;text-decoration:none;box-shadow:0 8px 18px rgba(22,37,25,.06);transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease,background .18s ease}
.home-solution-chip:hover,.home-solution-chip:focus-visible{transform:translateY(-2px);border-color:#b7cfbc;box-shadow:0 12px 24px rgba(22,37,25,.1)}
.home-solution-chip.is-active{background:linear-gradient(180deg,#f6fbf6 0%,#edf7ef 100%);border-color:#8cbe96;box-shadow:0 14px 28px rgba(53,105,63,.14)}
.home-solution-chip-icon{width:46px;height:46px;border-radius:14px;background:#f2f6f2;display:grid;place-items:center;font-size:22px;flex:0 0 46px}
.home-solution-chip.is-active .home-solution-chip-icon{background:#e4f4e7}
.home-solution-chip-copy{display:flex;flex-direction:column;min-width:0}
.home-solution-chip-copy strong{font-size:15px;line-height:1.2;white-space:nowrap}
.home-solution-chip-copy small{font-size:12px;color:#6c7b6e;line-height:1.2;margin-top:3px;white-space:nowrap}
.premium-home-nav{gap:18px}
.premium-home-nav a{position:relative;padding:10px 0;border-radius:999px;font-weight:700;letter-spacing:.01em}
.premium-home-nav a::after{content:"";position:absolute;left:0;right:0;bottom:2px;height:2px;border-radius:999px;background:var(--lux-green,#4e8d3a);opacity:0;transform:scaleX(.4);transition:opacity .18s ease,transform .18s ease}
.premium-home-nav a:hover::after,.premium-home-nav a:focus-visible::after{opacity:1;transform:scaleX(1)}
.front-solutions-section{padding-top:34px}
@media (max-width: 960px){
  .home-solution-strip{top:78px}
  .home-solution-chip{min-width:160px;padding:11px 14px;border-radius:16px}
  .home-solution-chip-icon{width:42px;height:42px;font-size:20px}
  .home-solution-chip-copy strong{font-size:14px}
}
@media (max-width: 640px){
  .home-solution-strip{top:72px}
  .home-solution-strip .public-wrap{padding-top:10px;padding-bottom:10px}
  .home-solution-strip-scroller{gap:10px}
  .home-solution-chip{min-width:152px;padding:10px 12px;border-radius:15px}
  .home-solution-chip-copy strong{font-size:13px}
  .home-solution-chip-copy small{font-size:11px}
}


/* V3.13.58 – Lösungsmenü direkt über Beliebte Lösungen */
.home-solution-strip-inline{position:static;top:auto;z-index:auto;margin:0 0 18px;padding:0;border:0;box-shadow:none;background:transparent}
.home-solution-strip-inline .home-solution-strip-scroller{padding:0 0 2px}


/* V3.13.59 – Preiszeile stabil & monochrome Lösungsicons */
.front-solution-price strong{white-space:nowrap}
@media(max-width:560px){
  .front-solution-price{grid-template-columns:1fr}
  .front-solution-price strong{font-size:29px;white-space:nowrap}
  .front-solution-old-price{grid-column:1;grid-row:auto;justify-self:start;margin-top:4px}
}
.home-solution-chip-icon{
  background:linear-gradient(180deg,#f4f5f4 0%,#ecefed 100%);
  color:#626b64;
  border:1px solid #d9dfda;
  font-size:13px;
  font-weight:900;
  letter-spacing:.06em;
}
.home-solution-chip.is-active .home-solution-chip-icon{
  background:linear-gradient(180deg,#eef1ef 0%,#e4e9e5 100%);
  color:#333a34;
  border-color:#c7d1c9;
}


/* V3.13.60 – echte monochrome Piktogramme im Lösungsmenü */
.home-solution-chip-icon{
    color:#626b64;
    background:linear-gradient(180deg,#f5f6f5,#ecefed);
    border:1px solid #d9dfda;
    font-size:0;
}
.home-solution-chip-icon svg{
    width:28px;
    height:28px;
    display:block;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}
.home-solution-chip.is-active .home-solution-chip-icon{
    color:#303730;
    background:linear-gradient(180deg,#eef1ef,#e4e9e5);
    border-color:#c7d1c9;
}
@media(max-width:640px){
    .home-solution-chip-icon svg{width:25px;height:25px}
}


/* V3.13.63 – horizontale Kategorienposition auf Mobilgeräten stabil */
.home-solution-strip-scroller{
    overscroll-behavior-x:contain;
    overscroll-behavior-inline:contain;
    -webkit-overflow-scrolling:touch;
    touch-action:pan-x;
    scroll-behavior:auto;
    scroll-snap-type:none!important;
}
.home-solution-chip{scroll-snap-align:none!important}

/* V3.13.64 – kompakte Loxone-inspirierte Lösungskategorien */
@media (min-width: 821px){
    .home-solution-strip-inline{margin-bottom:24px}
    .home-solution-strip-scroller{gap:10px;align-items:stretch;padding:2px 1px 6px}
    .home-solution-chip{
        flex:1 1 0;
        min-width:112px;
        max-width:168px;
        min-height:126px;
        padding:14px 10px 12px;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:flex-start;
        gap:9px;
        border-radius:17px;
        text-align:center;
    }
    .home-solution-chip-icon{
        width:48px;height:48px;flex:0 0 48px;
        border:0;border-radius:12px;background:transparent;color:#4f5751;
    }
    .home-solution-chip-icon svg{width:38px;height:38px;stroke-width:1.65}
    .home-solution-chip.is-active .home-solution-chip-icon{background:transparent;color:#202620;border:0}
    .home-solution-chip-copy{width:100%;align-items:center;gap:3px}
    .home-solution-chip-copy strong{max-width:100%;font-size:13px;line-height:1.15;white-space:normal;text-align:center}
    .home-solution-chip-copy small{margin:0;font-size:10.5px;line-height:1.2;white-space:normal;text-align:center;color:#818982}
    .home-solution-chip.is-active{background:#f6f8f6;border-color:#bec9bf;box-shadow:0 9px 20px rgba(24,39,27,.075)}
}

@media (max-width: 820px){
    .home-solution-chip{
        min-width:120px;max-width:132px;min-height:112px;padding:11px 9px 10px;
        flex-direction:column;justify-content:flex-start;align-items:center;gap:7px;text-align:center;
    }
    .home-solution-chip-icon{width:42px;height:42px;flex:0 0 42px;border:0;background:transparent}
    .home-solution-chip-icon svg{width:31px;height:31px}
    .home-solution-chip.is-active .home-solution-chip-icon{background:transparent;border:0}
    .home-solution-chip-copy{width:100%;align-items:center}
    .home-solution-chip-copy strong{font-size:12px;line-height:1.15;white-space:normal;text-align:center}
    .home-solution-chip-copy small{font-size:10px;line-height:1.15;white-space:normal;text-align:center}
}

/* V3.13.65 – Räume als kompakte Symbolkacheln */
.front-room-menu{display:flex;gap:12px;overflow-x:auto;padding:2px 1px 8px;scrollbar-width:none}
.front-room-menu::-webkit-scrollbar{display:none}
.front-room-menu-card{flex:0 0 138px;min-height:122px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:7px;padding:14px 10px;border:1px solid #d9e2da;border-radius:18px;background:#fff;color:#1b251d;text-decoration:none;box-shadow:0 8px 18px rgba(22,37,25,.05);transition:.18s ease}
.front-room-menu-card:hover,.front-room-menu-card.is-active{transform:translateY(-2px);border-color:#a9c6ae;box-shadow:0 12px 24px rgba(22,37,25,.09)}
.front-room-menu-icon{width:46px;height:46px;display:grid;place-items:center;border:1px solid #d9dfda;border-radius:14px;background:linear-gradient(180deg,#f4f5f4,#ecefed);font-size:25px;filter:grayscale(1);opacity:.9}
.front-room-menu-card strong{font-size:14px;line-height:1.15;text-align:center}
.front-room-menu-card small{font-size:11px;color:#79837a;text-align:center}
@media(max-width:640px){.front-room-menu-card{flex-basis:124px;min-height:112px}.front-room-menu-icon{width:42px;height:42px;font-size:23px}.front-room-menu-card strong{font-size:13px}}


/* V3.13.68 – Räume exakt im Stil der Lösungskategorien */
.home-room-strip{margin-bottom:0}
.home-room-strip-scroller{
    display:flex;
    gap:10px;
    overflow-x:auto;
    align-items:stretch;
    padding:2px 1px 6px;
    scrollbar-width:none;
    overscroll-behavior-x:contain;
    overscroll-behavior-inline:contain;
    -webkit-overflow-scrolling:touch;
    touch-action:pan-x;
    scroll-behavior:auto;
    scroll-snap-type:none!important;
}
.home-room-strip-scroller::-webkit-scrollbar{display:none}
.home-room-chip{scroll-snap-align:none!important}
.home-room-chip .home-solution-chip-icon{
    filter:grayscale(1);
    opacity:.84;
    font-size:29px;
    font-weight:400;
    letter-spacing:0;
}
.home-room-chip.is-active .home-solution-chip-icon{opacity:1}
@media(min-width:821px){
    .home-room-strip-scroller .home-solution-chip{
        flex:1 1 0;
        min-width:112px;
        max-width:168px;
    }
}
@media(max-width:820px){
    .home-room-strip-scroller{gap:10px}
    .home-room-strip-scroller .home-solution-chip{
        flex:0 0 120px;
        min-width:120px;
        max-width:132px;
    }
    .home-room-chip .home-solution-chip-icon{font-size:26px}
}

/* V3.13.70 – gemeinsamer Lösungsfinder: Kategorie oder Raum an derselben Stelle */
.solution-finder-unified{
  margin-top:18px;
  border:1px solid #e1e6e2;
  border-radius:22px;
  background:#fff;
  padding:14px;
  box-shadow:0 10px 28px rgba(24,39,29,.045);
}
.solution-finder-switch{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:4px;
  margin:0 0 12px;
  border-radius:14px;
  background:#f1f4f1;
  border:1px solid #e3e7e3;
}
.solution-finder-switch-button{
  appearance:none;
  border:0;
  background:transparent;
  min-height:38px;
  padding:8px 16px;
  border-radius:10px;
  font:inherit;
  font-size:14px;
  font-weight:800;
  color:#68706a;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:7px;
  transition:background .18s ease,color .18s ease,box-shadow .18s ease;
}
.solution-finder-switch-button.is-active{
  background:#fff;
  color:#1f2922;
  box-shadow:0 2px 8px rgba(31,41,34,.09);
}
.solution-finder-switch-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#58a969;
  flex:0 0 auto;
}
.solution-finder-panel[hidden]{display:none!important}
.solution-finder-panel.is-active{display:block}
.solution-finder-unified .solution-finder-strip{margin:0}
.solution-finder-unified .home-solution-strip{border:0;background:transparent;padding:0;box-shadow:none}
.solution-finder-unified .home-solution-strip-scroller{padding:2px 1px 4px}
.solution-finder-selection{margin-top:12px}
@media(max-width:700px){
  .solution-finder-unified{padding:11px;border-radius:18px}
  .solution-finder-switch{display:flex;width:max-content;margin-bottom:10px}
  .solution-finder-switch-button{min-height:36px;padding:7px 14px;font-size:13px}
}


/* V3.13.72 – Lösungsfinder vereinfachen und Abstand zu den Ergebnissen */
.solution-finder + .front-section-head{margin-top:36px}
@media(max-width:700px){
  .solution-finder + .front-section-head{margin-top:30px}
}

/* V3.13.73 – Lösungsfinder am Desktop vollständig sichtbar */
@media (min-width: 821px){
  .solution-finder-unified .home-solution-strip-scroller{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(118px,1fr));
    gap:10px;
    overflow:visible;
    width:100%;
    padding:2px 1px 4px;
    touch-action:auto;
  }
  .solution-finder-unified .home-solution-chip{
    width:100%;
    min-width:0;
    max-width:none;
    box-sizing:border-box;
  }
}

/* V3.13.75 – Loxone-inspirierte, besser lesbare Typografie */
body.package-public-body{
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    font-size:17px;
    line-height:1.55;
    letter-spacing:-.008em;
}
body.package-public-body button,
body.package-public-body input,
body.package-public-body select,
body.package-public-body textarea{
    font-family:inherit;
}
.premium-brand-copy strong{font-size:25px;letter-spacing:-.035em}
.premium-brand-copy small{font-size:12px;letter-spacing:-.005em}
.premium-home-nav a{font-size:15px;font-weight:700;letter-spacing:-.015em}
.lux-header-search input{font-size:15px}
.front-kicker,.solution-finder-kicker{font-size:13px;font-weight:800;letter-spacing:.055em}
.front-hero-copy h1{font-size:clamp(46px,5vw,72px);line-height:.98;letter-spacing:-.055em}
.front-hero-copy>p{font-size:20px;line-height:1.5;max-width:620px}
.front-hero-media-card strong{font-size:31px;line-height:1.02;letter-spacing:-.045em}
.front-hero-media-card span{font-size:16px;line-height:1.45}
.public-button{font-size:16px;font-weight:750}
.front-hero-points span{font-size:15px;font-weight:700}
.solution-finder-head h2,.front-section-head h2{font-size:clamp(32px,3vw,42px);line-height:1.05;letter-spacing:-.045em}
.solution-finder-head p,.front-section-head p{font-size:17px;line-height:1.5}
.solution-finder-switch-button{font-size:15px}
.home-solution-chip-copy strong{font-size:14px;font-weight:750;letter-spacing:-.015em}
.home-solution-chip-copy small{font-size:12px;line-height:1.3}
.front-solution-body h3,.home-package-card h3{font-size:23px;line-height:1.12;letter-spacing:-.035em}
.front-solution-body>p,.home-package-card p{font-size:16px;line-height:1.5}
.front-solution-topline,.front-solution-facts,.front-solution-action{font-size:13px}
.front-solution-price>small,.front-solution-tax,.home-package-price>span,.home-package-old-price{font-size:13px}
.front-solution-price strong{font-size:32px;letter-spacing:-.035em}
.home-package-open{font-size:14px;font-weight:750}
.home-selected-intro a{font-size:15px;font-weight:750}
.home-selected-intro-copy strong{font-size:18px}
.home-selected-intro-copy span{font-size:13px}
.solution-cover-copy h1{font-size:clamp(40px,5vw,62px);line-height:1.01;letter-spacing:-.055em}
.solution-cover-copy>p{font-size:18px;line-height:1.55}
.solution-section h2,.solution-configurator-head h2{font-size:clamp(28px,3vw,38px);line-height:1.08;letter-spacing:-.04em}
.solution-section p,.solution-configurator-head p{font-size:16px;line-height:1.55}
.solution-option-group legend{font-size:20px}
.solution-option-group>p{font-size:14px}
.solution-option-copy strong,.solution-option-name{font-size:16px}
.solution-option-copy small,.public-product-price-meta{font-size:14px}
.solution-option-copy>span,.solution-option-price,.public-price-tax-note{font-size:12px}
.public-product-card h3,.public-product-title{font-size:18px;line-height:1.25}
.public-product-card p,.public-product-description{font-size:15px;line-height:1.5}
.public-footer,.premium-footer-note,.lux-footer-legal{font-size:14px}

@media(max-width:820px){
    body.package-public-body{font-size:16px;line-height:1.5}
    .premium-home-nav a{font-size:13.5px}
    .front-hero-copy h1{font-size:clamp(39px,11vw,52px)}
    .front-hero-copy>p{font-size:18px}
    .front-hero-media-card strong{font-size:27px}
    .front-hero-media-card span{font-size:15px}
    .public-button{font-size:16px}
    .front-hero-points span{font-size:14px}
    .solution-finder-head h2,.front-section-head h2{font-size:31px}
    .solution-finder-head p,.front-section-head p{font-size:16px}
    .solution-finder-switch-button{font-size:14px}
    .home-solution-chip-copy strong{font-size:13px}
    .home-solution-chip-copy small{font-size:11.5px}
    .front-solution-body h3,.home-package-card h3{font-size:21px}
    .front-solution-body>p,.home-package-card p{font-size:15px}
    .front-solution-price strong{font-size:30px}
    .solution-cover-copy h1{font-size:38px}
    .solution-cover-copy>p{font-size:17px}
    .solution-section h2,.solution-configurator-head h2{font-size:28px}
    .solution-option-copy strong,.solution-option-name{font-size:15px}
}

@media(max-width:430px){
    .premium-home-nav a{font-size:13px;padding-left:7px;padding-right:7px}
    .front-hero-copy h1{font-size:40px}
    .front-hero-copy>p{font-size:17px}
    .home-solution-chip-copy strong{font-size:13px}
    .home-solution-chip-copy small{font-size:11px}
}

/* V3.13.76 – aufgeräumter Header + Live-Suche */
.home-header-premium{
    border-bottom:1px solid #e9eee9;
    box-shadow:0 5px 20px rgba(18,31,21,.035);
}
.home-header-premium-inner{
    min-height:78px;
    grid-template-columns:auto minmax(300px,1fr) auto;
    gap:34px;
}
.premium-home-nav{
    justify-self:center;
    gap:32px;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
}
.premium-home-nav a{
    min-height:46px;
    padding:0 2px;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    color:#222b24;
    font-size:15px;
    font-weight:720;
    letter-spacing:-.018em;
}
.premium-home-nav a::after{
    left:2px;
    right:2px;
    bottom:6px;
    height:2px;
}
.premium-home-nav a:hover,
.premium-home-nav a:focus-visible{
    background:transparent;
    box-shadow:none;
    color:#23752f;
}
.lux-header-tools{gap:7px}
.lux-header-search{
    position:relative;
    width:330px;
    height:44px;
    padding:0 13px;
    gap:10px;
    overflow:visible;
    border:1px solid #dfe6df;
    border-radius:13px;
    background:#f6f8f6;
    transition:border-color .18s ease,background .18s ease,box-shadow .18s ease;
}
.lux-header-search:focus-within,
.lux-header-search.is-open{
    border-color:#b9cbbb;
    background:#fff;
    box-shadow:0 0 0 3px rgba(38,133,51,.07);
}
.lux-search-icon{
    position:relative;
    flex:0 0 17px;
    width:17px;
    height:17px;
}
.lux-search-icon::before{
    content:"";
    position:absolute;
    width:9px;
    height:9px;
    left:1px;
    top:1px;
    border:1.8px solid #4f5b51;
    border-radius:50%;
}
.lux-search-icon::after{
    content:"";
    position:absolute;
    width:7px;
    height:1.8px;
    left:10px;
    top:11px;
    border-radius:2px;
    background:#4f5b51;
    transform:rotate(45deg);
    transform-origin:left center;
}
.lux-header-search input{
    min-width:0;
    padding:0;
    font-size:15px;
    font-weight:520;
}
.lux-header-search input::placeholder{color:#879087}
.lux-search-dropdown{
    position:absolute;
    z-index:300;
    top:calc(100% + 10px);
    right:0;
    width:min(470px,calc(100vw - 32px));
    padding:8px;
    border:1px solid #dfe7df;
    border-radius:17px;
    background:#fff;
    box-shadow:0 18px 50px rgba(20,37,23,.14);
}
.lux-search-dropdown[hidden]{display:none!important}
.lux-search-results{display:grid;gap:2px;max-height:min(62vh,520px);overflow:auto;overscroll-behavior:contain}
.lux-search-result{
    display:grid;
    grid-template-columns:76px minmax(0,1fr) 20px;
    align-items:center;
    gap:10px;
    min-height:60px;
    padding:9px 10px;
    border-radius:12px;
    color:#172019;
    text-decoration:none;
}
.lux-search-result:hover,.lux-search-result:focus-visible{background:#f2f7f3;outline:none}
.lux-search-result-type{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:27px;
    padding:0 8px;
    border-radius:8px;
    background:#edf3ee;
    color:#536157;
    font-size:11px;
    font-weight:800;
}
.lux-search-result-copy{min-width:0;display:grid;gap:2px}
.lux-search-result-copy strong{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:15px;line-height:1.2;letter-spacing:-.015em}
.lux-search-result-copy small{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#7b867d;font-size:12px;line-height:1.2}
.lux-search-result-arrow{color:#8c968e;font-size:24px;line-height:1;text-align:right}
.lux-search-empty{padding:18px 12px;color:#758078;font-size:14px;text-align:center}
.lux-search-all{
    width:100%;
    margin-top:6px;
    min-height:42px;
    border:0;
    border-top:1px solid #edf1ed;
    background:transparent;
    color:#277a33;
    font-size:13px;
    font-weight:800;
    cursor:pointer;
}
.lux-search-all:hover{background:#f7faf7}

@media(max-width:1180px) and (min-width:821px){
    .home-header-premium-inner{gap:20px;grid-template-columns:auto minmax(260px,1fr) auto}
    .premium-home-nav{gap:20px}
    .lux-header-search{display:flex;width:245px}
    .lux-header-search input{font-size:14px}
}
@media(max-width:820px){
    .home-header-premium-inner{row-gap:6px}
    .premium-home-nav{
        grid-column:1/-1;
        width:100%;
        justify-content:center;
        gap:28px;
        margin:0;
        padding:2px 0 9px;
        border:0;
        border-radius:0;
        background:transparent;
        overflow:visible;
    }
    .premium-home-nav a{min-height:36px;padding:0 2px;font-size:13.5px}
    .premium-home-nav a::after{bottom:1px}
}
@media(max-width:430px){
    .premium-home-nav{gap:18px}
    .premium-home-nav a{font-size:13px;padding:0}
}

/* V3.13.78 – Vorschaubilder in der Live-Suche */
.lux-search-result{
    grid-template-columns:48px minmax(0,1fr) 20px;
    min-height:66px;
    gap:11px;
}
.lux-search-result-visual{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border:1px solid #e0e6e1;
    border-radius:11px;
    background:#f4f6f4;
}
.lux-search-result-visual img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}
.lux-search-result-fallback{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    color:#657169;
    font-size:20px;
    font-weight:800;
}
.lux-search-result-copy{
    grid-template-columns:auto minmax(0,1fr);
    column-gap:7px;
    row-gap:2px;
    align-items:center;
}
.lux-search-result-copy .lux-search-result-type{
    min-height:20px;
    padding:0 6px;
    font-size:10px;
    border-radius:6px;
}
.lux-search-result-copy strong{
    min-width:0;
}
.lux-search-result-copy small{
    grid-column:1 / -1;
}
@media(max-width:640px){
    .lux-search-dropdown{width:min(440px,calc(100vw - 24px));}
    .lux-search-result{grid-template-columns:44px minmax(0,1fr) 18px;padding:8px;gap:9px;}
    .lux-search-result-visual{width:44px;height:44px;border-radius:10px;}
}

/* V3.13.79 – ruhiger Loxone-inspirierter Hover für Lösungskarten */
.front-solution-card,
.front-solution-card:hover,
.front-solution-card:focus-within{
    transform:none !important;
}
.front-solution-card{
    transition:box-shadow .22s ease,border-color .22s ease !important;
}
@media (hover:hover) and (pointer:fine){
    .front-solution-card:hover{
        border-color:#d9e2da;
        box-shadow:0 18px 42px rgba(18,31,21,.13) !important;
    }
}

/* V3.13.80 – ruhige Hover-Effekte ohne Bewegung */
.front-solution-card,
.front-solution-card:hover,
.front-solution-card:focus,
.front-solution-card:focus-within{
    transform:none !important;
}
.front-solution-card{
    transition:box-shadow .22s ease,border-color .22s ease !important;
}
@media (hover:hover) and (pointer:fine){
    .front-solution-card:hover{
        transform:none !important;
        border-color:#d4ddd5 !important;
        box-shadow:
            0 0 0 1px rgba(28,52,33,.025),
            0 0 30px rgba(18,31,21,.11),
            0 12px 34px rgba(18,31,21,.09) !important;
    }
}

/* Lösungsfinder: Kategorie- und Raumkacheln werfen nur Schatten, sie hüpfen nicht */
.home-solution-chip,
.home-solution-chip:hover,
.home-solution-chip:focus,
.home-solution-chip:focus-visible,
.home-room-chip,
.home-room-chip:hover,
.home-room-chip:focus,
.home-room-chip:focus-visible,
.front-room-menu-card,
.front-room-menu-card:hover,
.front-room-menu-card:focus,
.front-room-menu-card:focus-visible{
    transform:none !important;
}
@media (hover:hover) and (pointer:fine){
    .home-solution-chip:hover,
    .home-room-chip:hover,
    .front-room-menu-card:hover{
        box-shadow:0 0 22px rgba(22,37,25,.10),0 8px 20px rgba(22,37,25,.07) !important;
    }
}

/* V3.13.83 – Varianten bereits in „Alle Produkte auf einen Blick“ sichtbar */
.has-solution-detail .public-mosaic-tile.has-variants{
    padding-bottom:76px;
    overflow:hidden;
}
.public-mosaic-variant-badge{
    position:absolute;
    top:10px;
    left:10px;
    z-index:4;
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:5px 9px;
    border-radius:999px;
    background:rgba(255,255,255,.94);
    border:1px solid rgba(214,225,216,.95);
    box-shadow:0 4px 12px rgba(18,31,21,.07);
    color:#334239;
    font-size:11px;
    line-height:1;
    font-weight:800;
    backdrop-filter:blur(8px);
}
.public-mosaic-variant-thumbs{
    position:absolute;
    left:10px;
    right:10px;
    bottom:10px;
    z-index:5;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    overflow-x:auto;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
}
.public-mosaic-variant-thumbs::-webkit-scrollbar{display:none}
.public-mosaic-variant-thumb{
    flex:0 0 48px;
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    padding:4px;
    border-radius:11px;
    border:1.5px solid #dfe7e0;
    background:#fff;
    box-shadow:0 2px 8px rgba(18,31,21,.045);
    cursor:pointer;
    overflow:hidden;
    transition:border-color .16s ease,box-shadow .16s ease,background .16s ease;
}
.public-mosaic-variant-thumb:hover{
    border-color:#a9bbb0;
    box-shadow:0 4px 12px rgba(18,31,21,.08);
}
.public-mosaic-variant-thumb.is-selected{
    border-color:#1e9b43;
    background:#f4fbf6;
    box-shadow:0 0 0 2px rgba(30,155,67,.10);
}
.public-mosaic-variant-thumb img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}
.public-mosaic-variant-thumb span{
    font-weight:900;
    color:#6b776e;
}
@media(max-width:700px){
    .has-solution-detail .public-mosaic-tile.has-variants{padding-bottom:64px}
    .public-mosaic-variant-badge{top:7px;left:7px;min-height:24px;padding:4px 7px;font-size:10px}
    .public-mosaic-variant-thumbs{left:7px;right:7px;bottom:7px;gap:5px;justify-content:flex-start}
    .public-mosaic-variant-thumb{flex-basis:40px;width:40px;height:40px;border-radius:9px}
}

/* V3.13.89 – Einheitliche, stabile Produktbild-Darstellung ohne Hersteller-Sonderregeln */
.has-solution-detail .public-mosaic-image-wrap,
.has-solution-detail .solution-components-grid .public-product-thumb,
.solution-option-media,
.public-mosaic-variant-thumb{
    background:#fff;
}

/* Mosaik: Produkt immer vollständig, aber die verfügbare Fläche fast komplett nutzen. */
.has-solution-detail .public-mosaic-image-wrap{
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.has-solution-detail .public-mosaic-image-wrap img{
    display:block;
    width:100% !important;
    height:100% !important;
    max-width:100% !important;
    max-height:100% !important;
    padding:2% !important;
    box-sizing:border-box !important;
    object-fit:contain !important;
    object-position:center !important;
    transform:none !important;
    mix-blend-mode:normal !important;
}

/* Varianten-Kachel: unten Platz für Vorschaubilder reservieren, Hauptprodukt bleibt komplett sichtbar. */
.has-solution-detail .public-mosaic-tile.has-variants{
    padding-bottom:66px !important;
    overflow:hidden !important;
}
.has-solution-detail .public-mosaic-tile.has-variants .public-mosaic-image-wrap{
    position:absolute;
    inset:0 0 66px 0;
    width:auto !important;
    height:auto !important;
    padding:4px !important;
    box-sizing:border-box !important;
}
.has-solution-detail .public-mosaic-tile.has-variants .public-mosaic-image-wrap img{
    width:100% !important;
    height:100% !important;
    padding:2% !important;
    object-fit:contain !important;
    transform:none !important;
}

/* Varianten-Miniaturen: keine Vergrößerung und kein Abschneiden. */
.public-mosaic-variant-thumb{
    overflow:hidden !important;
}
.public-mosaic-variant-thumb img{
    display:block;
    width:100% !important;
    height:100% !important;
    max-width:100% !important;
    max-height:100% !important;
    padding:2px !important;
    box-sizing:border-box !important;
    object-fit:contain !important;
    object-position:center !important;
    transform:none !important;
}

/* Komponentenliste: auch hohe/schmale Produkte vollständig innerhalb der Bildbox. */
.has-solution-detail .solution-components-grid .public-product-thumb{
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden !important;
    padding:3px !important;
    box-sizing:border-box !important;
}
.has-solution-detail .solution-components-grid .public-product-thumb img{
    display:block;
    width:100% !important;
    height:100% !important;
    max-width:100% !important;
    max-height:100% !important;
    padding:0 !important;
    margin:0 !important;
    object-fit:contain !important;
    object-position:center !important;
    transform:none !important;
}

/* Varianten im eigentlichen Produktbereich ebenfalls vollständig darstellen. */
.solution-option-media{
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden !important;
}
.solution-option-media img{
    display:block;
    width:100% !important;
    height:100% !important;
    max-width:100% !important;
    max-height:100% !important;
    padding:3px !important;
    box-sizing:border-box !important;
    object-fit:contain !important;
    object-position:center !important;
    transform:none !important;
}

@media(max-width:700px){
    .has-solution-detail .public-mosaic-tile.has-variants{
        padding-bottom:56px !important;
    }
    .has-solution-detail .public-mosaic-tile.has-variants .public-mosaic-image-wrap{
        inset:0 0 56px 0;
        padding:3px !important;
    }
}
\n\n/* V3.13.92 – Varianten-Miniaturen: Loxone-Bilder mit eingebettetem Weißraum nur in der Miniatur größer darstellen.\n   Hauptbild und Produktliste bleiben unverändert. Kein Canvas-Cropping mehr. */\n.public-mosaic-variant-thumb.is-loxone img{\n    transform:scale(1.72) !important;\n    transform-origin:center center !important;\n}\n.public-mosaic-variant-thumb.is-emilum img{\n    transform:none !important;\n}\n@media(max-width:700px){\n    .public-mosaic-variant-thumb.is-loxone img{transform:scale(1.72) !important}\n}\n\n\n/* V3.13.93 – Varianten-Miniaturen nutzen serverseitig normalisierte Vorschaubilder.\n   Keine Hersteller-Skalierung oder CSS-Beschneidung mehr. */\n.public-mosaic-variant-thumb img,\n.public-mosaic-variant-thumb.is-loxone img,\n.public-mosaic-variant-thumb.is-emilum img{\n    display:block !important;\n    width:100% !important;\n    height:100% !important;\n    max-width:100% !important;\n    max-height:100% !important;\n    padding:2px !important;\n    margin:0 !important;\n    box-sizing:border-box !important;\n    object-fit:contain !important;\n    object-position:center !important;\n    transform:none !important;\n}\n
/* V3.13.94 – Mobile Hauptnavigation sauber ausrichten */
@media (max-width: 820px){
    .home-header-premium-inner{
        width:100%;
        grid-template-columns:minmax(0,1fr) auto;
        column-gap:12px;
        row-gap:8px;
    }
    .premium-brand{
        min-width:0;
        max-width:100%;
    }
    .premium-brand-copy{
        min-width:0;
    }
    .lux-header-tools{
        grid-column:2;
        justify-self:end;
    }
    .premium-home-nav{
        grid-column:1 / -1;
        width:100%;
        max-width:100%;
        box-sizing:border-box;
        justify-content:center;
        overflow-x:auto;
        overflow-y:hidden;
        overscroll-behavior-x:contain;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
        padding-left:0;
        padding-right:0;
    }
    .premium-home-nav::-webkit-scrollbar{display:none}
}

@media (max-width: 520px){
    .premium-home-nav{
        justify-content:flex-start;
        gap:20px;
        padding-left:4px;
        padding-right:4px;
    }
    .premium-home-nav a{
        flex:0 0 auto;
        padding-left:0;
        padding-right:0;
    }
}

/* V3.13.95 – Mobile Header-Aktionen sauber integrieren */
.lux-cart-icon,
.lux-user-icon{
    display:block;
    width:21px;
    height:21px;
    background-color:#172019;
    -webkit-mask-repeat:no-repeat;
    mask-repeat:no-repeat;
    -webkit-mask-position:center;
    mask-position:center;
    -webkit-mask-size:contain;
    mask-size:contain;
}
.lux-cart-icon{
    -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 4h2l2.2 10.2a2 2 0 0 0 2 1.6h7.9a2 2 0 0 0 1.9-1.4L21 8H6.1'/%3E%3Ccircle cx='9.5' cy='19' r='1.2' fill='black' stroke='none'/%3E%3Ccircle cx='17.5' cy='19' r='1.2' fill='black' stroke='none'/%3E%3C/svg%3E");
    mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 4h2l2.2 10.2a2 2 0 0 0 2 1.6h7.9a2 2 0 0 0 1.9-1.4L21 8H6.1'/%3E%3Ccircle cx='9.5' cy='19' r='1.2' fill='black' stroke='none'/%3E%3Ccircle cx='17.5' cy='19' r='1.2' fill='black' stroke='none'/%3E%3C/svg%3E");
}
.lux-user-icon{
    -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Ccircle cx='12' cy='8' r='3.4'/%3E%3Cpath d='M5.5 20c.7-4 3.1-6 6.5-6s5.8 2 6.5 6' stroke-linecap='round'/%3E%3C/svg%3E");
    mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Ccircle cx='12' cy='8' r='3.4'/%3E%3Cpath d='M5.5 20c.7-4 3.1-6 6.5-6s5.8 2 6.5 6' stroke-linecap='round'/%3E%3C/svg%3E");
}

@media(max-width:820px){
    .home-header-premium{
        overflow:hidden;
    }
    .home-header-premium-inner{
        grid-template-columns:minmax(0,1fr) auto !important;
        align-items:center;
        column-gap:10px !important;
        row-gap:8px !important;
        padding-top:12px;
        padding-bottom:8px;
    }
    .premium-brand{
        grid-column:1;
        grid-row:1;
        width:auto;
        min-width:0;
        justify-self:start;
    }
    .lux-header-tools{
        grid-column:2 !important;
        grid-row:1;
        display:flex;
        align-items:center;
        justify-content:flex-end;
        justify-self:end !important;
        gap:7px !important;
        width:auto;
        min-width:max-content;
        margin:0;
        padding:0;
        background:transparent !important;
    }
    .lux-header-search{
        display:none !important;
    }
    .lux-icon-button{
        flex:0 0 40px;
        width:40px !important;
        height:40px !important;
        border:1px solid #e2e8e2 !important;
        border-radius:50% !important;
        background:#fff !important;
        box-shadow:0 3px 10px rgba(21,43,25,.04);
        font-size:0 !important;
    }
    .lux-icon-button:hover,
    .lux-icon-button:focus-visible{
        background:#f7faf7 !important;
        border-color:#d7e1d8 !important;
    }
    .lux-icon-button b{
        right:-4px;
        top:-4px;
    }
    .premium-home-nav{
        grid-column:1/-1 !important;
        grid-row:2;
    }
}

@media(max-width:430px){
    .public-brand-mark{
        width:40px;
        height:40px;
        font-size:23px;
    }
    .premium-brand-copy strong{
        font-size:23px;
    }
    .lux-icon-button{
        flex-basis:38px;
        width:38px !important;
        height:38px !important;
    }
    .lux-cart-icon,
    .lux-user-icon{
        width:20px;
        height:20px;
    }
}

/* V3.13.96 – Warenkorb-Icon als echtes Inline-SVG statt CSS-Maske.
   Dadurch wird das Symbol auch in Mobile Safari zuverlässig dargestellt. */
.lux-cart-svg{
    display:block;
    width:21px;
    height:21px;
    flex:0 0 21px;
    color:#152319;
    overflow:visible;
}
@media(max-width:430px){
    .lux-cart-svg{
        width:20px;
        height:20px;
        flex-basis:20px;
    }
}

/* V3.13.100 – kompakte Filterkacheln am Desktop, kein Strecken über die ganze Zeile */
@media (min-width: 821px){
  .solution-finder-unified .home-solution-strip-scroller,
  .solution-finder-unified .home-room-strip-scroller{
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-start;
    align-items:stretch;
    gap:10px;
    overflow:visible;
    width:100%;
    padding:2px 1px 4px;
    touch-action:auto;
  }
  .solution-finder-unified .home-solution-chip,
  .solution-finder-unified .home-room-strip-scroller .home-solution-chip{
    flex:0 0 148px;
    width:148px;
    min-width:148px;
    max-width:148px;
    box-sizing:border-box;
  }
}

/* V3.13.101 – Titel/Teaser im Paket-Hero zuverlässig am unteren Bildrand */
.has-solution-detail .solution-cover-card{
    position:relative;
}
.has-solution-detail .solution-cover-content-clean{
    position:absolute;
    inset:0;
    height:100%;
    min-height:0 !important;
    box-sizing:border-box;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:34px;
    max-width:720px;
}
.has-solution-detail .solution-cover-overlay{
    background:
        linear-gradient(180deg,rgba(8,12,9,.04) 0%,rgba(8,12,9,.08) 48%,rgba(8,12,9,.72) 100%);
}
@media(max-width:720px){
    .has-solution-detail .solution-cover-content-clean{
        max-width:100%;
        padding:0 20px 22px;
    }
    .has-solution-detail .solution-cover-overlay{
        background:
            linear-gradient(180deg,rgba(8,12,9,.03) 0%,rgba(8,12,9,.06) 44%,rgba(8,12,9,.78) 100%);
    }
}

/* V3.13.102 – Rechtliche Seiten */
.legal-main{padding:54px 0 80px;background:linear-gradient(180deg,#f7faf7 0%,#fff 40%)}
.legal-wrap{max-width:980px}
.legal-hero{margin-bottom:24px}
.legal-hero h1{margin:8px 0 10px;font-size:clamp(40px,6vw,68px);line-height:.98;letter-spacing:-.045em;color:#101a12}
.legal-hero p{margin:0;max-width:760px;font-size:20px;line-height:1.55;color:#6f7b72}
.legal-card{background:#fff;border:1px solid #e1e8e2;border-radius:30px;padding:34px;box-shadow:0 14px 42px rgba(29,53,33,.055)}
.legal-prose{font-size:17px;line-height:1.72;color:#536057}
.legal-prose h2{margin:36px 0 10px;font-size:24px;line-height:1.2;color:#142017;letter-spacing:-.02em}
.legal-prose h2:first-child{margin-top:0}
.legal-prose p{margin:0 0 16px}
.legal-prose strong{color:#18231a}
.legal-prose a{color:#22863a;font-weight:750;text-decoration:none}
.legal-prose a:hover{text-decoration:underline}
.legal-draft-warning{display:grid;gap:5px;margin:0 0 20px;padding:16px 18px;border:1px solid #f0cf90;border-radius:18px;background:#fff8e9;color:#6c5222}
.legal-draft-warning strong{font-size:16px}
.legal-draft-warning span{font-size:14px;line-height:1.5}
.legal-form-sample{margin:18px 0 0;padding:22px;border:1px dashed #cad6cc;border-radius:20px;background:#f8faf8;color:#3f4b42}
.legal-form-line{letter-spacing:.03em;color:#879188}
.lux-footer-legal-links{display:flex;flex-wrap:wrap;gap:14px}
.lux-footer-legal-links a{color:inherit;text-decoration:none}
.lux-footer-legal-links a:hover{color:#238c3d}
.coming-legal-links{display:flex;justify-content:center;gap:18px;padding:22px;font:600 14px/1.4 system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}
.coming-legal-links a{color:#4f5b51;text-decoration:none}
@media(max-width:720px){
  .legal-main{padding:34px 0 60px}
  .legal-hero h1{font-size:42px}
  .legal-hero p{font-size:17px}
  .legal-card{padding:22px 18px;border-radius:24px}
  .legal-prose{font-size:16px;line-height:1.68}
  .legal-prose h2{font-size:22px;margin-top:30px}
  .lux-footer-legal{gap:12px;align-items:flex-start}
}


/* V3.13.103 – Rechtstexte/Widerrufsformular mobil ohne Überbreite */
.legal-main,.legal-wrap,.legal-card,.legal-prose,.legal-form-sample{min-width:0;max-width:100%}
.legal-card,.legal-form-sample{box-sizing:border-box;overflow:hidden}
.legal-prose,.legal-prose p,.legal-prose strong,.legal-prose a{overflow-wrap:anywhere;word-break:normal}
.legal-form-sample p{max-width:100%;margin:0 0 18px}
.legal-form-blank{width:100%;height:26px;border-bottom:1.5px solid #7d8a80;margin:2px 0 22px}
.legal-form-inline-line{display:block;width:min(100%,420px);height:20px;border-bottom:1.5px solid #7d8a80;margin-top:5px}
.legal-form-inline-line-short{width:min(220px,100%)}
@media(max-width:700px){
  .legal-wrap{width:100%;padding-left:16px;padding-right:16px;box-sizing:border-box}
  .legal-card{padding:20px 16px}
  .legal-form-sample{padding:18px 14px;border-radius:18px}
  .legal-form-sample p{font-size:16px;line-height:1.55}
  .legal-form-inline-line,.legal-form-inline-line-short{width:100%}
}

/* V3.13.104 – Rechtseiten: mobile Überbreite vollständig verhindern */
.legal-page-body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}
.legal-page-body .legal-main,
.legal-page-body .legal-wrap,
.legal-page-body .legal-hero,
.legal-page-body .legal-card,
.legal-page-body .legal-prose,
.legal-page-body .legal-draft-warning,
.legal-page-body .legal-form-sample{
    min-width:0;
    max-width:100%;
    box-sizing:border-box;
}
.legal-hero h1,
.legal-prose h2,
.legal-prose h3{
    max-width:100%;
    overflow-wrap:anywhere;
    word-break:normal;
    -webkit-hyphens:auto;
    hyphens:auto;
}

@media(max-width:700px){
    .legal-page-body .public-wrap.legal-wrap{
        width:calc(100% - 24px) !important;
        max-width:calc(100% - 24px) !important;
        margin-left:auto !important;
        margin-right:auto !important;
        padding-left:0 !important;
        padding-right:0 !important;
    }
    .legal-page-body .legal-main{
        width:100%;
        overflow:hidden;
    }
    .legal-page-body .legal-hero{
        width:100%;
        margin-left:0;
        margin-right:0;
    }
    .legal-page-body .legal-hero h1{
        font-size:clamp(34px,10vw,42px);
        line-height:1.02;
        letter-spacing:-.04em;
    }
    .legal-page-body .legal-hero p{
        max-width:100%;
    }
    .legal-page-body .legal-card,
    .legal-page-body .legal-draft-warning,
    .legal-page-body .legal-form-sample{
        width:100%;
        margin-left:0;
        margin-right:0;
    }
    .legal-page-body .legal-prose h2{
        font-size:22px;
        line-height:1.18;
    }
}

/* V3.13.106 – Produktbereich der Lösungsdetailseite am Desktop besser lesbar */
@media (min-width: 821px){
    .solution-components-head{
        margin-bottom:26px;
    }
    .solution-components-head h2{
        font-size:clamp(38px,3.4vw,52px);
    }
    .solution-components-head p{
        font-size:18px;
        line-height:1.6;
    }
    .solution-components-summary span{
        padding:11px 15px;
        font-size:14px;
    }
    .solution-components-summary b{
        font-size:20px;
    }

    .solution-components-section .solution-components-grid{
        grid-template-columns:minmax(0,1fr) 390px;
        gap:22px;
    }
    .solution-product-list-card{
        padding:14px!important;
    }
    .solution-product-list-card .public-products{
        gap:14px!important;
    }
    .solution-components-grid .public-product.public-product-clickable{
        grid-template-columns:118px minmax(0,1fr) 178px;
        gap:18px;
        padding:20px;
        border-radius:22px;
    }
    .solution-components-grid .public-product-thumb{
        width:118px;
        height:118px;
        border-radius:18px;
    }
    .public-product-brand{
        margin-bottom:5px;
        font-size:13px;
        letter-spacing:.055em;
    }
    .solution-components-grid .public-product-copy h3{
        margin-bottom:9px;
        font-size:25px;
        line-height:1.12;
    }
    .public-product-open-hint{
        padding:8px 11px;
        font-size:13px;
    }
    .solution-components-grid .public-product-meta{
        gap:7px;
        margin-bottom:11px;
    }
    .solution-components-grid .public-product-meta span{
        min-height:28px;
        padding:0 10px;
        font-size:13px;
    }
    .solution-components-grid .public-product-description{
        font-size:16px;
        line-height:1.55;
    }
    .solution-components-grid .public-product-prices{
        min-width:178px;
        padding-top:5px;
    }
    .solution-components-grid .public-product-prices strong{
        font-size:30px;
        line-height:1.05;
    }
    .solution-components-grid .public-product-prices span,
    .solution-components-grid .public-product-prices del,
    .solution-components-grid .public-price-tax-note,
    .solution-components-grid .public-product-price-meta{
        font-size:13px;
        line-height:1.45;
    }
    .solution-components-grid .public-customer-quantity{
        margin-top:14px;
        padding:12px 14px;
        font-size:14px;
    }

    .has-solution-detail .solution-components-grid .public-side-card{
        padding:26px;
    }
    .has-solution-detail .solution-components-grid .public-side-card .home-eyebrow{
        font-size:13px;
    }
    .has-solution-detail .solution-components-grid .public-side-card h2{
        font-size:27px;
        line-height:1.12;
    }
    .has-solution-detail .solution-components-grid .public-side-card > p,
    .solution-checkout-intro{
        font-size:16px;
        line-height:1.6;
    }
    .has-solution-detail .solution-components-grid .public-side-row span{
        font-size:14px;
    }
    .has-solution-detail .solution-components-grid .public-side-row strong{
        font-size:16px;
    }
    .has-solution-detail .solution-components-grid .public-side-price-values strong{
        font-size:30px;
    }
    .has-solution-detail .solution-components-grid .public-side-price-values del{
        font-size:13px;
    }
    .has-solution-detail .solution-components-grid .solution-saving-box strong{
        font-size:15px;
    }
    .has-solution-detail .solution-components-grid .solution-saving-box span,
    .has-solution-detail .solution-components-grid .solution-saving-box b,
    .solution-checkout-note{
        font-size:13px;
    }
    .solution-add-cart-button{
        min-height:52px;
        font-size:16px;
    }
}

/* LuxSmartify 3.13.107 – Partnerprogramm im öffentlichen Design */
.partner-program-page{background:#f7faf7;color:#102218}
.partner-program-main{overflow:hidden}
.partner-public-hero{padding:54px 0 68px;background:linear-gradient(180deg,#fff 0%,#f4f9f4 100%);border-bottom:1px solid #e3ebe4}
.partner-public-hero-grid{display:grid;grid-template-columns:minmax(0,1.22fr) minmax(360px,.78fr);gap:36px;align-items:stretch}
.partner-public-hero-copy{padding:44px 24px 40px 0;display:flex;flex-direction:column;justify-content:center}
.partner-public-hero-copy h1{max-width:850px;margin:14px 0 22px;font-size:clamp(46px,5.1vw,78px);line-height:.98;letter-spacing:-.055em;color:#0d1c13}
.partner-public-hero-copy>p{max-width:760px;margin:0;font-size:clamp(20px,1.7vw,27px);line-height:1.48;color:#69736c}
.partner-public-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px}
.partner-public-actions .public-button{min-height:58px;padding:0 28px}
.partner-public-proof{display:flex;flex-wrap:wrap;gap:12px;margin-top:34px}
.partner-public-proof span{display:inline-flex;align-items:center;gap:10px;padding:11px 15px;border:1px solid #dfe8e1;border-radius:999px;background:#fff;font-size:15px;font-weight:750;color:#33443a;box-shadow:0 7px 24px rgba(24,55,34,.04)}
.partner-public-proof b{display:grid;place-items:center;width:27px;height:27px;border-radius:50%;background:#e7f7ea;color:#268a39;font-size:12px}
.partner-public-hero-card{padding:32px;border:1px solid #dbe6dd;border-radius:34px;background:rgba(255,255,255,.92);box-shadow:0 24px 60px rgba(19,53,30,.08);display:flex;flex-direction:column;justify-content:center}
.partner-public-card-kicker{font-size:13px;font-weight:900;letter-spacing:.15em;color:#347642;margin-bottom:10px}
.partner-public-step{display:grid;grid-template-columns:48px 1fr;gap:15px;padding:20px 0;border-bottom:1px solid #e9eeea;align-items:start}
.partner-public-step:last-child{border-bottom:0;padding-bottom:4px}
.partner-public-step>b{display:grid;place-items:center;width:43px;height:43px;border-radius:14px;background:#eef8ef;color:#248339;font-size:14px}
.partner-public-step strong{display:block;font-size:20px;line-height:1.2;color:#122219;margin:1px 0 6px}
.partner-public-step span{display:block;font-size:16px;line-height:1.5;color:#748078}
.partner-public-section{padding:82px 0}
.partner-public-section-head{max-width:820px;margin-bottom:34px}
.partner-public-section-head h2{margin:12px 0 14px;font-size:clamp(38px,4vw,58px);line-height:1.02;letter-spacing:-.045em;color:#0d1c13}
.partner-public-section-head p{margin:0;font-size:20px;line-height:1.55;color:#6a756e}
.partner-public-benefit-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.partner-public-benefit-card{min-height:270px;padding:30px;border:1px solid #dde7df;border-radius:28px;background:#fff;box-shadow:0 14px 42px rgba(15,50,28,.045);transition:box-shadow .2s ease,border-color .2s ease}
@media (hover:hover){.partner-public-benefit-card:hover{border-color:#cddbd0;box-shadow:0 22px 54px rgba(15,50,28,.1)}}
.partner-public-benefit-icon{display:grid;place-items:center;width:52px;height:52px;margin-bottom:34px;border-radius:16px;background:#eaf7ec;color:#23833a;font-size:26px;font-weight:700}
.partner-public-benefit-card h3{margin:0 0 12px;font-size:26px;letter-spacing:-.025em;color:#102118}
.partner-public-benefit-card p{margin:0;font-size:17px;line-height:1.58;color:#6f7a72}
.partner-public-process-section{padding:20px 0 82px}
.partner-public-process-shell{padding:48px;border:1px solid #dce6de;border-radius:34px;background:#f0f7f1}
.partner-public-section-head-left{margin-bottom:28px}
.partner-public-process-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.partner-public-process-list article{display:grid;grid-template-columns:50px 1fr;gap:16px;padding:24px;border:1px solid #dce7de;border-radius:22px;background:#fff}
.partner-public-process-list article>b{display:grid;place-items:center;width:44px;height:44px;border-radius:50%;background:#e4f6e7;color:#27883b}
.partner-public-process-list strong{display:block;margin:1px 0 6px;font-size:20px;color:#14241a}
.partner-public-process-list span{display:block;font-size:16px;line-height:1.5;color:#717d75}
.partner-public-cta-section{padding:0 0 84px}
.partner-public-cta{display:flex;align-items:center;justify-content:space-between;gap:32px;padding:44px 48px;border-radius:34px;background:#10271a;color:#fff;box-shadow:0 24px 62px rgba(8,33,18,.14)}
.partner-public-cta .front-kicker{color:#8fe49e}
.partner-public-cta h2{max-width:730px;margin:10px 0 12px;font-size:clamp(34px,3.5vw,54px);line-height:1.03;letter-spacing:-.04em;color:#fff}
.partner-public-cta p{max-width:740px;margin:0;font-size:18px;line-height:1.55;color:#c6d3c9}
.partner-public-cta-actions{display:flex;flex-direction:column;align-items:flex-end;gap:14px;flex:0 0 auto}
.partner-public-cta-actions .public-button-primary{white-space:nowrap;background:#39b54a;border-color:#39b54a}
.partner-public-login-link{font-weight:800;color:#dceae0;text-decoration:none}
.partner-public-login-link:hover{color:#fff}
.partner-program-page .premium-footer-secondary a[aria-current="page"]{color:#21853a;font-weight:800}
@media(max-width:900px){
  .partner-public-hero{padding:34px 0 46px}
  .partner-public-hero-grid{grid-template-columns:1fr;gap:20px}
  .partner-public-hero-copy{padding:18px 0 8px}
  .partner-public-hero-copy h1{font-size:clamp(42px,10vw,64px)}
  .partner-public-hero-card{padding:26px;border-radius:28px}
  .partner-public-benefit-grid{grid-template-columns:1fr}
  .partner-public-benefit-card{min-height:auto}
  .partner-public-process-shell{padding:30px 24px}
  .partner-public-process-list{grid-template-columns:1fr}
  .partner-public-cta{align-items:flex-start;flex-direction:column;padding:34px 28px}
  .partner-public-cta-actions{align-items:flex-start;width:100%}
}
@media(max-width:560px){
  .partner-public-hero{padding:22px 0 38px}
  .partner-public-hero-copy h1{margin-top:10px;font-size:42px;line-height:1.01}
  .partner-public-hero-copy>p{font-size:19px;line-height:1.48}
  .partner-public-actions{display:grid;grid-template-columns:1fr;width:100%;margin-top:24px}
  .partner-public-actions .public-button{width:100%;justify-content:center;text-align:center}
  .partner-public-proof{display:grid;grid-template-columns:1fr;gap:9px;margin-top:24px}
  .partner-public-proof span{border-radius:16px}
  .partner-public-hero-card{padding:22px}
  .partner-public-step{grid-template-columns:42px 1fr;padding:17px 0;gap:12px}
  .partner-public-step>b{width:38px;height:38px;border-radius:12px}
  .partner-public-step strong{font-size:18px}
  .partner-public-step span{font-size:15px}
  .partner-public-section{padding:58px 0}
  .partner-public-section-head h2{font-size:38px}
  .partner-public-section-head p{font-size:18px}
  .partner-public-benefit-card{padding:24px;border-radius:24px}
  .partner-public-benefit-icon{margin-bottom:24px}
  .partner-public-benefit-card h3{font-size:23px}
  .partner-public-benefit-card p{font-size:16px}
  .partner-public-process-section{padding-bottom:58px}
  .partner-public-process-shell{padding:26px 18px;border-radius:26px}
  .partner-public-process-list article{grid-template-columns:42px 1fr;padding:19px 17px;gap:12px}
  .partner-public-process-list article>b{width:38px;height:38px}
  .partner-public-process-list strong{font-size:18px}
  .partner-public-process-list span{font-size:15px}
  .partner-public-cta-section{padding-bottom:58px}
  .partner-public-cta{padding:28px 22px;border-radius:26px}
  .partner-public-cta h2{font-size:36px}
  .partner-public-cta p{font-size:17px}
  .partner-public-cta-actions .public-button{width:100%;justify-content:center;text-align:center}
}

/* LuxSmartify 3.13.108 – kompakte Footer-Aktionen */
.premium-footer-secondary{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}
.premium-footer-secondary a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 18px;
  border:1px solid #d8e3da;
  border-radius:999px;
  background:#fff;
  color:#334238;
  font-size:14px;
  font-weight:750;
  line-height:1;
  text-decoration:none;
  white-space:nowrap;
  box-shadow:0 6px 18px rgba(24,49,30,.035);
  transition:border-color .18s ease,box-shadow .18s ease,background .18s ease,color .18s ease;
}
.premium-footer-secondary a:first-child{
  border-color:#b9dcbc;
  background:#eef8ef;
  color:#257a34;
}
.premium-footer-secondary a:hover{
  border-color:#b8ceb9;
  box-shadow:0 10px 24px rgba(24,49,30,.08);
  color:#1f7130;
}
.premium-footer-secondary a:first-child:hover{
  background:#e6f5e8;
  border-color:#9ed0a5;
}
.partner-program-page .premium-footer-secondary a[aria-current="page"]{
  background:#e8f6ea;
  border-color:#9ed0a5;
  color:#1f7931;
  font-weight:800;
}
@media(max-width:720px){
  .premium-footer-secondary{
    justify-content:flex-start;
    width:100%;
    gap:9px;
  }
  .premium-footer-secondary a{
    min-height:44px;
    padding:0 16px;
    font-size:14px;
  }
}

/* LuxSmartify 3.13.109 – Footer: Marke | Service | Rechtliches */
.premium-footer-columns{
  display:grid;
  grid-template-columns:minmax(280px,1.2fr) minmax(170px,.55fr) minmax(220px,.7fr);
  gap:56px;
  align-items:start;
  padding-top:10px;
  padding-bottom:34px;
}
.premium-footer-column{min-width:0}
.premium-footer-brand-column{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:18px;
}
.premium-footer-tagline{
  margin:0;
  color:#6d786f;
  font-size:17px;
  line-height:1.5;
}
.premium-footer-group{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:15px;
}
.premium-footer-heading{
  color:#1a2a1f;
  font-size:13px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:.11em;
  text-transform:uppercase;
}
.premium-footer-links{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:11px;
}
.premium-footer-links a{
  color:#59645c;
  font-size:16px;
  line-height:1.35;
  font-weight:560;
  text-decoration:none;
  transition:color .18s ease,transform .18s ease;
}
.premium-footer-links a:hover,
.premium-footer-links a[aria-current="page"]{
  color:#23843a;
}
@media (hover:hover){
  .premium-footer-links a:hover{transform:translateX(2px)}
}
.premium-footer-bottom{
  padding-top:22px;
  border-top:1px solid #e7ece8;
  color:#8a948c;
  font-size:14px;
  line-height:1.4;
}
/* alte Footer-Menüregeln nicht mehr auf den neuen Aufbau anwenden */
.premium-footer-columns .premium-footer-secondary,
.premium-footer-columns .premium-footer-note,
.premium-footer-columns .lux-footer-legal{display:none!important}

@media(max-width:820px){
  .premium-footer-columns{
    grid-template-columns:1fr 1fr;
    gap:34px 28px;
    padding-bottom:28px;
  }
  .premium-footer-brand-column{
    grid-column:1 / -1;
    gap:14px;
  }
  .premium-footer-tagline{font-size:16px}
}
@media(max-width:560px){
  .premium-footer{padding-top:32px}
  .premium-footer-columns{
    grid-template-columns:1fr;
    gap:30px;
    padding-bottom:26px;
  }
  .premium-footer-brand-column,
  .premium-footer-group{
    width:100%;
  }
  .premium-footer-heading{font-size:12px}
  .premium-footer-links{gap:10px}
  .premium-footer-links a{font-size:16px}
  .premium-footer-bottom{
    padding-top:20px;
    font-size:13px;
  }
}

/* V3.13.111 – Paketdetailseite: konsistente, besser lesbare Typografie */
.has-solution-detail .solution-cover-info-tags span{
    font-size:13px;
    line-height:1.25;
    padding:7px 11px;
}
.has-solution-detail .solution-cover-price-inline > span{
    font-size:12px;
    line-height:1.3;
    font-weight:800;
    letter-spacing:.045em;
}
.has-solution-detail .solution-cover-price-inline strong{
    font-size:34px;
    line-height:1;
}
.has-solution-detail .solution-cover-price-inline small{
    font-size:13px;
    line-height:1.35;
}
.has-solution-detail .solution-detail-nav a{
    min-height:48px;
    padding:0 17px;
    font-size:15px;
    line-height:1.2;
}
.has-solution-detail .solution-detail-nav a span{
    width:28px;
    height:28px;
    font-size:12px;
}
.has-solution-detail .home-eyebrow,
.has-solution-detail .solution-section-title-row .home-eyebrow{
    font-size:12px;
    line-height:1.3;
    letter-spacing:.09em;
}
.has-solution-detail .solution-story-grid{
    gap:36px;
    padding:36px 0;
}
.has-solution-detail .solution-story-main h2,
.has-solution-detail .solution-section-title-row h2{
    font-size:clamp(34px,3.2vw,46px);
    line-height:1.06;
    letter-spacing:-.04em;
}
.has-solution-detail .solution-story-description{
    margin-top:20px;
    max-width:66ch;
    font-size:18px;
    line-height:1.72;
}
.has-solution-detail .solution-story-steps{
    padding:24px;
    border-radius:22px;
}
.has-solution-detail .solution-story-step-list{
    gap:16px;
    margin-top:16px;
}
.has-solution-detail .solution-story-step{
    grid-template-columns:34px 1fr;
    gap:13px;
}
.has-solution-detail .solution-story-step > span{
    width:34px;
    height:34px;
    border-radius:10px;
    font-size:14px;
}
.has-solution-detail .solution-story-step strong{
    padding-top:3px;
    font-size:16px;
    line-height:1.52;
}
.has-solution-detail .solution-benefit-strip article{
    padding:18px;
    min-height:92px;
}
.has-solution-detail .solution-benefit-strip article strong{
    font-size:16px;
    line-height:1.45;
}
.has-solution-detail .solution-benefit-strip article > span{
    font-size:15px;
}
.has-solution-detail .solution-package-visual-meta span{
    font-size:14px;
}

@media (min-width:821px){
    .has-solution-detail .solution-cover-teaser{
        font-size:22px;
        line-height:1.4;
    }
    .has-solution-detail .solution-story-section,
    .has-solution-detail .solution-benefits-compact-section,
    .has-solution-detail .solution-package-visual-section,
    .has-solution-detail .solution-media-section{
        padding:34px 0;
    }
}

@media (max-width:820px){
    .has-solution-detail .solution-cover-info-tags span{font-size:12px}
    .has-solution-detail .solution-cover-price-inline > span{font-size:11px}
    .has-solution-detail .solution-cover-price-inline strong{font-size:30px}
    .has-solution-detail .solution-cover-price-inline small{font-size:12px}
    .has-solution-detail .solution-detail-nav a{
        min-height:46px;
        padding:0 14px;
        font-size:14px;
    }
    .has-solution-detail .solution-detail-nav a span{
        width:26px;
        height:26px;
        font-size:11px;
    }
    .has-solution-detail .home-eyebrow,
    .has-solution-detail .solution-section-title-row .home-eyebrow{font-size:11px}
    .has-solution-detail .solution-story-main h2,
    .has-solution-detail .solution-section-title-row h2{
        font-size:30px;
        line-height:1.08;
    }
    .has-solution-detail .solution-story-description{
        margin-top:16px;
        font-size:17px;
        line-height:1.65;
    }
    .has-solution-detail .solution-story-steps{
        padding:18px;
        border-radius:20px;
    }
    .has-solution-detail .solution-story-step-list{gap:13px}
    .has-solution-detail .solution-story-step strong{
        font-size:15px;
        line-height:1.5;
    }
    .has-solution-detail .solution-benefit-strip article strong{font-size:15px}
}

/* LuxSmartify 3.13.112 – schneller Lösungsfinder ohne Seitenreload */
.front-solution-card[hidden],
.home-solution-chip[hidden],
[data-filter-empty][hidden],
[data-filter-results-grid][hidden]{display:none!important}

/* V3.13.115 – einheitliches Konto-Menü oben rechts */
.lux-account-menu{position:relative;margin:0;padding:0}
.lux-account-menu>summary{list-style:none}
.lux-account-menu>summary::-webkit-details-marker{display:none}
.lux-account-trigger{cursor:pointer}
.lux-account-initial{display:grid;place-items:center;width:28px;height:28px;border-radius:50%;background:#1d2d22;color:#fff;font-size:12px;font-weight:850;text-transform:uppercase}
.lux-account-dropdown{position:absolute;right:0;top:calc(100% + 10px);z-index:120;width:270px;padding:8px;border:1px solid #dfe7e1;border-radius:16px;background:#fff;box-shadow:0 20px 55px rgba(20,45,26,.15)}
.lux-account-head{display:flex;flex-direction:column;padding:10px 11px 12px;min-width:0}
.lux-account-head strong{font-size:15px;color:#17221a;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.lux-account-head span{margin-top:3px;font-size:12px;color:#718077;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.lux-account-head small{margin-top:5px;font-size:11px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:#2f7d32}
.lux-account-separator{height:1px;background:#edf1ee;margin:4px}
.lux-account-dropdown>a{display:block;padding:11px 12px;border-radius:10px;color:#34433a;text-decoration:none;font-size:14px;font-weight:720}
.lux-account-dropdown>a:hover{background:#f4f7f4}
.lux-account-dropdown>a.is-danger{color:#a22c2c}
@media(max-width:640px){.lux-account-dropdown{position:fixed;right:14px;left:14px;top:76px;width:auto}}


/* V3.13.117 – Hauptnavigation größer und besser lesbar */
.home-header-premium .premium-home-nav a{font-size:17px;font-weight:730}
@media(max-width:820px){.home-header-premium .premium-home-nav a{font-size:15px}}
@media(max-width:430px){.home-header-premium .premium-home-nav a{font-size:14px}}

/* V3.13.130 – Konto-Menü auf Mobilgeräten kompakt am Avatar verankern */
@media(max-width:640px){
    .home-header-premium:has(.lux-account-menu[open]){
        overflow:visible !important;
    }
    .lux-account-menu{
        position:relative;
    }
    .lux-account-dropdown{
        position:absolute;
        top:calc(100% + 10px);
        right:0;
        left:auto;
        width:min(280px, calc(100vw - 32px));
        max-width:calc(100vw - 32px);
        box-sizing:border-box;
    }
}

/* LuxSmartify Produktwelt V3.13.131 */
.shop-public-body{background:#f6f8f6}.shop-main{min-height:70vh}.shop-hero{padding:74px 0 34px}.shop-hero .public-wrap{max-width:1180px}.shop-hero h1{font-size:clamp(42px,6vw,72px);line-height:.98;letter-spacing:-.055em;margin:10px 0 18px;color:#0e1711}.shop-hero p{max-width:780px;font-size:20px;line-height:1.55;color:#67736b;margin:0}.shop-entry-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:18px;margin-bottom:56px}.shop-entry-card{display:block;background:#fff;border:1px solid #dfe7e1;border-radius:28px;padding:30px;text-decoration:none;color:#102117;box-shadow:0 12px 36px rgba(15,38,23,.04);transition:.18s ease}.shop-entry-card:hover{transform:translateY(-2px);border-color:#9ed1ad}.shop-entry-card>span{font-size:12px;font-weight:850;letter-spacing:.12em;text-transform:uppercase;color:#2b914b}.shop-entry-card strong{display:block;font-size:27px;margin:8px 0}.shop-entry-card p{margin:0;color:#748078;line-height:1.5}.shop-section{padding-bottom:58px}.shop-section-head{display:flex;align-items:end;justify-content:space-between;gap:20px;margin-bottom:22px}.shop-section-head h2{font-size:34px;letter-spacing:-.035em;margin:4px 0 0}.shop-chip-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}.shop-chip{display:flex;flex-direction:column;gap:4px;border:1px solid #dce5de;background:#fff;border-radius:19px;padding:18px 19px;color:#14251a;text-decoration:none;min-height:80px}.shop-chip:hover,.shop-chip.is-active{border-color:#39bb5b;background:#f0fbf3}.shop-chip strong{font-size:16px}.shop-chip small{color:#7a867e}.shop-filter-form{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}.shop-filter-form input,.shop-filter-form select,.shop-search-page input{min-height:48px;border:1px solid #d9e3db;border-radius:14px;background:#fff;padding:0 15px;font:inherit;color:#17251c}.shop-filter-form input{min-width:260px}.shop-filter-form button,.shop-search-page button{border:0;border-radius:14px;background:#1db445;color:#fff;font-weight:800;padding:0 20px;min-height:48px;cursor:pointer}.shop-product-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.shop-product-card{background:#fff;border:1px solid #e0e7e2;border-radius:24px;overflow:hidden;min-width:0;display:flex;flex-direction:column}.shop-product-image{aspect-ratio:1.25/1;background:#f9faf9;display:flex;align-items:center;justify-content:center;padding:22px}.shop-product-image img{width:100%;height:100%;object-fit:contain}.shop-product-image>span{width:58px;height:58px;border-radius:17px;background:#1db445;color:#fff;display:grid;place-items:center;font-size:30px;font-weight:900}.shop-product-copy{padding:18px;display:flex;flex-direction:column;flex:1}.shop-product-brand{display:flex;justify-content:space-between;gap:8px;align-items:center;color:#62806c;font-size:12px;font-weight:750}.shop-product-brand a{color:#268b47;text-decoration:none}.shop-product-brand small{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.shop-product-card h3{font-size:20px;line-height:1.18;letter-spacing:-.02em;margin:10px 0;color:#132017}.shop-product-card p{color:#738078;font-size:14px;line-height:1.5;margin:8px 0 18px}.shop-product-meta{display:flex;gap:7px;flex-wrap:wrap}.shop-product-meta a,.shop-product-meta span{font-size:11px;background:#f1f6f2;color:#44614d;border-radius:999px;padding:5px 8px;text-decoration:none}.shop-product-bottom{margin-top:auto;padding-top:18px;border-top:1px solid #edf1ee;display:flex;justify-content:space-between;align-items:end;gap:8px}.shop-product-bottom strong{font-size:19px}.shop-product-bottom small{font-size:11px;color:#849087;text-align:right}.shop-empty{background:#fff;border:1px solid #e0e7e2;border-radius:22px;padding:30px;color:#6e7a72}.shop-manufacturer-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.shop-manufacturer-card{display:flex;align-items:center;gap:16px;background:#fff;border:1px solid #dfe7e1;border-radius:22px;padding:20px;text-decoration:none;color:#102117}.shop-manufacturer-logo{width:54px;height:54px;border-radius:16px;background:#eef8f0;color:#218e43;display:grid;place-items:center;font-weight:900;font-size:23px}.shop-manufacturer-card div{display:flex;flex-direction:column;gap:3px;flex:1}.shop-manufacturer-card strong{font-size:19px}.shop-manufacturer-card small{color:#7b877f}.shop-card-arrow{font-size:24px;color:#2a9a4c}.shop-back,.shop-inline-link{color:#258d46;text-decoration:none;font-weight:750}.shop-manufacturer-hero .shop-back{display:inline-block;margin-bottom:28px}.shop-manufacturer-actions{margin-top:28px}.shop-search-page{display:flex;gap:10px;max-width:760px;margin:28px 0 0}.shop-search-page input{flex:1;min-width:0}.shop-solution-results{display:grid;gap:12px}.shop-solution-result{display:grid;grid-template-columns:100px 1fr auto;align-items:center;gap:18px;background:#fff;border:1px solid #dfe7e1;border-radius:22px;padding:14px;text-decoration:none;color:#112017}.shop-solution-result>div{width:100px;height:76px;background:#f6f8f6;border-radius:15px;overflow:hidden}.shop-solution-result img{width:100%;height:100%;object-fit:cover}.shop-solution-result span small{display:block;color:#279149;font-weight:800;text-transform:uppercase;font-size:10px;letter-spacing:.09em}.shop-solution-result span strong{display:block;font-size:20px;margin:3px 0}.shop-solution-result span p{margin:0;color:#738078;font-size:14px}.shop-solution-result>b{font-size:25px;color:#2a9a4c;padding:0 10px}
@media(max-width:1050px){.shop-product-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.shop-chip-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:760px){.shop-hero{padding:34px 0 24px}.shop-hero h1{font-size:42px}.shop-hero p{font-size:17px}.shop-entry-grid{grid-template-columns:1fr;margin-bottom:38px}.shop-entry-card{padding:22px;border-radius:22px}.shop-chip-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.shop-section-head{align-items:stretch;flex-direction:column}.shop-filter-form{justify-content:stretch}.shop-filter-form input,.shop-filter-form select,.shop-filter-form button{width:100%;min-width:0}.shop-product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.shop-product-image{padding:12px}.shop-product-copy{padding:13px}.shop-product-card h3{font-size:16px}.shop-product-brand{align-items:flex-start;flex-direction:column}.shop-product-bottom{align-items:flex-start;flex-direction:column}.shop-manufacturer-grid{grid-template-columns:1fr}.shop-search-page{flex-direction:column}.shop-search-page button{width:100%}.shop-solution-result{grid-template-columns:76px 1fr auto;gap:12px}.shop-solution-result>div{width:76px;height:68px}.shop-solution-result span p{display:none}}
@media(max-width:430px){.shop-chip-grid{grid-template-columns:1fr}.shop-product-grid{grid-template-columns:1fr 1fr}.shop-product-card p,.shop-product-meta{display:none}}



/* LuxSmartify 3.13.137 – Produktkategorien exakt wie Räume; Footer ohne Shop-Sonderbreite */
.shop-category-finder{margin-top:0}
.shop-category-finder .solution-finder-panel{display:block}
.shop-category-finder .home-solution-strip{margin:0}
/* exakt wie der Räume-Block: auf Mobilgeräten 120px breite Kacheln, horizontal scrollbar */
@media(max-width:820px){
  .shop-category-finder .home-room-strip-scroller .home-solution-chip{
    flex:0 0 120px;
    min-width:120px;
    max-width:132px;
  }
}
/* Footer: keine Shop-Sonderbreite, sondern dieselben public-wrap-Ränder wie auf der Hauptseite */
.shop-public-body .premium-footer{overflow:visible}
.shop-public-body .premium-footer-columns,
.shop-public-body .premium-footer-bottom{
  width:min(100% - 40px,1320px);
  margin-left:auto;
  margin-right:auto;
}
@media(max-width:560px){
  .shop-public-body .premium-footer-columns,
  .shop-public-body .premium-footer-bottom{
    width:calc(100% - 32px);
  }
}

/* LuxSmartify 3.13.143 – interaktiver Produktfinder */
[data-product-finder] .home-solution-chip{position:relative;font:inherit;cursor:pointer;appearance:none;-webkit-appearance:none}

/* LuxSmartify 3.13.147 – Auswahlpunkt nur an Hersteller/Kategorie-Tabs */
[data-product-finder] .solution-finder-switch-button.has-selection::after{
  content:"";
  display:inline-block;
  width:7px;
  height:7px;
  margin-left:7px;
  border-radius:50%;
  background:#22a447;
  vertical-align:middle;
  transform:translateY(-1px);
}
/* In den Hersteller-/Kategorie-Kacheln selbst niemals einen Auswahlpunkt anzeigen. */
[data-product-finder] .home-solution-chip::after{content:none!important;display:none!important}

/* LuxSmartify 3.13.148 – Produktbilder in Shop-Karten einheitlich skalieren */
.shop-product-image{
  overflow:hidden;
  background:#fff;
  padding:10px;
  aspect-ratio:1.22/1;
}
.shop-product-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  transform:scale(1.16);
  transform-origin:center;
  display:block;
}
@media(max-width:760px){
  .shop-product-image{
    padding:6px;
    aspect-ratio:1.12/1;
  }
  .shop-product-image img{
    transform:scale(1.24);
  }
}


/* LuxSmartify 3.13.149 – Hersteller/Kategorie Active-State exakt wie Lösungen/Räume */
[data-product-finder] .home-solution-chip.is-active{
  background:#f6f8f6;
  border-color:#bec9bf;
  box-shadow:0 9px 20px rgba(24,39,27,.075);
}
[data-product-finder] .home-solution-chip.is-active .home-solution-chip-icon{
  background:transparent;
  color:#202620;
  border:0;
}


/* LuxSmartify Produktwelt Hero V3.13.150 */
.shop-hero-card{background:#fff;border:1px solid #dfe7e1;border-radius:30px;padding:42px 48px;box-shadow:0 12px 36px rgba(15,38,23,.04)}
@media(max-width:760px){.shop-hero-card{border-radius:24px;padding:28px 24px}.shop-hero{padding-top:26px}}

/* LuxSmartify 3.13.151 – Produktkopf harmonisch an Seitenlayout angleichen */
.shop-hero{
  padding:54px 0 34px;
}
.shop-hero .public-wrap{
  max-width:none;
  width:min(100% - 40px,1320px);
}
.shop-hero-card{
  width:100%;
  padding:38px 42px 40px;
  border-radius:28px;
  border:1px solid #dfe7e1;
  background:#fff;
  box-shadow:0 10px 30px rgba(15,38,23,.035);
}
.shop-hero-card .home-eyebrow{
  margin-bottom:12px;
}
.shop-hero-card h1{
  margin:0 0 14px;
  font-size:clamp(46px,4.7vw,64px);
  line-height:1;
  letter-spacing:-.045em;
}
.shop-hero-card p{
  max-width:850px;
  margin:0;
  font-size:18px;
  line-height:1.55;
  color:#66736b;
}
.shop-section#produktfinder{
  padding-top:8px;
}
.shop-section#produktfinder .solution-finder-head{
  margin-bottom:24px;
}
@media(max-width:820px){
  .shop-hero{
    padding:28px 0 24px;
  }
  .shop-hero .public-wrap{
    width:min(100% - 24px,1320px);
  }
  .shop-hero-card{
    padding:26px 24px 28px;
    border-radius:24px;
  }
  .shop-hero-card h1{
    font-size:42px;
    margin-bottom:12px;
  }
  .shop-hero-card p{
    font-size:16px;
    line-height:1.55;
  }
  .shop-section#produktfinder{
    padding-top:0;
  }
}

/* LuxSmartify 3.13.152 – Produktseite wie aus einem Guss mit der Startseite */
.shop-public-body .shop-main{
  background:linear-gradient(180deg,#f1f7f0 0%,#f7faf7 46%,#fff 100%);
}
.shop-hero{
  padding:28px 0 26px;
}
.shop-hero .public-wrap,
.shop-section#produktfinder,
.shop-main > .shop-section{
  width:min(100% - 40px,1320px);
  max-width:1320px;
  margin-left:auto;
  margin-right:auto;
}
.shop-hero-card.shop-hero-card-split{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
  gap:0;
  overflow:hidden;
  padding:0;
  border:1px solid #d7e3d9;
  border-radius:32px;
  background:#fff;
  box-shadow:0 18px 48px rgba(18,47,28,.055);
}
.shop-hero-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:390px;
  padding:52px 56px;
}
.shop-hero-copy .home-eyebrow{
  margin-bottom:16px;
  color:#315f38;
  letter-spacing:.095em;
}
.shop-hero-copy h1{
  max-width:720px;
  margin:0 0 18px;
  font-size:clamp(48px,5vw,70px);
  line-height:.98;
  letter-spacing:-.055em;
  color:#0f1912;
}
.shop-hero-copy p{
  max-width:690px;
  margin:0;
  font-size:19px;
  line-height:1.58;
  color:#69756d;
}
.shop-hero-visual{
  position:relative;
  min-height:390px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:44px;
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 16%,rgba(75,176,82,.28),transparent 31%),
    linear-gradient(145deg,#e9f5e8 0%,#f8fbf7 70%);
  border-left:1px solid #d9e5db;
}
.shop-hero-visual::before{
  content:"L";
  position:absolute;
  top:-58px;
  right:18px;
  font-size:290px;
  line-height:1;
  font-weight:950;
  color:rgba(45,135,49,.07);
}
.shop-hero-visual-kicker{
  position:relative;
  display:inline-flex;
  align-self:flex-start;
  margin-bottom:auto;
  padding:9px 12px;
  border:1px solid #d3e1d5;
  border-radius:999px;
  background:rgba(255,255,255,.8);
  color:#315f38;
  font-size:11px;
  font-weight:850;
  letter-spacing:.08em;
}
.shop-hero-visual>strong{
  position:relative;
  max-width:440px;
  font-size:clamp(30px,2.8vw,43px);
  line-height:1.02;
  letter-spacing:-.045em;
  color:#142319;
}
.shop-hero-stats{
  position:relative;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-top:26px;
}
.shop-hero-stats span{
  min-width:0;
  padding:14px 15px;
  border:1px solid rgba(203,222,206,.95);
  border-radius:16px;
  background:rgba(255,255,255,.78);
}
.shop-hero-stats b{
  display:block;
  font-size:22px;
  line-height:1;
  color:#17331f;
}
.shop-hero-stats small{
  display:block;
  margin-top:6px;
  color:#748078;
  font-size:11px;
  font-weight:700;
}
.shop-section#produktfinder{
  padding:12px 0 42px;
}
.shop-section#produktfinder .solution-finder{
  padding:34px 38px 36px;
  border:1px solid #dbe5dd;
  border-radius:30px;
  background:#fff;
  box-shadow:0 14px 38px rgba(18,47,28,.045);
}
.shop-section#produktfinder .solution-finder-head{
  margin-bottom:22px;
}
.shop-section#produktfinder .solution-finder-head h2{
  margin-top:8px;
  font-size:clamp(34px,3.3vw,48px);
}
.shop-section#produktfinder .solution-finder-head p{
  max-width:760px;
  margin-top:12px;
  color:#69756d;
}
.shop-section#produktfinder .solution-finder-unified{
  margin-top:0;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.shop-section#produktfinder .solution-finder-switch{
  margin-bottom:16px;
}
.shop-main > .shop-section:not(#produktfinder){
  padding-left:0;
  padding-right:0;
}

@media(max-width:980px){
  .shop-hero-card.shop-hero-card-split{grid-template-columns:1fr}
  .shop-hero-copy{min-height:auto;padding:42px 42px 36px}
  .shop-hero-visual{min-height:260px;border-left:0;border-top:1px solid #d9e5db;padding:34px 42px}
  .shop-hero-visual>strong{max-width:600px}
}
@media(max-width:820px){
  .shop-hero .public-wrap,
  .shop-section#produktfinder,
  .shop-main > .shop-section{
    width:min(100% - 24px,1320px);
  }
  .shop-hero{padding:18px 0 20px}
  .shop-hero-card.shop-hero-card-split{border-radius:26px}
  .shop-hero-copy{padding:30px 26px 28px}
  .shop-hero-copy h1{font-size:44px;margin-bottom:14px}
  .shop-hero-copy p{font-size:17px;line-height:1.52}
  .shop-hero-visual{min-height:220px;padding:28px 26px}
  .shop-hero-visual>strong{font-size:31px}
  .shop-hero-stats{gap:8px;margin-top:20px}
  .shop-hero-stats span{padding:11px 12px}
  .shop-hero-stats b{font-size:19px}
  .shop-section#produktfinder{padding:8px 0 30px}
  .shop-section#produktfinder .solution-finder{padding:26px 22px 24px;border-radius:24px}
  .shop-section#produktfinder .solution-finder-head h2{font-size:34px}
}
@media(max-width:520px){
  .shop-hero-stats{grid-template-columns:1fr 1fr 1fr}
  .shop-hero-stats span{padding:10px 8px;text-align:center}
  .shop-hero-stats b{font-size:17px}
  .shop-hero-stats small{font-size:10px}
}

/* LuxSmartify 3.13.153 – eigene Lösungsseite im Design der Produktwelt */
.solutions-public-body{background:#f6f8f6}
.solutions-hero{padding:28px 0 26px}
.solutions-hero .public-wrap{width:min(100% - 40px,1320px);max-width:1320px}
.solutions-hero-visual{
  background:
    radial-gradient(circle at 80% 18%,rgba(49,166,78,.27),transparent 31%),
    linear-gradient(145deg,#e9f5e8 0%,#f8fbf7 70%);
}
.solutions-finder-section{width:min(100% - 40px,1320px);max-width:1320px;padding:12px 0 64px}
.solutions-finder-section>.solution-finder{
  padding:34px 38px 36px;
  border:1px solid #dbe5dd;
  border-radius:30px;
  background:#fff;
  box-shadow:0 14px 38px rgba(18,47,28,.045);
}
.solutions-finder-section .solution-finder-head{margin-bottom:22px}
.solutions-finder-section .solution-finder-head h2{margin-top:8px;font-size:clamp(34px,3.3vw,48px)}
.solutions-finder-section .solution-finder-head p{max-width:760px;margin-top:12px;color:#69756d}
.solutions-finder-section .solution-finder-unified{margin-top:0;padding:0;border:0;border-radius:0;background:transparent;box-shadow:none}
.solutions-finder-section .solution-finder-switch{margin-bottom:16px}
.solutions-results-section{padding-top:46px}
.solutions-results-section .front-section-head{margin-bottom:22px}
.home-popular-only{padding-top:48px;padding-bottom:76px}
.home-popular-only .front-section-head{margin-bottom:24px}
.home-popular-only .front-section-head .solution-finder-kicker{display:block;margin-bottom:8px}
@media(max-width:820px){
  .solutions-hero{padding:18px 0 18px}
  .solutions-hero .public-wrap,.solutions-finder-section{width:min(100% - 24px,1320px)}
  .solutions-finder-section{padding:8px 0 36px}
  .solutions-finder-section>.solution-finder{padding:26px 22px 24px;border-radius:24px}
  .solutions-finder-section .solution-finder-head h2{font-size:34px}
  .solutions-results-section{padding-top:34px}
  .home-popular-only{padding-top:30px;padding-bottom:52px}
}


/* LuxSmartify 3.13.154 – identischer Headerabstand für Lösungen und Produkte */
.solutions-public-body .solutions-hero,
.shop-public-body .shop-hero{padding-top:28px;}
@media(max-width:820px){
  .solutions-public-body .solutions-hero,
  .shop-public-body .shop-hero{padding-top:18px;}
}


/* V3.13.161 – Produktkarten wie Lösungskarten + Produktdaten */
.shop-product-card-clickable{cursor:pointer;transition:box-shadow .22s ease,border-color .22s ease!important;outline:none}
@media (hover:hover) and (pointer:fine){.shop-product-card-clickable:hover{border-color:#d4ddd5!important;box-shadow:0 0 0 1px rgba(28,52,33,.025),0 0 30px rgba(18,31,21,.11),0 12px 34px rgba(18,31,21,.09)!important}}
.shop-product-card-clickable:focus-visible{border-color:#78bf89;box-shadow:0 0 0 3px rgba(46,164,72,.16)}
.shop-product-data-list{display:grid;gap:0;border:1px solid #e5ece6;border-radius:16px;overflow:hidden;background:#fbfcfb}
.shop-product-data-row{display:grid;grid-template-columns:minmax(110px,.8fr) minmax(0,1.2fr);gap:18px;padding:12px 14px;border-bottom:1px solid #e8eee9;align-items:start}
.shop-product-data-row:last-child{border-bottom:0}.shop-product-data-row span{color:#7a887e;font-size:12px;font-weight:750}.shop-product-data-row strong{color:#26382a;font-size:13px;overflow-wrap:anywhere}.shop-product-detail-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}.shop-product-detail-actions:empty{display:none}
@media(max-width:640px){.shop-product-data-row{grid-template-columns:1fr;gap:3px}}

/* LuxSmartify 3.13.162 – Shop cards + product detail */
.shop-product-card{transition:box-shadow .18s ease,border-color .18s ease;background:#fff}
.shop-product-card:hover,.shop-product-card:focus-within{box-shadow:0 16px 38px rgba(32,58,24,.12);border-color:rgba(83,156,48,.22)}
.shop-product-card-clickable{cursor:pointer}
.shop-product-title-link{color:inherit;text-decoration:none}
.shop-card-cart{display:flex;align-items:center;gap:10px;margin-top:16px;position:relative;z-index:2}
.shop-qty-control{display:grid;grid-template-columns:42px 52px 42px;min-height:44px;border:1px solid rgba(25,42,20,.13);border-radius:12px;overflow:hidden;background:#fff}
.shop-qty-control button{border:0;background:#fff;font-size:22px;cursor:pointer;color:#243020}
.shop-qty-control input{width:100%;border:0;text-align:center;font:inherit;font-weight:700;appearance:textfield;-moz-appearance:textfield}
.shop-qty-control input::-webkit-inner-spin-button,.shop-qty-control input::-webkit-outer-spin-button{appearance:none;margin:0}
.shop-cart-button{width:48px;height:44px;border:0;border-radius:12px;background:#49b52d;color:#fff;display:grid;place-items:center;cursor:pointer;transition:transform .15s ease,box-shadow .15s ease}
.shop-cart-button:hover{box-shadow:0 8px 18px rgba(62,159,39,.25)}
.shop-cart-button svg{width:22px;height:22px}

.product-detail-page{padding-top:28px}
.product-detail-hero{padding-bottom:28px}
.product-detail-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr);background:#fff;border:1px solid rgba(30,50,24,.08);border-radius:28px;overflow:hidden;box-shadow:0 18px 50px rgba(27,50,20,.06)}
.product-detail-gallery{padding:44px;display:flex;align-items:center;justify-content:center;background:linear-gradient(145deg,#f7f9f4,#fff)}
.product-detail-main-image{width:100%;min-height:480px;display:flex;align-items:center;justify-content:center}
.product-detail-main-image img{max-width:88%;max-height:480px;object-fit:contain}
.product-detail-main-image span{font-size:110px;font-weight:800;color:#62aa47;opacity:.22}
.product-detail-info{padding:54px 48px;display:flex;flex-direction:column;align-items:flex-start}
.product-detail-back{font-size:14px;color:#5c6b57;text-decoration:none;margin-bottom:34px}
.product-detail-brandline{font-size:13px;letter-spacing:.09em;text-transform:uppercase;font-weight:800;color:#57943d;margin-bottom:10px}
.product-detail-info h1{font-size:clamp(36px,4vw,60px);line-height:1.02;letter-spacing:-.045em;margin:0 0 12px;color:#182017}
.product-detail-sku{color:#889184;font-size:17px;margin-bottom:30px}
.product-detail-price-main{font-size:30px;font-weight:800;margin-bottom:3px}
.product-detail-tax{color:#8b9388;margin-bottom:28px}
.product-detail-buybox{display:flex;gap:12px;align-items:center;width:100%;margin:4px 0 34px}
.product-detail-cart-button{min-height:52px;padding:0 22px;border:0;border-radius:14px;background:#49b52d;color:#fff;font-weight:800;font-size:16px;display:inline-flex;align-items:center;gap:10px;cursor:pointer}
.product-detail-cart-button svg{width:22px;height:22px}
.product-detail-qty{min-height:52px;grid-template-columns:46px 56px 46px}
.product-detail-facts{width:100%;display:grid;gap:0;border-top:1px solid rgba(20,40,15,.09)}
.product-detail-facts div{display:flex;justify-content:space-between;gap:24px;padding:14px 0;border-bottom:1px solid rgba(20,40,15,.09)}
.product-detail-facts span{color:#7d8779}.product-detail-facts strong{text-align:right}
.product-detail-content-grid{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:22px;padding-bottom:64px}
.product-detail-section-card,.product-detail-links-card{background:#fff;border:1px solid rgba(30,50,24,.08);border-radius:22px;padding:32px}
.product-detail-section-card h2{font-size:30px;margin:8px 0 18px}.product-detail-section-card p{font-size:17px;line-height:1.7;color:#505a4c}
.product-detail-links-card h3{margin:0 0 16px}.product-detail-links-card a{display:block;padding:14px 0;border-top:1px solid rgba(20,40,15,.09);color:#2f7f24;font-weight:700;text-decoration:none}
@media(max-width:820px){.product-detail-grid{grid-template-columns:1fr}.product-detail-gallery{padding:24px}.product-detail-main-image{min-height:300px}.product-detail-main-image img{max-height:300px}.product-detail-info{padding:28px 24px}.product-detail-content-grid{grid-template-columns:1fr}.product-detail-buybox{align-items:stretch}.product-detail-cart-button{flex:1;justify-content:center}.shop-card-cart{gap:8px}.shop-qty-control{grid-template-columns:38px 46px 38px}.shop-cart-button{width:46px}}


/* LuxSmartify 3.13.163: mobile quantity controls + stable detail images */
.shop-card-cart{
  display:grid;
  grid-template-columns:minmax(0,1fr) 48px;
  align-items:center;
  gap:10px;
  width:100%;
}
.shop-card-cart .shop-qty-control{
  width:100%;
  min-width:0;
  grid-template-columns:42px minmax(30px,1fr) 42px;
}
.shop-card-cart .shop-qty-control button,
.product-detail-qty button{
  width:100%;
  min-width:0;
  padding:0;
  display:grid;
  place-items:center;
  line-height:1;
}
.shop-card-cart .shop-qty-control input,
.product-detail-qty input{
  min-width:0;
  padding:0 2px;
  text-align:center;
}
.shop-card-cart .shop-cart-button{
  width:48px;
  min-width:48px;
}
.product-detail-main-image img{
  width:auto;
  height:auto;
  max-width:88%;
  max-height:480px;
  display:block;
}
@media(max-width:820px){
  .shop-card-cart{
    grid-template-columns:minmax(0,1fr) 42px;
    gap:6px;
  }
  .shop-card-cart .shop-qty-control{
    grid-template-columns:30px minmax(24px,1fr) 30px;
    min-height:44px;
  }
  .shop-card-cart .shop-qty-control button{font-size:20px}
  .shop-card-cart .shop-cart-button{
    width:42px;
    min-width:42px;
    height:44px;
  }
  .product-detail-buybox{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1.35fr);
    gap:10px;
    width:100%;
  }
  .product-detail-qty{
    width:100%;
    min-width:0;
    grid-template-columns:42px minmax(34px,1fr) 42px;
  }
  .product-detail-cart-button{
    width:100%;
    min-width:0;
    padding:0 12px;
  }
}
@media(max-width:430px){
  .shop-card-cart .shop-qty-control{
    grid-template-columns:28px minmax(20px,1fr) 28px;
  }
  .shop-card-cart .shop-qty-control button{font-size:19px}
  .product-detail-buybox{
    grid-template-columns:minmax(0,.95fr) minmax(0,1.25fr);
  }
  .product-detail-qty{
    grid-template-columns:36px minmax(32px,1fr) 36px;
  }
  .product-detail-cart-button{font-size:15px}
}

/* V3.13.166 – Warenkorb: hochwertige Produktlinks und Entfernen-Aktion */
.cart-product-name-link{
    color:#172019;
    text-decoration:none;
    font-weight:800;
    transition:color .16s ease;
}
.cart-product-name-link:visited{color:#172019}
.cart-product-name-link:hover,
.cart-product-name-link:focus-visible{color:#2f9f3a;text-decoration:none}
.cart-remove-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    width:auto;
    min-height:34px;
    padding:7px 11px;
    border:1px solid #dfe7e0;
    border-radius:999px;
    background:#f8faf8;
    color:#5f6f62;
    text-decoration:none;
    font:inherit;
    font-size:12px;
    font-weight:700;
    line-height:1;
    cursor:pointer;
    transition:background .16s ease,border-color .16s ease,color .16s ease,box-shadow .16s ease;
}
.cart-remove-button svg{width:15px;height:15px;flex:0 0 15px}
.cart-remove-button:hover,
.cart-remove-button:focus-visible{
    background:#eef6ef;
    border-color:#cbdccc;
    color:#2e6f34;
    box-shadow:0 3px 10px rgba(31,70,35,.08);
    outline:none;
}
@media(max-width:720px){
    .cart-product-name-link{font-size:15px}
    .cart-remove-button{min-height:32px;padding:7px 10px;font-size:11px}
}

/* V3.13.167 – Entfernen bei allen Warenkorbpositionen oben rechts */
.cart-product-row{
    grid-template-columns:64px minmax(0,1fr) 74px 110px auto;
}
.cart-product-remove-form{
    margin:0;
    justify-self:end;
    align-self:start;
}
@media(max-width:720px){
    .cart-product-row{
        grid-template-columns:54px minmax(0,1fr) auto;
        grid-template-rows:auto auto;
        align-items:start;
        position:relative;
    }
    .cart-product-thumb{grid-column:1;grid-row:1 / span 2}
    .cart-product-copy{grid-column:2;grid-row:1}
    .cart-product-remove-form{grid-column:3;grid-row:1;justify-self:end;align-self:start}
    .cart-product-quantity{grid-column:2;grid-row:2;text-align:left;display:flex;gap:6px;align-items:center}
    .cart-product-price{grid-column:3;grid-row:2;text-align:right;align-self:end}
}
@media(max-width:430px){
    .cart-product-row{grid-template-columns:48px minmax(0,1fr) auto;gap:9px}
    .cart-product-thumb{width:48px;height:48px}
    .cart-product-remove-form .cart-remove-button{padding:6px 9px}
}
\n\n/* V3.13.168 – Einzelprodukt-Menge direkt im Warenkorb ändern */\n.cart-product-quantity-form{\n    display:grid;\n    grid-template-columns:34px 42px 34px;\n    align-items:center;\n    justify-content:start;\n    gap:0;\n    margin:0;\n    border:1px solid #dfe7df;\n    border-radius:13px;\n    overflow:hidden;\n    background:#fff;\n    min-height:36px;\n}\n.cart-qty-button{\n    width:34px;\n    height:36px;\n    border:0;\n    background:transparent;\n    color:#1b2a1d;\n    font:inherit;\n    font-size:19px;\n    line-height:1;\n    cursor:pointer;\n}\n.cart-qty-button:hover:not(:disabled),\n.cart-qty-button:focus-visible{background:#f1f7f1;outline:none}\n.cart-qty-button:disabled{opacity:.3;cursor:default}\n.cart-qty-input{\n    width:42px;\n    height:36px;\n    border:0;\n    border-left:1px solid #edf1ed;\n    border-right:1px solid #edf1ed;\n    background:#fff;\n    color:#152218;\n    text-align:center;\n    font:inherit;\n    font-weight:800;\n    appearance:textfield;\n    -moz-appearance:textfield;\n}\n.cart-qty-input::-webkit-outer-spin-button,\n.cart-qty-input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}\n.cart-product-row{grid-template-columns:64px minmax(0,1fr) 112px 110px auto}\n@media(max-width:720px){\n    .cart-product-row{grid-template-columns:54px minmax(0,1fr) auto;grid-template-rows:auto auto auto}\n    .cart-product-thumb{grid-column:1;grid-row:1 / span 3}\n    .cart-product-copy{grid-column:2;grid-row:1}\n    .cart-product-remove-form{grid-column:3;grid-row:1}\n    .cart-product-quantity-form{grid-column:2;grid-row:2;margin-top:8px}\n    .cart-product-price{grid-column:2 / span 2;grid-row:3;text-align:left;margin-top:8px}\n}\n@media(max-width:430px){\n    .cart-product-quantity-form{grid-template-columns:32px 38px 32px}\n    .cart-qty-button{width:32px;height:34px}\n    .cart-qty-input{width:38px;height:34px}\n}\n

/* V3.13.169 – Warenkorb: Menge ohne Plus/Minus */
.cart-product-quantity-form{
    display:flex;
    align-items:center;
    gap:9px;
    min-height:36px;
    margin:0;
    border:0;
    background:transparent;
    overflow:visible;
}
.cart-qty-label{
    color:#77847a;
    font-size:13px;
    font-weight:650;
}
.cart-product-quantity-form .cart-qty-input{
    width:58px;
    height:38px;
    border:1px solid #dfe7df;
    border-radius:11px;
    background:#fff;
    color:#152218;
    text-align:center;
    font:inherit;
    font-weight:800;
    appearance:textfield;
    -moz-appearance:textfield;
}
.cart-product-quantity-form .cart-qty-input::-webkit-outer-spin-button,
.cart-product-quantity-form .cart-qty-input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
@media(max-width:720px){
    .cart-product-quantity-form{grid-column:2;grid-row:2;margin-top:8px;display:flex}
}

/* V3.13.170 – Warenkorb: ruhige, einheitliche Produktzeilen auf Mobile */
@media(max-width:720px){
    .cart-product-list{padding:0 14px}
    .cart-product-row{
        position:relative;
        grid-template-columns:72px minmax(0,1fr) auto;
        grid-template-rows:auto auto;
        gap:10px 12px;
        align-items:start;
        padding:18px 0;
    }
    .cart-product-thumb{
        grid-column:1;
        grid-row:1 / span 2;
        width:72px;
        height:72px;
        border-radius:15px;
    }
    .cart-product-copy{
        grid-column:2;
        grid-row:1;
        min-width:0;
        padding-right:4px;
    }
    .cart-product-copy strong{font-size:17px;line-height:1.2}
    .cart-product-copy small{font-size:11px;line-height:1.45;margin-top:6px}
    .cart-product-remove-form{
        grid-column:3;
        grid-row:1;
        align-self:start;
        justify-self:end;
        margin:0;
    }
    .cart-product-remove-form .cart-remove-button{
        width:36px;
        min-width:36px;
        height:36px;
        min-height:36px;
        padding:0;
        border-radius:11px;
        background:#f8faf8;
    }
    .cart-product-remove-form .cart-remove-button span{display:none}
    .cart-product-remove-form .cart-remove-button svg{width:17px;height:17px;flex-basis:17px}
    .cart-product-quantity-form{
        grid-column:2;
        grid-row:2;
        display:flex;
        align-items:center;
        gap:8px;
        margin:2px 0 0;
        min-height:40px;
    }
    .cart-qty-label{font-size:12px;white-space:nowrap}
    .cart-product-quantity-form .cart-qty-input{
        width:54px;
        height:40px;
        border-radius:12px;
        font-size:16px;
    }
    .cart-product-price{
        grid-column:3;
        grid-row:2;
        align-self:center;
        text-align:right;
        min-width:118px;
        margin:2px 0 0;
    }
    .cart-product-price strong{font-size:17px;line-height:1.15;white-space:nowrap}
    .cart-product-price small{font-size:10px;line-height:1.35;margin-top:4px;white-space:nowrap}
}
@media(max-width:430px){
    .cart-product-list{padding:0 12px}
    .cart-product-row{
        grid-template-columns:64px minmax(0,1fr) 36px;
        gap:9px 10px;
        padding:16px 0;
    }
    .cart-product-thumb{width:64px;height:64px;border-radius:14px}
    .cart-product-copy strong{font-size:16px}
    .cart-product-copy small{font-size:10px}
    .cart-product-price{min-width:0}
    .cart-product-price strong{font-size:16px}
    .cart-product-price small{font-size:9px;white-space:normal;max-width:145px;margin-left:auto}
    .cart-product-quantity-form{gap:6px}
    .cart-product-quantity-form .cart-qty-input{width:50px;height:38px}
}

/* V3.13.171 – Mobile Warenkorb: Preisbereich wieder mit ausreichender Breite */
@media(max-width:430px){
    .cart-product-row{
        grid-template-columns:64px minmax(0,1fr) 124px;
        column-gap:10px;
    }
    .cart-product-remove-form{
        grid-column:3;
        grid-row:1;
        justify-self:end;
    }
    .cart-product-quantity-form{
        grid-column:2;
        grid-row:2;
        justify-self:start;
    }
    .cart-product-price{
        grid-column:3;
        grid-row:2;
        width:124px;
        min-width:124px;
        text-align:right;
        justify-self:end;
        align-self:center;
    }
    .cart-product-price strong{
        display:block;
        font-size:16px;
        line-height:1.15;
        white-space:nowrap;
    }
    .cart-product-price small{
        display:block;
        width:124px;
        max-width:124px;
        margin:4px 0 0 auto;
        font-size:9px;
        line-height:1.35;
        white-space:normal;
        overflow-wrap:normal;
        word-break:normal;
    }
}
@media(max-width:370px){
    .cart-product-row{grid-template-columns:58px minmax(0,1fr) 112px;column-gap:8px}
    .cart-product-thumb{width:58px;height:58px}
    .cart-product-price{width:112px;min-width:112px}
    .cart-product-price small{width:112px;max-width:112px;font-size:8.5px}
}


/* V3.13.172 – Entfernen bei Komplettlösungen ebenfalls nur als Symbol */
.cart-package-remove-form{margin:0;align-self:flex-start}
.cart-package-remove-form .cart-remove-button{
    width:36px;
    min-width:36px;
    height:36px;
    min-height:36px;
    padding:0;
    border-radius:11px;
    background:#f8faf8;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}
.cart-package-remove-form .cart-remove-button svg{width:17px;height:17px;flex:0 0 17px}


/* V3.13.182 – globale mobile Suche */
.lux-mobile-search-toggle{display:none}
.lux-mobile-search-icon{
    position:relative;
    display:block;
    width:19px;
    height:19px;
}
.lux-mobile-search-icon::before{
    content:"";
    position:absolute;
    width:10px;
    height:10px;
    left:1px;
    top:1px;
    border:2px solid currentColor;
    border-radius:50%;
}
.lux-mobile-search-icon::after{
    content:"";
    position:absolute;
    width:8px;
    height:2px;
    left:11px;
    top:13px;
    border-radius:2px;
    background:currentColor;
    transform:rotate(45deg);
    transform-origin:left center;
}
@media(max-width:820px){
    .lux-mobile-search-toggle{
        display:grid !important;
        order:-1;
    }
    .lux-header-search.is-mobile-open{
        display:flex !important;
        position:fixed !important;
        z-index:1000;
        left:12px;
        right:12px;
        top:max(12px,env(safe-area-inset-top));
        width:auto !important;
        height:54px !important;
        padding:0 15px !important;
        border:1px solid #cfdacf !important;
        border-radius:16px !important;
        background:#fff !important;
        box-shadow:0 18px 55px rgba(17,37,21,.18) !important;
    }
    .lux-header-search.is-mobile-open input{
        display:block !important;
        width:100% !important;
        min-width:0 !important;
        font-size:16px !important;
    }
    .lux-header-search.is-mobile-open .lux-search-dropdown{
        display:block;
        top:calc(100% + 8px);
        left:0;
        right:0;
        width:100% !important;
        max-height:calc(100vh - 96px);
    }
    .lux-header-search.is-mobile-open .lux-search-dropdown[hidden]{display:none !important}
    body.lux-mobile-search-active::before{
        content:"";
        position:fixed;
        inset:0;
        z-index:900;
        background:rgba(18,30,21,.18);
        backdrop-filter:blur(2px);
    }
    .shop-section-head{align-items:flex-end}
}


/* V3.13.183 – mobile Suche wie eigenständige Shop-Suche + Produktüberschrift links */
.lux-mobile-search-cancel{display:none}
@media(max-width:820px){
    /* V3.13.182 hatte auf der Produktseite den Ergebnis-Kopf nach rechts gedrückt. */
    .shop-section-head{
        align-items:flex-start !important;
        text-align:left !important;
    }
    .shop-section-head > *{
        width:100%;
        text-align:left !important;
    }

    /* Die mobile Suche ist eine eigene weiße Vollbildansicht statt grauem Overlay. */
    body.lux-mobile-search-active{
        overflow:hidden;
    }
    body.lux-mobile-search-active::before{
        background:#fff !important;
        backdrop-filter:none !important;
        -webkit-backdrop-filter:none !important;
        z-index:980 !important;
    }
    .lux-header-search.is-mobile-open{
        display:flex !important;
        position:fixed !important;
        z-index:1002 !important;
        top:calc(env(safe-area-inset-top) + 18px) !important;
        left:20px !important;
        right:116px !important;
        width:auto !important;
        height:54px !important;
        margin:0 !important;
        padding:0 16px !important;
        gap:11px !important;
        border:0 !important;
        border-radius:14px !important;
        background:#f2f3f2 !important;
        box-shadow:none !important;
    }
    .lux-header-search.is-mobile-open .lux-search-icon{
        flex:0 0 24px;
        width:24px;
        height:24px;
    }
    .lux-header-search.is-mobile-open .lux-search-icon::before{
        width:15px;
        height:15px;
        left:1px;
        top:1px;
        border-width:1.8px;
        border-color:#6f7771;
    }
    .lux-header-search.is-mobile-open .lux-search-icon::after{
        width:9px;
        height:1.8px;
        left:16px;
        top:17px;
        background:#6f7771;
    }
    .lux-header-search.is-mobile-open input{
        display:block !important;
        width:100% !important;
        height:100% !important;
        min-width:0 !important;
        padding:0 !important;
        border:0 !important;
        outline:0 !important;
        background:transparent !important;
        box-shadow:none !important;
        color:#172019 !important;
        font-size:17px !important;
        font-weight:500 !important;
        line-height:1 !important;
        -webkit-appearance:none;
        appearance:none;
    }
    .lux-header-search.is-mobile-open input::placeholder{
        color:#969b97 !important;
        opacity:1;
    }
    .lux-mobile-search-cancel{
        position:fixed;
        z-index:1003;
        top:calc(env(safe-area-inset-top) + 18px);
        right:18px;
        width:90px;
        height:54px;
        padding:0;
        border:0;
        background:transparent;
        color:#171b18;
        font:inherit;
        font-size:16px;
        font-weight:650;
        text-align:right;
        cursor:pointer;
        opacity:0;
        pointer-events:none;
    }
    .lux-mobile-search-cancel.is-visible{
        display:block;
        opacity:1;
        pointer-events:auto;
    }
    .lux-header-search.is-mobile-open .lux-search-dropdown{
        display:block;
        position:fixed !important;
        z-index:1001 !important;
        top:calc(env(safe-area-inset-top) + 88px) !important;
        left:0 !important;
        right:0 !important;
        width:100vw !important;
        max-width:none !important;
        max-height:calc(100dvh - env(safe-area-inset-top) - 88px) !important;
        margin:0 !important;
        padding:12px 20px 28px !important;
        overflow:auto !important;
        border:0 !important;
        border-radius:0 !important;
        background:#fff !important;
        box-shadow:none !important;
    }
    .lux-header-search.is-mobile-open .lux-search-results{
        max-height:none !important;
        overflow:visible !important;
        gap:4px;
    }
    .lux-header-search.is-mobile-open .lux-search-result{
        grid-template-columns:54px minmax(0,1fr) 18px;
        min-height:70px;
        padding:8px 4px;
        gap:12px;
        border-radius:12px;
        border-bottom:1px solid #edf0ed;
    }
    .lux-header-search.is-mobile-open .lux-search-result-visual{
        width:54px;
        height:54px;
        border-radius:10px;
        background:#f7f8f7;
    }
    .lux-header-search.is-mobile-open .lux-search-result-copy strong{
        font-size:16px;
    }
    .lux-header-search.is-mobile-open .lux-search-all{
        min-height:52px;
        margin-top:10px;
        border-top:1px solid #e9eeea;
        color:#23843d;
        font-size:14px;
    }
    .lux-header-search.is-mobile-open .lux-search-empty{
        padding:36px 10px;
        color:#788179;
        text-align:left;
        font-size:15px;
    }
}
@media(max-width:430px){
    .lux-header-search.is-mobile-open{
        left:14px !important;
        right:104px !important;
    }
    .lux-mobile-search-cancel{
        right:14px;
        width:82px;
        font-size:15px;
    }
    .lux-header-search.is-mobile-open .lux-search-dropdown{
        padding-left:14px !important;
        padding-right:14px !important;
    }
}

/* V3.13.184 – iOS-sichere Vollbildsuche außerhalb des Header-Stacking-Contexts */
@media(max-width:820px){
    body.lux-mobile-search-active::before{display:none !important;content:none !important}
    .lux-mobile-search-layer{
        display:none;
        position:fixed;
        inset:0;
        z-index:2147483000;
        width:100%;
        height:100dvh;
        min-height:100vh;
        overflow:hidden;
        background:#fff;
        padding:calc(env(safe-area-inset-top) + 16px) 18px 0;
        box-sizing:border-box;
    }
    .lux-mobile-search-layer.is-open{
        display:grid;
        grid-template-columns:minmax(0,1fr) auto;
        grid-template-rows:auto minmax(0,1fr);
        column-gap:14px;
        align-items:start;
    }
    .lux-mobile-search-layer .lux-header-search.is-mobile-open{
        display:block !important;
        position:relative !important;
        inset:auto !important;
        z-index:auto !important;
        grid-column:1;
        grid-row:1 / span 2;
        width:100% !important;
        height:auto !important;
        min-width:0 !important;
        margin:0 !important;
        padding:0 !important;
        border:0 !important;
        border-radius:0 !important;
        background:transparent !important;
        box-shadow:none !important;
    }
    .lux-mobile-search-layer .lux-header-search.is-mobile-open > .lux-search-icon{
        position:absolute !important;
        z-index:2;
        left:16px !important;
        top:15px !important;
        width:24px !important;
        height:24px !important;
        pointer-events:none;
    }
    .lux-mobile-search-layer .lux-header-search.is-mobile-open input{
        display:block !important;
        width:100% !important;
        height:54px !important;
        margin:0 !important;
        padding:0 16px 0 50px !important;
        border:0 !important;
        border-radius:14px !important;
        outline:none !important;
        background:#f1f2f1 !important;
        box-shadow:none !important;
        color:#172019 !important;
        font-size:17px !important;
        line-height:54px !important;
        appearance:none !important;
        -webkit-appearance:none !important;
    }
    .lux-mobile-search-layer .lux-mobile-search-cancel{
        display:block !important;
        position:relative !important;
        inset:auto !important;
        z-index:auto !important;
        grid-column:2;
        grid-row:1;
        width:auto !important;
        height:54px !important;
        margin:0 !important;
        padding:0 2px !important;
        border:0 !important;
        background:transparent !important;
        color:#171b18 !important;
        font-size:16px !important;
        font-weight:600 !important;
        line-height:54px !important;
        opacity:1 !important;
        pointer-events:auto !important;
        white-space:nowrap;
    }
    .lux-mobile-search-layer .lux-header-search.is-mobile-open .lux-search-dropdown{
        display:block;
        position:relative !important;
        inset:auto !important;
        z-index:auto !important;
        width:calc(100vw - 36px) !important;
        max-width:none !important;
        max-height:calc(100dvh - env(safe-area-inset-top) - 88px) !important;
        margin:18px 0 0 !important;
        padding:0 0 28px !important;
        overflow-y:auto !important;
        overflow-x:hidden !important;
        border:0 !important;
        border-radius:0 !important;
        background:#fff !important;
        box-shadow:none !important;
        -webkit-overflow-scrolling:touch;
    }
    .lux-mobile-search-layer .lux-header-search.is-mobile-open .lux-search-dropdown[hidden]{display:none !important}
}
@media(max-width:430px){
    .lux-mobile-search-layer{padding-left:14px;padding-right:14px}
    .lux-mobile-search-layer.is-open{column-gap:12px}
    .lux-mobile-search-layer .lux-header-search.is-mobile-open .lux-search-dropdown{width:calc(100vw - 28px) !important}
}

/* V3.13.186 – mobile Suche schwebt über der Seite, ohne Vollbild-Weißfläche */
@media(max-width:820px){
    html:has(.lux-header-search.is-mobile-open),
    body.lux-mobile-search-active{
        overflow:visible !important;
        position:static !important;
        height:auto !important;
        min-height:0 !important;
    }
    body.lux-mobile-search-active::before,
    .lux-mobile-search-layer{
        display:none !important;
        content:none !important;
    }
    .lux-header-search.is-mobile-open{
        display:flex !important;
        position:fixed !important;
        z-index:2147483001 !important;
        top:calc(env(safe-area-inset-top) + 14px) !important;
        left:14px !important;
        right:104px !important;
        width:auto !important;
        height:54px !important;
        margin:0 !important;
        padding:0 14px !important;
        gap:10px !important;
        align-items:center !important;
        border:1px solid #d9ded9 !important;
        border-radius:15px !important;
        background:#f2f3f2 !important;
        box-shadow:0 8px 30px rgba(22,40,25,.11) !important;
    }
    .lux-header-search.is-mobile-open > .lux-search-icon{
        position:relative !important;
        inset:auto !important;
        flex:0 0 24px !important;
        width:24px !important;
        height:24px !important;
    }
    .lux-header-search.is-mobile-open input{
        display:block !important;
        position:relative !important;
        width:100% !important;
        min-width:0 !important;
        height:50px !important;
        margin:0 !important;
        padding:0 !important;
        border:0 !important;
        outline:0 !important;
        background:transparent !important;
        box-shadow:none !important;
        color:#172019 !important;
        font-size:17px !important;
        line-height:50px !important;
        -webkit-appearance:none !important;
        appearance:none !important;
    }
    .lux-mobile-search-cancel,
    .lux-mobile-search-cancel.is-visible{
        display:block !important;
        position:fixed !important;
        z-index:2147483002 !important;
        top:calc(env(safe-area-inset-top) + 14px) !important;
        right:14px !important;
        width:82px !important;
        height:54px !important;
        margin:0 !important;
        padding:0 !important;
        border:0 !important;
        background:transparent !important;
        color:#171b18 !important;
        font-size:15px !important;
        font-weight:650 !important;
        line-height:54px !important;
        text-align:right !important;
        opacity:1 !important;
        pointer-events:auto !important;
    }
    .lux-mobile-search-cancel:not(.is-visible){
        display:none !important;
    }
    .lux-header-search.is-mobile-open .lux-search-dropdown{
        position:fixed !important;
        z-index:2147483000 !important;
        top:calc(env(safe-area-inset-top) + 78px) !important;
        left:14px !important;
        right:14px !important;
        width:auto !important;
        max-width:none !important;
        max-height:min(62dvh,560px) !important;
        margin:0 !important;
        padding:8px 10px 12px !important;
        overflow-y:auto !important;
        overflow-x:hidden !important;
        border:1px solid #e0e6e0 !important;
        border-radius:18px !important;
        background:#fff !important;
        box-shadow:0 18px 50px rgba(17,37,21,.16) !important;
        -webkit-overflow-scrolling:touch;
    }
    .lux-header-search.is-mobile-open .lux-search-dropdown[hidden]{display:none !important}
    .lux-header-search.is-mobile-open .lux-search-results{max-height:none !important;overflow:visible !important}
}

/* V3.13.187 – mobile Suchkopf sauber vom normalen Header trennen */
@media(max-width:820px){
    body.lux-mobile-search-active .lux-header-tools > .public-cart-link,
    body.lux-mobile-search-active .lux-header-tools > .lux-mobile-search-toggle,
    body.lux-mobile-search-active .lux-header-tools > .lux-account-menu,
    body.lux-mobile-search-active .lux-header-tools > details.lux-account-menu,
    body.lux-mobile-search-active .lux-header-tools > [data-account-menu]{
        visibility:hidden !important;
        opacity:0 !important;
        pointer-events:none !important;
    }

    body.lux-mobile-search-active::after{
        content:"";
        display:block !important;
        position:fixed;
        z-index:2147482998;
        top:0;
        left:0;
        right:0;
        height:calc(env(safe-area-inset-top) + 84px);
        background:#fff;
        pointer-events:none;
    }

    .lux-header-search.is-mobile-open{
        z-index:2147483001 !important;
        left:14px !important;
        right:108px !important;
        top:calc(env(safe-area-inset-top) + 14px) !important;
        box-shadow:none !important;
        border-color:#d6dcd7 !important;
        background:#f3f4f3 !important;
    }

    .lux-mobile-search-cancel.is-visible{
        z-index:2147483002 !important;
        right:14px !important;
        top:calc(env(safe-area-inset-top) + 14px) !important;
        width:82px !important;
        text-align:center !important;
        font-size:16px !important;
        font-weight:500 !important;
    }

    .lux-header-search.is-mobile-open .lux-search-dropdown{
        z-index:2147483001 !important;
        top:calc(env(safe-area-inset-top) + 78px) !important;
        left:14px !important;
        right:14px !important;
        max-height:min(56dvh,520px) !important;
    }
}

@media(max-width:390px){
    .lux-header-search.is-mobile-open{right:102px !important}
    .lux-mobile-search-cancel.is-visible{right:10px !important;width:78px !important;font-size:15px !important}
}

/* V3.13.188 – stabile mobile Suche direkt im Header, ohne fixed/Vollbild */
@media(max-width:820px){
    body.lux-mobile-search-active::before,
    body.lux-mobile-search-active::after,
    .lux-mobile-search-layer{display:none !important;content:none !important}
    body.lux-mobile-search-active{overflow:visible !important;position:static !important;height:auto !important}

    body.lux-mobile-search-active .home-header-premium-inner{
        grid-template-columns:1fr !important;
        grid-template-rows:auto auto !important;
        row-gap:8px !important;
    }
    body.lux-mobile-search-active .premium-brand{display:none !important}
    body.lux-mobile-search-active .lux-header-tools{
        grid-column:1 / -1 !important;
        grid-row:1 !important;
        display:flex !important;
        width:100% !important;
        min-width:0 !important;
        align-items:center !important;
        gap:10px !important;
        visibility:visible !important;
        opacity:1 !important;
    }
    body.lux-mobile-search-active .premium-home-nav{
        grid-column:1 / -1 !important;
        grid-row:2 !important;
    }

    body.lux-mobile-search-active .lux-header-tools > .public-cart-link,
    body.lux-mobile-search-active .lux-header-tools > .lux-mobile-search-toggle,
    body.lux-mobile-search-active .lux-header-tools > .lux-account-menu,
    body.lux-mobile-search-active .lux-header-tools > details.lux-account-menu,
    body.lux-mobile-search-active .lux-header-tools > [data-account-menu]{
        display:none !important;
    }

    .lux-header-search.is-mobile-open{
        display:flex !important;
        position:relative !important;
        inset:auto !important;
        z-index:50 !important;
        flex:1 1 auto !important;
        width:auto !important;
        min-width:0 !important;
        height:50px !important;
        margin:0 !important;
        padding:0 14px !important;
        gap:10px !important;
        align-items:center !important;
        border:1px solid #d8ded9 !important;
        border-radius:15px !important;
        background:#f3f4f3 !important;
        box-shadow:none !important;
    }
    .lux-header-search.is-mobile-open > .lux-search-icon{
        position:relative !important;
        inset:auto !important;
        flex:0 0 22px !important;
        width:22px !important;
        height:22px !important;
    }
    .lux-header-search.is-mobile-open input{
        display:block !important;
        position:relative !important;
        width:100% !important;
        min-width:0 !important;
        height:48px !important;
        margin:0 !important;
        padding:0 !important;
        border:0 !important;
        outline:0 !important;
        background:transparent !important;
        box-shadow:none !important;
        color:#172019 !important;
        font-size:16px !important;
        line-height:48px !important;
        -webkit-appearance:none !important;
        appearance:none !important;
    }
    .lux-mobile-search-cancel,
    .lux-mobile-search-cancel.is-visible{
        display:block !important;
        position:static !important;
        z-index:auto !important;
        flex:0 0 auto !important;
        width:auto !important;
        height:50px !important;
        margin:0 !important;
        padding:0 2px !important;
        border:0 !important;
        background:transparent !important;
        color:#172019 !important;
        font-size:15px !important;
        font-weight:600 !important;
        line-height:50px !important;
        text-align:center !important;
        opacity:1 !important;
        pointer-events:auto !important;
    }
    .lux-mobile-search-cancel:not(.is-visible){display:none !important}

    .lux-header-search.is-mobile-open .lux-search-dropdown{
        display:block;
        position:absolute !important;
        z-index:100 !important;
        top:calc(100% + 8px) !important;
        left:0 !important;
        right:auto !important;
        width:calc(100vw - 28px) !important;
        max-width:none !important;
        max-height:min(52dvh,480px) !important;
        margin:0 !important;
        padding:8px 10px 12px !important;
        overflow-y:auto !important;
        overflow-x:hidden !important;
        border:1px solid #e0e6e0 !important;
        border-radius:18px !important;
        background:#fff !important;
        box-shadow:0 18px 45px rgba(17,37,21,.15) !important;
        -webkit-overflow-scrolling:touch;
    }
    .lux-header-search.is-mobile-open .lux-search-dropdown[hidden]{display:none !important}
    .lux-header-search.is-mobile-open .lux-search-results{max-height:none !important;overflow:visible !important}
}


/* V3.13.189 – mehrere Live-Suchergebnisse auf Mobile */
.lux-search-group-title{
    padding:9px 10px 5px;
    color:#2c7e37;
    font-size:11px;
    font-weight:850;
    letter-spacing:.12em;
    text-transform:uppercase;
}
@media(max-width:820px){
    .lux-header-search.is-mobile-open .lux-search-dropdown{
        max-height:min(58dvh,560px) !important;
        overflow-y:auto !important;
    }
    .lux-header-search.is-mobile-open .lux-search-results{
        display:grid !important;
        gap:3px !important;
        max-height:none !important;
        overflow:visible !important;
    }
    .lux-header-search.is-mobile-open .lux-search-result{
        min-height:68px !important;
    }
}

/* V3.13.190 – Mobile Live-Suche darf nicht vom Header abgeschnitten werden */
@media(max-width:820px){
    body.lux-mobile-search-active .home-header,
    body.lux-mobile-search-active .home-header-premium{
        overflow:visible !important;
        z-index:10000 !important;
    }
    body.lux-mobile-search-active .home-header-premium-inner,
    body.lux-mobile-search-active .lux-header-tools{
        overflow:visible !important;
        position:relative !important;
        z-index:10001 !important;
    }
    body.lux-mobile-search-active .lux-header-search.is-mobile-open{
        z-index:10002 !important;
    }
    body.lux-mobile-search-active .lux-header-search.is-mobile-open .lux-search-dropdown{
        z-index:10003 !important;
        background:#fff !important;
        isolation:isolate;
    }
    body.lux-mobile-search-active .shop-main,
    body.lux-mobile-search-active main{
        position:relative;
        z-index:1 !important;
    }
}


/* V3.13.191 – Suchfeld leeren und Abbrechen setzt Suche zurück */
.lux-search-clear{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 26px;
    width:26px;
    height:26px;
    padding:0;
    border:0;
    border-radius:50%;
    background:#dfe3df;
    color:#536057;
    font:600 20px/1 system-ui,-apple-system,sans-serif;
    cursor:pointer;
    -webkit-appearance:none;
    appearance:none;
}
.lux-search-clear[hidden]{display:none!important}
.lux-search-clear:hover,.lux-search-clear:focus-visible{background:#d2d8d3;color:#172019;outline:none}
@media(max-width:820px){
    .lux-header-search.is-mobile-open .lux-search-clear{
        display:inline-flex!important;
        position:relative!important;
        flex:0 0 28px!important;
        width:28px!important;
        height:28px!important;
        margin:0!important;
        padding:0!important;
        border:0!important;
        border-radius:50%!important;
        background:#dfe3df!important;
        color:#4e5b51!important;
        font-size:21px!important;
        line-height:1!important;
        z-index:2!important;
    }
    .lux-header-search.is-mobile-open .lux-search-clear[hidden]{display:none!important}
}

/* V3.13.192 – X im mobilen Suchfeld immer sichtbar */
@media(max-width:820px){
  body.lux-mobile-search-active .lux-header-search.is-mobile-open .lux-search-clear,
  body.lux-mobile-search-active .lux-header-search.is-mobile-open .lux-search-clear[hidden]{
    display:inline-flex!important;
    visibility:visible!important;
    opacity:1!important;
  }
}

/* V3.13.196 – Teilen von Produkten und Lösungen */
.product-detail-top-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.product-detail-top-actions .product-detail-back{margin:0}
.lux-share-button{
  appearance:none;
  border:1px solid rgba(25,58,39,.16);
  background:#fff;
  color:#183a27;
  min-height:44px;
  padding:10px 16px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font:inherit;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(24,58,39,.06);
  transition:background .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.lux-share-button:hover{background:#f5fbf6;border-color:rgba(32,180,85,.34);box-shadow:0 8px 24px rgba(24,58,39,.10)}
.lux-share-button svg{width:20px;height:20px;flex:0 0 auto}
.solution-cover-actions{display:flex;align-items:center;justify-content:flex-end;margin-left:auto}
.solution-cover-info-bar .lux-share-button{box-shadow:none;background:rgba(255,255,255,.86)}
@media(max-width:760px){
  .product-detail-top-actions{align-items:center;margin-bottom:16px}
  .lux-share-button{min-height:42px;padding:9px 13px;font-size:14px}
  .solution-cover-info-bar{display:grid;grid-template-columns:1fr auto;gap:12px;align-items:center}
  .solution-cover-info-tags{min-width:0}
  .solution-cover-actions{grid-column:2;grid-row:1}
  .solution-cover-price-inline{grid-column:1/-1;grid-row:2}
}

/* V3.13.197 – Teilen sichtbar und eindeutig */
.lux-share-button{
  border:2px solid #24b54d!important;
  color:#177c35!important;
  background:#f7fff9!important;
  box-shadow:none!important;
}
.lux-share-button:hover,.lux-share-button:focus-visible{background:#eaf9ee!important;border-color:#15943a!important}
.product-detail-top-actions .lux-share-button{flex:0 0 auto}
.solution-cover-actions .lux-share-button{background:#fff!important}
@media(max-width:760px){
  .product-detail-top-actions{display:grid!important;grid-template-columns:1fr!important;gap:12px!important;align-items:stretch!important}
  .product-detail-top-actions .product-detail-back{order:1}
  .product-detail-top-actions .lux-share-button{order:2;width:100%!important;min-height:48px!important;font-size:16px!important}
  .solution-cover-info-bar{grid-template-columns:1fr!important}
  .solution-cover-actions{grid-column:1!important;grid-row:auto!important;width:100%!important;margin:0!important}
  .solution-cover-actions .lux-share-button{width:100%!important;min-height:48px!important;font-size:16px!important}
}
