a.btn-grad, a.btn-outline-blue, a.hero-btn, a.btn-pill, a.btn-secondary { text-decoration: none; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
a.mkt-card, a.prod-card2, a.branchen-card, a.flyer-tile, a.tile-card, a.icon-cat-card { text-decoration: none; color: inherit; }
a.mkt-card, a.prod-card2, a.tile-card, a.icon-cat-card { display: block; }
:root {
    --blue: #00234C;
    --blue-mid: #0f4c8c;
    --blue-tint: #eef4fb;
    --ink: #1C1C1C;
    --ink-soft: #58595b;
    --line: #e2e2e2;
    --white: #FFFFFF;
    --silver: #F7F7F7;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: 'Inter', 'Segoe UI', Arial, sans-serif; color: var(--ink); background: var(--white); line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.proto-banner { background: var(--ink); color: #cfcfcf; font-size: 12px; text-align: center; padding: 6px; }
.wrap { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
button { font-family: inherit; cursor: pointer; }
.btn-grad { background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue) 100%); color: var(--white); border: none; font-weight: 700; }
.btn-grad:hover { opacity: .92; }
.btn-ghost { background: var(--white); color: var(--ink); border: 1px solid var(--line); font-weight: 700; padding: 14px 26px; border-radius: 6px; }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

/* ================= USP TOP BAR ================= */
.usp-bar { background: var(--silver); border-bottom: 1px solid var(--line); font-size: 13px; }
.usp-bar .wrap { display: flex; align-items: center; justify-content: space-between; padding: 11px 32px; flex-wrap: wrap; gap: 20px; }
.usp-left { display: flex; gap: 8px; align-items: center; color: var(--ink); }
.usp-left svg { width: 16px; height: 16px; color: var(--blue); }
.usp-rating { display: flex; align-items: center; gap: 8px; }
.usp-rating .stars { color: var(--blue); letter-spacing: 1px; font-size: 13px; }
.usp-rating .num { font-weight: 800; }
.usp-rating .lbl { color: var(--ink-soft); }
.usp-right { display: flex; align-items: center; gap: 22px; font-size: 12.5px; color: var(--ink); }
.usp-right .usp-item { display: flex; align-items: center; gap: 7px; }
.usp-right svg { width: 16px; height: 16px; color: var(--blue); }

/* ================= HEADER ================= */
header.site-header { padding: 18px 0; background: var(--white); border-bottom: 1px solid var(--line); position: relative; z-index: 30; }
header.site-header .wrap { display: flex; align-items: center; gap: 32px; }
.logo-mark { background: transparent; border-radius: 10px; padding: 0; display: flex; align-items: center; }
.logo-mark img { height: 34px; display: block; cursor: pointer; }
.search-box { flex: 1; display: flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; padding: 0; gap: 0; max-width: 620px; background: var(--white); overflow: hidden; transition: border-color .15s ease; }
.search-box:focus-within { border-color: var(--blue); }
.search-box input { border: none; outline: none; flex: 1; font-size: 14px; background: transparent; padding: 12px 16px; }
.search-box .search-btn { background: var(--blue); border: none; color: var(--white); width: 46px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; }
.search-box .search-btn svg { width: 18px; height: 18px; }
.header-actions { display: flex; align-items: center; gap: 26px; font-size: 11.5px; white-space: nowrap; }
.header-actions .action-item { display: flex; flex-direction: column; align-items: center; gap: 5px; cursor: pointer; color: var(--ink-soft); transition: color .15s ease; }
.header-actions .action-item:hover { color: var(--blue); }
.header-actions svg { width: 21px; height: 21px; }
.header-actions .phone-num { font-weight: 700; color: var(--ink); }
.header-actions .cart-badge { position: relative; }
.header-actions .cart-badge .count { position: absolute; top: -6px; right: -10px; background: var(--blue); color: var(--white); font-size: 10px; font-weight: 800; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ================= KATEGORIE-NAVLEISTE ================= */
.cat-navbar { background: var(--white); border-bottom: 1px solid var(--line); position: relative; }
.cat-navbar .wrap { display: flex; align-items: center; gap: 26px; padding: 13px 32px; overflow-x: visible; }
.cat-navbar a { font-size: 13.5px; font-weight: 600; color: var(--ink); cursor: pointer; white-space: nowrap; display: flex; align-items: center; gap: 4px; }
.cat-navbar a:hover { color: var(--blue); }
.cat-navbar a svg { width: 12px; height: 12px; opacity: .5; }
.cat-navbar .sep { width: 1px; height: 16px; background: var(--line); flex-shrink: 0; }
.cat-navbar .all-products { font-weight: 800; }

/* ================= MEGA-MENU ================= */
.nav-item-wrap { position: relative; }
.mega-menu-shared {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-top: 1px solid var(--line);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12); z-index: 60;
}
.mega-menu-shared.open { display: block; }
.mega-menu-shared .wrap { padding: 36px 32px; }
.mega-cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; }
.mega-col .img { height: 100px; border-radius: 8px; overflow: hidden; margin-bottom: 14px; }
.mega-col h4 { font-size: 14px; margin: 0 0 12px; font-weight: 800; }
.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col ul li { margin-bottom: 8px; }
.mega-col ul li a { font-size: 13px; font-weight: 400; color: var(--ink-soft); }
.mega-col ul li a:hover { color: var(--blue); }
.mega-col.all-tile { display: flex; align-items: center; justify-content: center; text-align: center; }
.mega-col.all-tile .img { height: 100%; width: 100%; display: flex; align-items: center; justify-content: center; background: var(--silver); margin: 0; }
.mega-col.all-tile .img span { font-size: 13px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.mega-discover { border-top: 1px solid var(--line); margin-top: 28px; padding-top: 18px; font-size: 13px; }
.mega-discover b { margin-right: 10px; }
.mega-discover a { color: var(--ink-soft); margin-right: 4px; }
.mega-discover a:hover { color: var(--blue); }
.mega-discover .msep { color: var(--line); margin: 0 8px; }

/* ================= ICON NAV ================= */
.icon-nav { border-bottom: 1px solid var(--line); background: var(--white); }
.icon-nav .wrap { display: flex; justify-content: space-between; padding: 30px 32px; flex-wrap: wrap; gap: 20px; }
.icon-nav-item { display: flex; flex-direction: column; align-items: center; gap: 10px; cursor: pointer; text-align: center; width: 130px; }
.icon-nav-item svg { width: 32px; height: 32px; color: var(--ink); }
.icon-nav-item span { font-size: 13px; font-weight: 600; }
.icon-nav-item:hover svg, .icon-nav-item:hover span { color: var(--blue); }

/* ================= HERO SLIDER ================= */
.hero-slider { background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue) 65%, #001830 100%); color: var(--white); position: relative; overflow: hidden; }
.hero-slider .wrap { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; padding: 90px 32px; min-height: 440px; }
.hero-eyebrow { font-size: 15px; margin-bottom: 10px; opacity: .9; }
.hero-slider h1 { font-size: 42px; margin: 0 0 24px 0; font-weight: 800; }
.hero-bullets { list-style: none; padding: 0; margin: 0 0 28px 0; }
.hero-bullets li { padding: 5px 0 5px 22px; position: relative; font-size: 14.5px; }
.hero-bullets li::before { content: '·'; position: absolute; left: 0; font-size: 20px; line-height: 1; }
.hero-btn { display: inline-flex; align-items: center; gap: 8px; padding: 15px 26px; border-radius: 4px; font-size: 14.5px; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.hero-dots span { width: 22px; height: 4px; background: rgba(255,255,255,0.4); border-radius: 2px; }
.hero-dots span.active { background: var(--white); }

/* ================= FIXED SIDE BAR ================= */
.side-bar { position: fixed; right: 0; top: 45%; z-index: 40; display: flex; flex-direction: column; }
.side-bar .sb-item { width: 46px; height: 46px; background: var(--white); border: 1px solid var(--blue); border-left: none; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.side-bar .sb-item svg { width: 20px; height: 20px; color: var(--blue); }
.scroll-top { position: fixed; bottom: 24px; right: 20px; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-mid), var(--blue)); color: var(--white); display: flex; align-items: center; justify-content: center; z-index: 40; border: none; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.scroll-top svg { width: 20px; height: 20px; }

/* ================= RATING + TRUST ================= */
.rating-row { display: flex; align-items: center; gap: 36px; padding: 50px 0; flex-wrap: wrap; }
.rating-row .txt { flex: 1; min-width: 260px; font-size: 14.5px; color: var(--ink-soft); }
.rating-divider { width: 1px; align-self: stretch; background: var(--line); }
.rating-badge { display: flex; align-items: center; gap: 14px; }
.rating-badge .thumb-circ { width: 60px; height: 60px; border-radius: 50%; border: 3px solid var(--blue); display: flex; align-items: center; justify-content: center; }
.rating-badge .thumb-circ svg { width: 26px; height: 26px; color: var(--blue); }
.rating-badge .stars { color: var(--blue); font-size: 18px; letter-spacing: 2px; }
.rating-badge .num { font-size: 18px; font-weight: 800; margin-left: 6px; }

/* ================= SECTIONS ================= */
.section-title { font-size: 28px; margin: 0 0 40px 0; font-weight: 800; }
.section { padding: 84px 0; }
.section-alt { background: var(--silver); }
.section-cta { text-align: center; margin: 44px 0; }
.btn-pill { border: none; padding: 15px 32px; border-radius: 30px; font-weight: 700; font-size: 14px; }

/* ================= ICON CATEGORY CARDS ================= */
.icon-cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.icon-cat-card { border: 1px solid var(--line); border-radius: 10px; padding: 34px 16px 24px; text-align: center; cursor: pointer; background: var(--white); transition: box-shadow .15s ease, border-color .15s ease; }
.icon-cat-card:hover { border-color: var(--blue); box-shadow: 0 8px 20px rgba(0,35,76,0.08); }
.icon-cat-card svg { width: 56px; height: 56px; color: var(--blue); margin-bottom: 14px; }
.icon-cat-card span { font-size: 13.5px; font-weight: 600; }

/* ================= BRANCHEN (Flyeralarm-Stil) ================= */
.branchen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.branchen-card { border-radius: 10px; overflow: hidden; cursor: pointer; position: relative; height: 190px; display: flex; align-items: flex-end; }
.branchen-card .bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue) 100%); opacity: .9; }
.branchen-card .lbl { position: relative; padding: 20px; color: var(--white); font-weight: 700; font-size: 16px; }
.branchen-card:hover .bg { opacity: 1; }

/* ================= MARKETING-SERVICES (Druck & Marketingpartner-Positionierung) ================= */
.mkt-intro { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.eyebrow { font-size: 13px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .05em; }
.mkt-intro .eyebrow { font-size: 13px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; display: block; }
.mkt-intro h2 { font-size: 30px; margin: 0 0 14px 0; font-weight: 800; }
.mkt-intro p { font-size: 15px; color: var(--ink-soft); margin: 0; }
.mkt-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.mkt-card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 20px 20px 24px; cursor: pointer; transition: box-shadow .15s ease, border-color .15s ease; }
.mkt-card:hover { border-color: var(--blue); box-shadow: 0 6px 18px rgba(0,35,76,0.08); }
.mkt-card .img { aspect-ratio: 1/1; overflow: hidden; border-radius: 6px; margin-bottom: 16px; }
.mkt-card .eyebrow-sm { font-size: 12px; color: var(--ink-soft); margin-bottom: 5px; }
.mkt-card h3 { font-size: 15.5px; margin: 0; font-weight: 800; }
.mkt-card:hover h3 { color: var(--blue); }

/* ================= MAILING-FEATURE (Text + Bild, Split) ================= */
.mailing-split { padding: 84px 0; }
.mailing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mailing-eyebrow { font-size: 13px; font-weight: 800; color: var(--blue); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.mailing-grid h2 { font-size: 34px; margin: 0 0 30px 0; font-weight: 800; line-height: 1.2; }
.mailing-bullets { list-style: none; padding: 0; margin: 0 0 34px 0; }
.mailing-bullets li { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.mailing-bullets .check { width: 26px; height: 26px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; margin-top: 2px; }
.mailing-bullets b { font-weight: 800; }
.mailing-bullets span.txt { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.mailing-visual { border-radius: 16px; overflow: hidden; height: 460px; box-shadow: 0 20px 50px rgba(0,35,76,0.12); }

/* ================= SUPPORT-FEATURE (Bild links, Text rechts) ================= */
.support-split { padding: 84px 0; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.support-visual { border-radius: 12px; overflow: hidden; height: 420px; }
.support-eyebrow { font-size: 15px; color: var(--ink-soft); margin-bottom: 10px; }
.support-grid h2 { font-size: 32px; margin: 0 0 22px 0; font-weight: 800; }
.support-grid p.lead { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 24px 0; max-width: 480px; }
.support-checklist { list-style: none; padding: 0; margin: 0 0 30px 0; }
.support-checklist li { display: flex; align-items: center; gap: 10px; font-size: 15px; margin-bottom: 10px; }
.support-checklist .chk { color: var(--blue); font-weight: 800; }
.btn-outline-blue { border: 2px solid var(--blue); color: var(--blue); background: transparent; padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 14.5px; }
.btn-outline-blue:hover { background: var(--blue-tint); }

/* ================= PARTNER-PROGRAMME (zwei große Bildkacheln) ================= */
.partner-section { padding: 84px 0; }
.partner-section .section-title-center { text-align: center; font-size: 22px; font-weight: 800; margin: 0 0 30px; }
.partner-two-tile { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.partner-tile { position: relative; height: 300px; overflow: hidden; cursor: pointer; }
.partner-tile .overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,35,76,0.75) 0%, transparent 55%); }
.partner-tile .lbl { position: absolute; bottom: 26px; left: 26px; right: 26px; color: var(--white); font-size: 24px; font-weight: 800; }

/* ================= DRUCKDATEN-SERVICE (3er-Kachelraster) ================= */
.druckdaten-section { padding: 84px 0; background: var(--silver); }
.druckdaten-section .section-title-center { text-align: center; font-size: 26px; font-weight: 800; margin: 0 0 36px; }
.druckdaten-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ================= BRANCHENSEITE (emotional, Flyeralarm-Stil) ================= */
.ind-topbar { background: var(--white); border-bottom: 1px solid var(--line); padding: 20px 0 24px; }
.ind-crumb { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 18px; }
.ind-crumb span { cursor: pointer; }
.ind-crumb span:hover { color: var(--blue); }
.ind-topbar-row { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.ind-eyebrow { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 8px; }
.ind-topbar h1 { font-size: 32px; margin: 0; font-weight: 800; }
.ind-advisor { display: flex; align-items: center; gap: 12px; }
.ind-advisor .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-mid), var(--blue)); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.ind-advisor .lbl { font-size: 13px; font-weight: 600; }
.ind-advisor .sub { font-size: 12.5px; color: var(--blue); font-weight: 700; cursor: pointer; }

.ind-banner { background: linear-gradient(135deg, var(--blue-tint) 0%, #dbe8f6 100%); position: relative; overflow: hidden; padding: 70px 0; }
.ind-banner-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
.ind-banner .tag { font-size: 30px; font-weight: 800; margin: 0 0 18px 0; color: var(--ink); }
.ind-banner .txt { font-size: 15px; color: var(--ink-soft); max-width: 420px; margin: 0 0 26px 0; line-height: 1.6; }
.ind-banner-visual { height: 300px; border-radius: 14px; position: relative; overflow: hidden; }
.ind-badge-corner { position: absolute; bottom: 24px; right: 24px; background: var(--blue); color: var(--white); width: 66px; height: 66px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; text-align: center; box-shadow: 0 6px 18px rgba(0,35,76,0.3); }

.ind-story { padding: 64px 0; border-bottom: 1px solid var(--line); }
.ind-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ind-story:nth-child(even) .ind-story-grid { direction: rtl; }
.ind-story:nth-child(even) .ind-story-grid > * { direction: ltr; }
.ind-story .eyebrow { font-size: 13px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 12px; }
.ind-story h3 { font-size: 27px; margin: 0 0 16px 0; font-weight: 800; line-height: 1.25; }
.ind-story p { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 26px 0; line-height: 1.65; max-width: 460px; }
.ind-story-visual { height: 320px; border-radius: 14px; overflow: hidden; position: relative; }
.ind-story-tag { position: absolute; top: 16px; left: 16px; font-size: 11px; font-weight: 800; text-transform: uppercase; padding: 5px 12px; border-radius: 4px; z-index: 1; }
.ind-story-tag.druck { background: var(--white); color: var(--blue); }
.ind-story-tag.marketing { background: var(--white); color: #a1712b; }

/* ================= PRODUCT CARDS ================= */
.carousel-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.prod-card2 { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; cursor: pointer; background: var(--white); }
.prod-card2:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.prod-photo { position: relative; height: 160px; overflow: hidden; }
.tag-badge { position: absolute; top: 10px; left: 10px; font-size: 10.5px; font-weight: 800; padding: 4px 10px; border-radius: 3px; text-transform: uppercase; background: var(--blue-tint); color: var(--blue); }
.prod-body { padding: 22px; }
.prod-body h4 { margin: 0 0 8px 0; font-size: 15.5px; }
.prod-body p.desc { font-size: 12.5px; color: var(--ink-soft); margin: 0 0 12px 0; }
.prod-body ul { list-style: none; padding: 0; margin: 0 0 14px 0; }
.prod-body ul li { font-size: 12.5px; color: var(--ink-soft); padding: 2px 0 2px 20px; position: relative; }
.prod-body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.prod-body .price-line { font-size: 13px; }
.prod-body .price-line b { font-size: 17px; }

.diag-graphic { width: 100%; height: 100%; background: linear-gradient(135deg, var(--blue-tint) 0%, var(--white) 55%); position: relative; }
.diag-graphic::before {
    content: ''; position: absolute; right: 0; bottom: 0; width: 55%; height: 100%;
    background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue) 100%);
    clip-path: polygon(45% 0, 100% 0, 100% 100%, 0 100%);
}
.diag-graphic .brandmark { position: absolute; top: 14px; left: 14px; font-weight: 800; font-size: 13px; color: var(--ink); z-index: 1; }

/* ================= TWO-TILE + STATS ================= */
.two-tile { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 64px 0 24px; }
.promo-tile { background: linear-gradient(135deg, var(--ink) 0%, #3a3a3a 100%); color: var(--white); padding: 50px; min-height: 240px; display: flex; flex-direction: column; justify-content: center; border-radius: 10px; }
.promo-tile.alt { background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue) 100%); }
.promo-tile .eyebrow { font-size: 13px; opacity: .85; margin-bottom: 8px; }
.promo-tile h3 { font-size: 24px; margin: 0 0 20px 0; max-width: 360px; }
.promo-tile .btn-white { background: var(--white); color: var(--ink); border: none; padding: 12px 22px; border-radius: 4px; font-weight: 700; font-size: 13.5px; width: fit-content; display: inline-flex; align-items: center; gap: 8px; }

.stats-bar { background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue) 100%); color: var(--white); padding: 90px 0; margin-bottom: 10px; border-radius: 14px; }
.stats-bar .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.stat-item .stat-ic { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-item svg { width: 30px; height: 30px; flex-shrink: 0; }
.stat-item h4 { margin: 0 0 10px 0; font-size: 20px; font-weight: 800; }
.stat-item p { margin: 0; font-size: 14.5px; opacity: .9; line-height: 1.6; max-width: 300px; }

/* ================= REVIEWS (Onlineprinters) ================= */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.review-card { border: 1px solid var(--line); border-radius: 10px; padding: 22px 24px; background: var(--white); }
.review-card .stars { color: var(--blue); font-size: 14px; margin-bottom: 10px; }
.review-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 12px 0; }
.review-card .who { font-size: 12px; color: var(--ink-soft); font-weight: 600; }

/* ================= TAG CLOUD (Onlineprinters) ================= */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.tag-pill { border: 1px solid var(--line); border-radius: 20px; padding: 10px 18px; font-size: 13px; cursor: pointer; background: var(--white); }
.tag-pill:hover { border-color: var(--blue); color: var(--blue); }
.icon-tile-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; overflow: hidden; transition: max-height .3s ease; }
.icon-tile { border: 1px solid var(--line); border-radius: 10px; padding: 30px 16px; text-align: center; cursor: pointer; background: var(--white); }
.icon-tile:hover { border-color: var(--blue); box-shadow: 0 4px 14px rgba(0,35,76,0.08); }
.icon-tile svg { width: 30px; height: 30px; color: var(--ink); margin-bottom: 16px; }
.icon-tile span { font-size: 14px; font-weight: 700; display: block; }
.icon-tile.soon span { color: var(--ink-soft); }

/* ================= FLYERALARM-STIL PRODUKTKACHEL (Kategorieseite) ================= */
.flyer-tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flyer-tile { background: var(--white); cursor: pointer; border: 1px solid var(--line); border-radius: 10px; padding: 24px 24px 28px; transition: box-shadow .15s ease, border-color .15s ease; }
.flyer-tile:hover { border-color: var(--blue); box-shadow: 0 6px 18px rgba(0,35,76,0.08); }
.flyer-tile .img { aspect-ratio: 5/4; overflow: hidden; border-radius: 6px; }
.flyer-tile .cap { padding-top: 18px; }
.flyer-tile .name { font-size: 18px; font-weight: 800; }
.flyer-tile:hover .name { color: var(--blue); }

/* ================= ALLE KATEGORIEN TILE GRID ================= */
.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.tile-card { cursor: pointer; }
.tile-photo { height: 200px; border-radius: 10px; overflow: hidden; margin-bottom: 18px; }
.tile-card h4 { margin: 0 0 8px 0; font-size: 17px; }
.tile-card p { margin: 0 0 10px 0; font-size: 13px; color: var(--ink-soft); }
.tile-card .see-link { font-size: 13px; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }

/* ================= PRODUCT DETAIL PAGE (my-banner.de-Stil) ================= */
.pdp-top { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-bottom: 60px; }
.pdp-gallery-main { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; }
.pdp-badge { position: absolute; top: 16px; left: 16px; background: var(--blue); color: var(--white); font-size: 12.5px; font-weight: 800; text-transform: uppercase; padding: 7px 14px; border-radius: 4px; z-index: 2; }
.pdp-thumbs { display: flex; gap: 10px; margin-top: 14px; }
.pdp-thumb { width: 90px; height: 74px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; cursor: pointer; }
.pdp-thumb.active { border-color: var(--blue); }

.pdp-rating { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--ink-soft); margin-bottom: 16px; }
.pdp-rating .stars { color: var(--blue); letter-spacing: 1px; }
.pdp-info h1 { font-size: 38px; margin: 0 0 16px 0; font-weight: 800; }
.pdp-lead { font-size: 17px; color: var(--ink); font-weight: 600; margin-bottom: 20px; }
.pdp-bullets { list-style: none; padding: 0; margin: 0 0 22px 0; }
.pdp-bullets li { display: flex; gap: 12px; font-size: 16px; color: var(--ink-soft); padding: 7px 0; }
.pdp-bullets li::before { content: '✓'; color: var(--blue); font-weight: 800; flex-shrink: 0; }
.pdp-price-row { font-size: 15px; color: var(--ink-soft); margin-bottom: 30px; }
.pdp-price-row b { font-size: 32px; color: var(--ink); display: block; margin-bottom: 4px; }

.pdp-trust-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; border-top: 1px solid var(--line); padding-top: 24px; }
.pdp-trust-item { display: flex; gap: 12px; }
.pdp-trust-item svg { width: 32px; height: 32px; color: var(--blue); flex-shrink: 0; }
.pdp-trust-item h5 { margin: 0 0 5px 0; font-size: 15px; }
.pdp-trust-item p { margin: 0; font-size: 13.5px; color: var(--ink-soft); }

/* ---- Stepper (modernisiert) ---- */
.stepper-head { text-align: left; margin-bottom: 36px; }
.stepper-head h2 { font-size: 30px; margin: 0 0 10px 0; font-weight: 800; }
.stepper-head p { font-size: 16px; color: var(--ink-soft); margin: 0; }

.step-block {
    background: var(--white); border: 1px solid var(--line); border-radius: 14px;
    margin-bottom: 14px; overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease;
}
.step-block.open { box-shadow: 0 8px 24px rgba(0,35,76,0.08); border-color: rgba(0,35,76,0.12); }
.step-header { display: grid; grid-template-columns: 52px 1fr 26px; gap: 20px; align-items: center; padding: 26px 26px; cursor: pointer; transition: background .15s ease; }
.step-header:hover { background: var(--silver); }
.step-num {
    width: 46px; height: 46px; border-radius: 50%; background: var(--blue-tint); color: var(--blue);
    font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 18px;
    transition: background .2s ease, color .2s ease;
}
.step-block.done .step-num { background: linear-gradient(135deg, var(--blue-mid), var(--blue)); color: var(--white); }
.step-block.open .step-num { background: linear-gradient(135deg, var(--blue-mid), var(--blue)); color: var(--white); }
.step-title { font-size: 19px; font-weight: 700; margin: 0; }
.step-selected-hint { font-size: 14px; color: var(--ink-soft); font-weight: 400; margin-top: 4px; }
.step-chevron { width: 24px; height: 24px; color: var(--ink-soft); transition: transform .25s ease; flex-shrink: 0; }
.step-block.open .step-chevron { transform: rotate(180deg); color: var(--blue); }
.step-body { display: none; padding: 4px 26px 34px 72px; animation: stepFade .2s ease; }
.step-block.open .step-body { display: block; }
.step-sub { font-size: 14px; color: var(--ink-soft); margin: -4px 0 20px 0; }
@keyframes stepFade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

.size-inputs { display: flex; gap: 16px; align-items: flex-end; flex-wrap: wrap; }
.size-field label { display: block; font-size: 14px; color: var(--ink-soft); margin-bottom: 8px; font-weight: 600; }
.size-field input { width: 150px; padding: 14px; border: 1.5px solid var(--line); border-radius: 8px; font-size: 17px; transition: border-color .15s ease; }
.size-field input:focus { border-color: var(--blue); outline: none; }

.swatch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 16px; }
.swatch-card { border: 2px solid var(--line); border-radius: 12px; padding: 16px; cursor: pointer; text-align: center; position: relative; transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease; }
.swatch-card:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.06); }
.swatch-card.selected { border-color: var(--blue); background: var(--blue-tint); box-shadow: 0 6px 16px rgba(0,35,76,0.1); }
.swatch-card.selected::after { content: '✓'; position: absolute; top: 10px; right: 10px; width: 24px; height: 24px; border-radius: 50%; background: var(--blue); color: var(--white); font-size: 13px; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.swatch-img { height: 110px; border-radius: 8px; margin-bottom: 12px; overflow: hidden; }
.swatch-card .lbl { font-size: 14.5px; font-weight: 600; line-height: 1.35; }
.swatch-card .mod { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }

.addon-list { display: flex; flex-direction: column; gap: 10px; }
.addon-row { display: flex; align-items: center; justify-content: space-between; border: 1.5px solid var(--line); border-radius: 12px; padding: 18px 22px; transition: border-color .15s ease; }
.addon-row .lbl { font-size: 16px; font-weight: 600; }
.addon-row .price { font-size: 14px; color: var(--ink-soft); }
.qty-stepper { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--line); border-radius: 8px; overflow: hidden; }
.qty-stepper button { width: 42px; height: 42px; border: none; background: var(--silver); font-size: 19px; font-weight: 700; cursor: pointer; transition: background .15s ease; }
.qty-stepper button:hover { background: var(--blue-tint); color: var(--blue); }
.qty-stepper span { width: 42px; text-align: center; font-size: 16px; font-weight: 700; }

.prod-radio-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.prod-radio { border: 2px solid var(--line); border-radius: 12px; padding: 22px 24px; cursor: pointer; transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease; position: relative; }
.prod-radio:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.06); }
.prod-radio.selected { border-color: var(--blue); background: var(--blue-tint); box-shadow: 0 6px 16px rgba(0,35,76,0.1); }
.prod-radio.selected::after { content: '✓'; position: absolute; top: 14px; right: 14px; width: 24px; height: 24px; border-radius: 50%; background: var(--blue); color: var(--white); font-size: 13px; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.prod-radio .lbl { font-size: 16.5px; font-weight: 700; margin-bottom: 6px; }
.prod-radio .sub { font-size: 14px; color: var(--ink-soft); }

.qty-row-final { display: flex; align-items: center; gap: 16px; }
.qty-row-final .qty-stepper button { width: 50px; height: 50px; font-size: 21px; }
.qty-row-final .qty-stepper span { width: 58px; font-size: 18px; }

.pdp-sticky-bar {
    position: sticky; bottom: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 16px;
    padding: 22px 28px; margin-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
    box-shadow: 0 12px 32px rgba(0,35,76,0.14);
}
.pdp-sticky-bar .price-block .lbl { font-size: 14px; color: var(--ink-soft); }
.pdp-sticky-bar .price-block .amt { font-size: 38px; font-weight: 800; color: var(--blue); }
.pdp-sticky-bar .price-block .note { font-size: 13px; color: var(--ink-soft); }
.pdp-sticky-bar .breakdown-toggle { font-size: 13.5px; text-decoration: underline; cursor: pointer; color: var(--ink-soft); }

/* ---- Similar products ---- */
.similar-section { padding: 70px 0; }

/* ================= DRUCKDATENHINWEISE ================= */
.pdinfo-section { padding: 60px 0; border-top: 1px solid var(--line); }
.pdinfo-section h2 { font-size: 24px; margin: 0 0 30px; font-weight: 800; }
.pdinfo-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.pdinfo-diagram { display: flex; flex-direction: column; align-items: center; }
.pdinfo-diagram svg { width: 100%; max-width: 260px; height: auto; }
.pdinfo-specs ul.spec-bullets { list-style: none; padding: 0; margin: 0 0 24px; }
.pdinfo-specs ul.spec-bullets li { font-size: 14.5px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.pdinfo-specs ul.spec-bullets li b { font-weight: 700; }
.pdinfo-specs .note-list { list-style: disc; padding-left: 20px; margin: 0 0 20px; }
.pdinfo-specs .note-list li { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 8px; line-height: 1.5; }
.pdinfo-files { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 26px; }
.pdinfo-file-card { width: 150px; border: 1px solid var(--line); border-radius: 10px; padding: 18px 12px; text-align: center; cursor: pointer; transition: border-color .15s ease; }
.pdinfo-file-card:hover { border-color: var(--blue); }
.pdinfo-file-card svg { width: 40px; height: 40px; color: #a12b2b; margin-bottom: 8px; }
.pdinfo-file-card .ext { font-size: 11px; color: var(--ink-soft); font-weight: 700; }
.pdinfo-file-card .lbl { font-size: 12.5px; margin-top: 8px; color: var(--ink); }

/* ---- Tabs ---- */
.pdp-tabs-nav { display: flex; gap: 0; border-bottom: 2px solid var(--line); flex-wrap: wrap; margin-bottom: 34px; }
.pdp-tab-btn { padding: 14px 20px; font-size: 13.5px; font-weight: 700; color: var(--ink-soft); cursor: pointer; border-bottom: 3px solid transparent; }
.pdp-tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); }
.pdp-tab-panel h3 { font-size: 19px; margin: 26px 0 12px; }
.pdp-tab-panel h3:first-child { margin-top: 0; }
.pdp-tab-panel p { font-size: 14.5px; color: var(--ink-soft); max-width: 900px; }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 40px; }
.spec-row { border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.spec-row .k { font-size: 12px; font-weight: 700; color: var(--ink-soft); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .03em; }
.spec-row .v { font-size: 14px; }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { padding: 20px 0; font-size: 14.5px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q .plus { font-size: 20px; color: var(--blue); transition: transform .15s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--ink-soft); padding: 0 0 20px 0; display: none; max-width: 800px; }
.faq-item.open .faq-a { display: block; }

/* ================= CART (Premium) ================= */
.cart-layout { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; }
.cart-item-card { background: var(--white); border-radius: 14px; overflow: hidden; margin-bottom: 26px; box-shadow: 0 2px 10px rgba(0,35,76,0.06), 0 1px 2px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.04); transition: box-shadow .2s ease; }
.cart-item-card:hover { box-shadow: 0 8px 24px rgba(0,35,76,0.1), 0 2px 6px rgba(0,0,0,0.05); }
.cart-item-head { background: linear-gradient(180deg, #fbfcfd 0%, var(--silver) 100%); padding: 22px 28px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.cart-item-head .title { font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; }
.cart-item-head .price { font-size: 17px; font-weight: 700; color: var(--blue); }
.cart-item-head .price .lbl { font-size: 11.5px; color: var(--ink-soft); font-weight: 400; margin-right: 5px; text-transform: uppercase; letter-spacing: .03em; }
.cart-ref-row { background: var(--silver); padding: 0 28px 20px; }
.cart-ref-row input { width: 280px; max-width: 100%; padding: 12px 16px; border: 1px solid var(--line); border-radius: 8px; font-size: 13.5px; background: var(--white); transition: border-color .15s ease; }
.cart-ref-row input:focus { border-color: var(--blue); outline: none; }
.cart-ref-row .info-ic { color: var(--ink-soft); margin-left: 6px; cursor: default; }
.cart-item-body { padding: 28px; display: flex; gap: 26px; align-items: flex-start; }
.cart-item-thumb { width: 140px; height: 140px; border-radius: 10px; overflow: hidden; flex-shrink: 0; box-shadow: 0 4px 14px rgba(0,0,0,0.08); }
.cart-item-details { flex: 1; }
.cart-item-details .spec { font-size: 14px; margin-bottom: 10px; color: var(--ink); }
.cart-item-details .delivery { font-size: 13.5px; margin-bottom: 20px; display: inline-flex; align-items: center; gap: 8px; background: var(--blue-tint); color: var(--blue); padding: 7px 14px; border-radius: 20px; }
.cart-item-details .delivery b { font-weight: 700; }
.cart-item-details .spec-list { list-style: none; padding: 0; margin: 0 0 16px 0; }
.cart-item-details .spec-list li { font-size: 13.5px; color: var(--ink-soft); padding: 3px 0; }
.cart-item-details .spec-list li b { color: var(--ink); font-weight: 600; }
.cart-upload-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-outline-dark { border: 1.5px solid var(--ink); background: var(--white); color: var(--ink); padding: 13px 24px; border-radius: 8px; font-weight: 700; font-size: 13.5px; transition: all .15s ease; }
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }
.cart-item-footer { padding: 4px 28px 22px; display: flex; gap: 8px; font-size: 13px; }
.cart-item-footer a { color: var(--ink-soft); cursor: pointer; font-weight: 600; transition: color .15s ease; }
.cart-item-footer a:hover { color: var(--blue); }
.cart-item-footer .sep { color: var(--line); }

.cart-summary { background: var(--white); border-radius: 14px; padding: 32px; position: sticky; top: 24px; box-shadow: 0 4px 20px rgba(0,35,76,0.08), 0 1px 3px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.04); }
.cart-summary h3 { font-size: 14px; font-weight: 800; letter-spacing: .06em; margin: 0 0 22px 0; color: var(--ink-soft); }
.cart-summary .row { display: flex; justify-content: space-between; font-size: 14.5px; padding: 9px 0; }
.cart-summary .row.total { border-top: 2px solid var(--ink); margin-top: 10px; padding-top: 18px; font-size: 19px; font-weight: 800; }
.cart-summary .row.weight { font-size: 12.5px; color: var(--ink-soft); padding-top: 0; }
.cart-summary h4 { font-size: 12.5px; font-weight: 800; letter-spacing: .06em; margin: 26px 0 14px; color: var(--ink-soft); }
.coupon-row { display: flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.coupon-row input { flex: 1; border: none; padding: 14px 16px; font-size: 13.5px; outline: none; }
.coupon-row button { border: none; background: linear-gradient(135deg, var(--blue-mid), var(--blue)); color: var(--white); width: 50px; font-size: 16px; }
.cart-checkout-btn { width: 100%; padding: 19px; border-radius: 10px; font-weight: 800; font-size: 16px; margin-top: 26px; display: flex; align-items: center; justify-content: center; gap: 10px; box-shadow: 0 6px 18px rgba(0,35,76,0.25); }
.cart-checkout-btn svg { width: 18px; height: 18px; }
.cart-or-divider { text-align: center; font-size: 12px; color: var(--ink-soft); margin: 22px 0; position: relative; }
.cart-or-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--line); z-index: 0; }
.cart-or-divider span { background: var(--white); padding: 0 12px; position: relative; z-index: 1; }
.btn-paypal { width: 100%; padding: 16px; border-radius: 10px; border: none; background: #ffc439; font-weight: 700; font-size: 16px; font-style: italic; color: #003087; box-shadow: 0 4px 12px rgba(255,196,57,0.4); }
.cart-trust-row { display: flex; justify-content: center; gap: 20px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.cart-trust-row .item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--ink-soft); font-weight: 600; }
.cart-trust-row svg { width: 15px; height: 15px; color: var(--blue); }

/* ================= KUNDENKONTO ================= */
.acc-login-wrap { max-width: 420px; margin: 70px auto 100px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 40px; box-shadow: 0 4px 20px rgba(0,35,76,0.06); }
.acc-login-wrap h1 { font-size: 24px; margin: 0 0 8px; font-weight: 800; text-align: center; }
.acc-login-wrap .sub { text-align: center; color: var(--ink-soft); font-size: 13.5px; margin: 0 0 30px; }
.acc-login-wrap .field { margin-bottom: 18px; }
.acc-login-wrap label { display: block; font-weight: 700; font-size: 12.5px; margin-bottom: 8px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .03em; }
.acc-login-wrap input { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 8px; font-size: 14.5px; }
.acc-login-wrap input:focus { border-color: var(--blue); outline: none; }
.acc-login-foot { text-align: center; margin-top: 22px; font-size: 13px; color: var(--ink-soft); }
.acc-login-foot a { color: var(--blue); font-weight: 700; cursor: pointer; }

.acc-shell { display: grid; grid-template-columns: 240px 1fr; gap: 40px; max-width: 1180px; margin: 0 auto; padding: 50px 32px 100px; }
.acc-nav { display: flex; flex-direction: column; gap: 2px; }
.acc-nav-item { padding: 12px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--ink-soft); cursor: pointer; display: flex; align-items: center; gap: 10px; }
.acc-nav-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.acc-nav-item:hover { background: var(--silver); color: var(--ink); }
.acc-nav-item.active { background: var(--blue-tint); color: var(--blue); }
.acc-nav-item.logout { margin-top: 16px; border-top: 1px solid var(--line); padding-top: 18px; color: #a33; }
.acc-panel h2 { font-size: 24px; margin: 0 0 6px; font-weight: 800; }
.acc-panel .sub { color: var(--ink-soft); font-size: 14px; margin: 0 0 30px; }
.acc-kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 34px; }
.acc-kpi { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.acc-kpi .lbl { font-size: 12px; color: var(--ink-soft); margin-bottom: 8px; }
.acc-kpi .val { font-size: 24px; font-weight: 800; }
.acc-order-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 20px 24px 18px; margin-bottom: 14px; }
.acc-order-card .top-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; cursor: pointer; }
.acc-order-card .nr { font-weight: 700; font-size: 14.5px; }
.acc-order-card .meta { font-size: 12.5px; color: var(--ink-soft); margin-top: 4px; }
.acc-order-card .total { font-weight: 800; font-size: 15px; }
.acc-order-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.acc-order-actions button { background: var(--white); border: 1.5px solid var(--line); color: var(--ink); padding: 9px 16px; border-radius: 20px; font-size: 12.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.acc-order-actions button:hover { border-color: var(--blue); color: var(--blue); }
.acc-order-actions button svg { width: 14px; height: 14px; }
.acc-order-actions button.danger:hover { border-color: #a12b2b; color: #a12b2b; }
.acc-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 560px; }
.acc-field-grid .full { grid-column: 1 / -1; }
.acc-field-grid label { display: block; font-weight: 700; font-size: 12px; margin-bottom: 8px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .03em; }
.acc-field-grid input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 8px; font-size: 14px; }
.acc-address-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 22px; max-width: 420px; margin-bottom: 16px; }
.acc-address-card h4 { margin: 0 0 10px; font-size: 13px; text-transform: uppercase; letter-spacing: .03em; color: var(--ink-soft); }
.acc-address-card p { margin: 0; font-size: 14px; line-height: 1.6; }

/* ================= KONTAKT ================= */
.contact-hero { background: var(--silver); padding: 60px 0; text-align: center; }
.contact-hero h1 { font-size: 32px; margin: 0 0 12px; font-weight: 800; }
.contact-hero p { color: var(--ink-soft); font-size: 15px; max-width: 560px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; max-width: 1040px; margin: 0 auto; padding: 60px 32px 100px; align-items: start; }
.contact-form-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 36px; box-shadow: 0 4px 20px rgba(0,35,76,0.06); }
.contact-form-card h2 { font-size: 20px; margin: 0 0 24px; font-weight: 800; }
.contact-field { margin-bottom: 18px; }
.contact-field label { display: block; font-weight: 700; font-size: 12.5px; margin-bottom: 8px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .03em; }
.contact-field input, .contact-field select, .contact-field textarea {
    width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 8px; font-size: 14.5px; font-family: inherit; transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-field textarea { min-height: 130px; resize: vertical; }
.contact-field input:focus, .contact-field select:focus, .contact-field textarea:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 4px var(--blue-tint); }
.contact-field-row { display: flex; gap: 16px; }
.contact-info-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 30px; margin-bottom: 20px; }
.contact-info-card h3 { font-size: 15px; margin: 0 0 18px; font-weight: 800; }
.contact-info-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 14px; }
.contact-info-row svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.contact-info-row .sub { font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }
.contact-map { height: 180px; border-radius: 10px; overflow: hidden; }

/* ================= KATEGORIE SEO-TEXT ================= */
.cat-seo-text { border-top: 1px solid var(--line); margin-top: 50px; padding-top: 44px; max-width: 780px; }
.cat-seo-text h2 { font-size: 20px; margin: 0 0 14px; font-weight: 800; }
.cat-seo-text p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; margin: 0 0 16px; }

.badge { display: inline-block; padding: 5px 12px; border-radius: 20px; font-size: 11.5px; font-weight: 700; }
.badge.status-neu { background: var(--blue-tint); color: var(--blue); }
.badge.status-in_pruefung, .badge.status-in_produktion { background: #fbe9d1; color: #a1712b; }
.badge.status-versandt, .badge.status-abgeschlossen { background: #e6f4ec; color: #1a7a4c; }
.badge.status-storniert { background: #fbdada; color: #a12b2b; }

/* ================= CHECKOUT GATE (Premium) ================= */
.gate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 940px; margin: 0 auto; }
.gate-card { background: var(--white); border-radius: 14px; padding: 34px 28px; text-align: center; box-shadow: 0 4px 18px rgba(0,35,76,0.07), 0 1px 3px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.04); transition: box-shadow .2s ease, transform .2s ease; }
.gate-card:hover { box-shadow: 0 10px 30px rgba(0,35,76,0.12); transform: translateY(-2px); }
.gate-card .ic { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-tint), #e2ecf7); color: var(--blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.gate-card .ic svg { width: 24px; height: 24px; }
.gate-card h3 { font-size: 17px; margin: 0 0 10px 0; font-weight: 800; }
.gate-card p { font-size: 13px; color: var(--ink-soft); margin: 0 0 24px 0; min-height: 36px; }
.gate-card input { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; margin-bottom: 12px; font-size: 13.5px; }

/* ================= CHECKOUT STEPPER (Premium) ================= */
.co-tabs { display: flex; justify-content: space-between; align-items: flex-start; gap: 4px; margin: 0 auto 64px; max-width: 920px; }
.co-tab { display: flex; flex-direction: column; align-items: center; gap: 12px; position: relative; flex: 1; min-width: 0; }
.co-tab:not(:last-child)::after {
    content: ''; position: absolute; top: 20px; left: 50%; width: 100%; height: 2px;
    background: var(--line); z-index: 0;
}
.co-tab.done:not(:last-child)::after { background: var(--blue); }
.co-tab .dot { width: 40px; height: 40px; border-radius: 50%; background: var(--white); border: 2px solid var(--line); color: var(--ink-soft); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s ease; position: relative; z-index: 1; }
.co-tab.active .dot { background: linear-gradient(135deg, var(--blue-mid), var(--blue)); color: var(--white); border-color: var(--blue); box-shadow: 0 4px 14px rgba(0,35,76,0.28); }
.co-tab.done .dot { background: var(--blue); color: var(--white); border-color: var(--blue); }
.co-tab .lbl { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); text-align: center; line-height: 1.3; max-width: 110px; }
.co-tab.active .lbl { color: var(--ink); font-weight: 700; }
.co-tab.done .lbl { color: var(--blue); }

.co-layout { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start; max-width: 1040px; margin: 0 auto; }
.co-step-panel h2 { font-size: 26px; margin: 0 0 34px 0; font-weight: 800; letter-spacing: -0.01em; }
.co-field { margin-bottom: 20px; }
.co-field label { display: block; font-weight: 700; font-size: 12.5px; margin-bottom: 9px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; }
.co-field input, .co-field select {
    width: 100%; padding: 15px 16px; border: 1.5px solid var(--line);
    border-radius: 10px; background: var(--white); font-size: 15px; transition: border-color .15s ease, box-shadow .15s ease;
}
.co-field input:focus, .co-field select:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 4px var(--blue-tint); }
.co-field-row { display: flex; gap: 24px; }
.co-checkbox-row { display: flex; align-items: center; gap: 10px; font-size: 13.5px; margin-bottom: 26px; cursor: pointer; }
.co-nav-row { display: flex; justify-content: space-between; margin-top: 40px; }
.co-summary-side {
    background: var(--white); border-radius: 14px; padding: 28px; position: sticky; top: 24px;
    box-shadow: 0 4px 20px rgba(0,35,76,0.06), 0 1px 3px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.04);
}
.co-summary-side h4 { font-size: 12.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 18px; }
.co-summary-side .co-item { display: flex; justify-content: space-between; gap: 10px; font-size: 13.5px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.co-summary-side .co-item .nm { font-weight: 600; }
.co-summary-side .co-item .qty { color: var(--ink-soft); font-size: 12px; }
.co-summary-side .co-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 800; padding-top: 16px; margin-top: 4px; }
.co-payment-row { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--line); border-radius: 10px; padding: 16px 18px; margin-bottom: 10px; cursor: pointer; transition: border-color .15s ease, background .15s ease; }
.co-payment-row.selected { border-color: var(--blue); background: var(--blue-tint); }
.co-summary-box { border-radius: 10px; padding: 20px 0; margin-bottom: 4px; border-bottom: 1px solid var(--line); }
.co-summary-box:last-of-type { border-bottom: none; }
.co-summary-box h4 { font-size: 12px; margin: 0 0 12px 0; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); font-weight: 800; }
.co-summary-box p { font-size: 14px; margin: 0; line-height: 1.7; }
.co-summary-box .edit-link { float: right; font-size: 12.5px; color: var(--blue); cursor: pointer; font-weight: 700; }

/* ================= FOOTER ================= */
footer.site-footer { background: var(--white); padding: 64px 0 0; font-size: 13.5px; border-top: 1px solid var(--line); }
footer.site-footer .cols { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
footer.site-footer h4 { font-size: 13px; margin: 0 0 18px 0; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }
footer.site-footer a.flink { display: block; padding: 5px 0; color: var(--ink); }
footer.site-footer a.flink:hover { color: var(--blue); text-decoration: underline; }
.footer-brand img { height: 30px; display: block; margin-bottom: 16px; }
.footer-brand .tagline { font-size: 13.5px; color: var(--ink-soft); max-width: 320px; margin: 0 0 22px; line-height: 1.6; }
.footer-contact-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 13.5px; }
.footer-contact-row svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--ink-soft); transition: all .15s ease; }
.footer-social a:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-tint); }
.footer-social svg { width: 16px; height: 16px; }
.footer-contact p { margin: 0 0 6px 0; }
.footer-contact .phone-big { color: var(--blue); font-weight: 700; text-decoration: underline; }
.pay-ship-row { border-top: 1px solid var(--line); padding: 26px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.pay-ship-row h5 { font-size: 13px; margin: 0 0 12px 0; }
.icon-chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.icon-chip { border: 1px solid var(--line); border-radius: 4px; padding: 8px 12px; font-size: 11px; font-weight: 700; color: var(--ink-soft); background: var(--white); }
.legal-fine { text-align: center; font-size: 11.5px; color: var(--ink-soft); padding: 20px 0 30px; }

.screen { display: none; }
.screen.active { display: block; }

@media (max-width: 1100px) {
    .carousel-track, .tile-grid, .branchen-grid, .mkt-grid, .druckdaten-grid, .flyer-tile-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .icon-cat-grid, .icon-tile-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .hero-slider .wrap, .stats-bar .wrap, footer.site-footer .cols { grid-template-columns: 1fr; }
    .mailing-grid, .support-grid, .ind-banner-grid, .ind-story-grid, .pdp-top { grid-template-columns: 1fr; gap: 36px; }
    .ind-story:nth-child(even) .ind-story-grid { direction: ltr; }
    .ind-story-grid > div:first-child { order: 1; } .ind-story-grid > div:last-child { order: 2; }
    .mailing-visual, .support-visual, .ind-banner-visual, .ind-story-visual { height: 280px; }
    .cart-layout, .co-layout { grid-template-columns: 1fr; }
    .cart-summary, .co-summary-side { position: static; }
    .acc-shell { grid-template-columns: 1fr; }
    .acc-nav { flex-direction: row; flex-wrap: wrap; margin-bottom: 20px; }
    .acc-nav-item.logout { margin-top: 0; border-top: none; }
    .gate-grid { grid-template-columns: 1fr; max-width: 460px; }
}

@media (max-width: 780px) {
    .usp-bar .usp-left { display: none; }
    .usp-bar .wrap { justify-content: center; }
    header.site-header .wrap { flex-wrap: wrap; gap: 14px; }
    .search-box { order: 3; max-width: 100%; flex-basis: 100%; }
    .header-actions { gap: 18px; }
    .header-actions .phone-num { display: none; }
    .hero-slider .wrap { padding: 56px 24px; min-height: unset; }
    .hero-slider h1 { font-size: 30px; }
    .section { padding: 12px 0 44px; }
    .section-title { font-size: 22px; margin-bottom: 26px; }
    .carousel-track, .tile-grid, .branchen-grid, .mkt-grid, .druckdaten-grid, .flyer-tile-grid,
    .icon-cat-grid, .icon-tile-grid, .partner-two-tile, .co-tab, .prod-radio-row, .gate-grid,
    .stats-bar .wrap, .review-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .pdp-trust-row, .spec-grid, .acc-field-grid, .acc-kpi-row { grid-template-columns: 1fr !important; }
    .co-field-row, .field-row { flex-direction: column; }
    .co-tabs .lbl { display: none; }
    .co-tabs { max-width: 100%; }
    .swatch-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .step-header { grid-template-columns: 40px 1fr 22px; padding: 18px 16px; }
    .step-body { padding: 4px 16px 22px 56px; }
    .pdp-info h1 { font-size: 27px; }
    .pdp-sticky-bar { flex-direction: column; align-items: stretch; text-align: center; }
    .pdp-sticky-bar button { width: 100%; justify-content: center; }
    .cart-item-body { flex-direction: column; }
    .cart-item-thumb { width: 100%; height: 180px; }
    .ind-topbar-row { flex-direction: column; align-items: flex-start; }
    .wrap { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 520px) {
    .carousel-track, .tile-grid, .branchen-grid, .mkt-grid, .druckdaten-grid, .flyer-tile-grid,
    .icon-cat-grid, .icon-tile-grid, .partner-two-tile, .prod-radio-row, .gate-grid,
    .stats-bar .wrap, .review-grid, .swatch-grid, footer.site-footer .cols { grid-template-columns: 1fr !important; }
    .hero-slider h1 { font-size: 25px; }
    .mailing-grid h2, .support-grid h2 { font-size: 24px; }
    .hero-btn, .btn-grad, .btn-pill { width: 100%; justify-content: center; }
}
