/* Druckerei Produktübersicht */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.dp-wrapper-8b7af143 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #F6F6F6;
    padding: 60px 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

.dp-wrapper-8b7af143 *,
.dp-wrapper-8b7af143 *::before,
.dp-wrapper-8b7af143 *::after {
    box-sizing: border-box;
}

.dp-container-8b7af143 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* ===== SIDEBAR ===== */
.dp-sidebar-8b7af143 {
    width: 280px;
    min-width: 280px;
    position: sticky;
    top: 100px;
}

.dp-sidebar-inner-8b7af143 {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.dp-search-8b7af143 {
    position: relative;
    margin-bottom: 20px;
}

.dp-search-icon-8b7af143 {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.dp-search-input-8b7af143 {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1.5px solid #E8E8E8;
    border-radius: 14px;
    font-size: 14px;
    font-family: inherit;
    color: #222;
    background: #FAFAFA;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
}

.dp-search-input-8b7af143::placeholder {
    color: #AAA;
}

.dp-search-input-8b7af143:focus {
    border-color: #FF8F00;
    box-shadow: 0 0 0 3px rgba(255,143,0,0.1);
    background: #fff;
}

/* Category Nav */
.dp-cat-nav-8b7af143 {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F0F0F0;
}

.dp-cat-btn-8b7af143 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border: none;
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    font-size: 13.5px;
    font-family: inherit;
    font-weight: 500;
    color: #555;
    transition: all 0.2s;
    text-align: left;
    line-height: 1.3;
}

.dp-cat-btn-8b7af143:hover {
    background: #FFF5E6;
    color: #FF8F00;
}

.dp-cat-btn-8b7af143 svg {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.dp-cat-btn-8b7af143:hover svg {
    opacity: 1;
}

.dp-cat-active-8b7af143 {
    background: #FFF5E6;
    color: #FF8F00;
    font-weight: 600;
}

.dp-cat-active-8b7af143 svg {
    opacity: 1;
    stroke: #FF8F00;
}

/* Contact Box */
.dp-contact-box-8b7af143 {
    background: #FAFAFA;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}

.dp-contact-title-8b7af143 {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin: 0 0 6px 0;
}

.dp-contact-text-8b7af143 {
    font-size: 13px;
    color: #888;
    margin: 0 0 14px 0;
    line-height: 1.5;
}

.dp-contact-btn-8b7af143 {
    display: inline-block;
    padding: 10px 20px;
    background: #FF8F00;
    color: #fff;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    transition: all 0.2s;
}

.dp-contact-btn-8b7af143:hover {
    background: #E67E00;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,143,0,0.3);
    color: #fff;
}

/* ===== MOBILE BAR (hidden on desktop) ===== */
.dp-mobile-bar-8b7af143 {
    display: none;
}

/* ===== MAIN CONTENT ===== */
.dp-main-8b7af143 {
    flex: 1;
    min-width: 0;
}

.dp-header-8b7af143 {
    margin-bottom: 36px;
}

.dp-eyebrow-8b7af143 {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FF8F00;
    margin-bottom: 10px;
}

.dp-title-8b7af143 {
    font-size: 32px;
    font-weight: 800;
    color: #222;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.dp-subtitle-8b7af143 {
    font-size: 15px;
    color: #696969;
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
}

/* ===== ACCORDION ===== */
.dp-accordion-8b7af143 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dp-acc-item-8b7af143 {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.dp-acc-item-8b7af143:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.dp-acc-header-8b7af143 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

.dp-acc-header-8b7af143:hover {
    background: #FAFAFA;
}

.dp-acc-header-left-8b7af143 {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dp-acc-header-left-8b7af143 svg {
    flex-shrink: 0;
    color: #999;
    transition: color 0.2s;
}

.dp-acc-open-8b7af143 .dp-acc-header-left-8b7af143 svg {
    color: #FF8F00;
}

.dp-acc-header-left-8b7af143 span {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: color 0.2s;
}

.dp-acc-open-8b7af143 .dp-acc-header-left-8b7af143 span {
    color: #222;
}

.dp-acc-toggle-8b7af143 {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s;
}

.dp-acc-toggle-8b7af143::before,
.dp-acc-toggle-8b7af143::after {
    content: '';
    position: absolute;
    background: #888;
    border-radius: 1px;
    transition: all 0.3s;
}

.dp-acc-toggle-8b7af143::before {
    width: 12px;
    height: 2px;
}

.dp-acc-toggle-8b7af143::after {
    width: 2px;
    height: 12px;
}

.dp-acc-open-8b7af143 .dp-acc-toggle-8b7af143 {
    background: #FFF5E6;
}

.dp-acc-open-8b7af143 .dp-acc-toggle-8b7af143::before {
    background: #FF8F00;
}

.dp-acc-open-8b7af143 .dp-acc-toggle-8b7af143::after {
    background: #FF8F00;
    height: 0;
}

/* Accordion Body */
.dp-acc-body-8b7af143 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dp-acc-open-8b7af143 .dp-acc-body-8b7af143 {
    max-height: 600px;
}

.dp-acc-content-8b7af143 {
    display: flex;
    gap: 30px;
    padding: 0 24px 24px;
    align-items: flex-start;
}

/* Products Grid */
.dp-products-grid-8b7af143 {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.dp-product-link-8b7af143 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s;
    line-height: 1.3;
}

.dp-product-link-8b7af143 svg {
    flex-shrink: 0;
    transition: transform 0.2s;
}

.dp-product-link-8b7af143:hover {
    background: #FFF8EE;
    color: #FF8F00;
}

.dp-product-link-8b7af143:hover svg {
    transform: translateX(3px);
}

/* Mockup */
.dp-mockup-8b7af143 {
    width: 220px;
    min-width: 220px;
}

.dp-mockup-img-8b7af143 {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.dp-mockup-placeholder-8b7af143 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(145deg, #FFF8EE 0%, #FFF0D6 100%);
}

.dp-mockup-placeholder-8b7af143 span {
    font-size: 13px;
    font-weight: 600;
    color: #CC7200;
    letter-spacing: 0.3px;
}

/* ===== CTA ===== */
.dp-cta-8b7af143 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #fff;
    border-radius: 20px;
    padding: 36px 40px;
    margin-top: 30px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.dp-cta-left-8b7af143 {
    flex: 1;
}

.dp-cta-title-8b7af143 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px 0;
}

.dp-cta-text-8b7af143 {
    font-size: 14px;
    color: #696969;
    line-height: 1.6;
    margin: 0;
}

.dp-cta-right-8b7af143 {
    flex-shrink: 0;
}

.dp-cta-btn-8b7af143 {
    display: inline-block;
    padding: 14px 28px;
    background: #FF8F00;
    color: #fff;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.dp-cta-btn-8b7af143:hover {
    background: #E67E00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,143,0,0.35);
    color: #fff;
}

/* ===== SEARCH HIGHLIGHT ===== */
.dp-product-link-hidden-8b7af143 {
    display: none !important;
}

.dp-acc-item-hidden-8b7af143 {
    display: none !important;
}

/* ===== TABLET ===== */
@media (max-width: 960px) {
    .dp-sidebar-8b7af143 {
        display: none;
    }

    .dp-mobile-bar-8b7af143 {
        display: block;
        margin-bottom: 24px;
    }

    .dp-container-8b7af143 {
        flex-direction: column;
        gap: 0;
    }

    .dp-mobile-cats-8b7af143 {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .dp-mobile-cats-8b7af143::-webkit-scrollbar {
        display: none;
    }

    .dp-mobile-cat-8b7af143 {
        flex-shrink: 0;
        padding: 10px 18px;
        border: 1.5px solid #E0E0E0;
        background: #fff;
        border-radius: 12px;
        font-size: 13px;
        font-weight: 600;
        font-family: inherit;
        color: #666;
        cursor: pointer;
        transition: all 0.2s;
        white-space: nowrap;
    }

    .dp-mobile-cat-8b7af143:hover {
        border-color: #FF8F00;
        color: #FF8F00;
    }

    .dp-mobile-cat-active-8b7af143 {
        background: #FF8F00;
        border-color: #FF8F00;
        color: #fff;
    }

    .dp-mobile-cat-active-8b7af143:hover {
        background: #E67E00;
        color: #fff;
    }

    .dp-search-mobile-8b7af143 {
        margin-bottom: 14px;
    }

    .dp-title-8b7af143 {
        font-size: 26px;
    }

    .dp-cta-8b7af143 {
        padding: 28px 30px;
    }

    .dp-cta-title-8b7af143 {
        font-size: 19px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 640px) {
    .dp-wrapper-8b7af143 {
        padding: 30px 16px;
    }

    .dp-title-8b7af143 {
        font-size: 22px;
    }

    .dp-subtitle-8b7af143 {
        font-size: 14px;
    }

    .dp-acc-header-8b7af143 {
        padding: 16px 18px;
    }

    .dp-acc-header-left-8b7af143 span {
        font-size: 14px;
    }

    .dp-acc-content-8b7af143 {
        flex-direction: column;
        padding: 0 18px 18px;
        gap: 20px;
    }

    .dp-products-grid-8b7af143 {
        grid-template-columns: 1fr;
    }

    .dp-mockup-8b7af143 {
        width: 100%;
        min-width: unset;
    }

    .dp-mockup-img-8b7af143 {
        aspect-ratio: 16/9;
    }

    .dp-product-link-8b7af143 {
        padding: 12px 14px;
        font-size: 15px;
    }

    .dp-cta-8b7af143 {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        gap: 20px;
    }

    .dp-cta-title-8b7af143 {
        font-size: 18px;
    }

    .dp-cta-btn-8b7af143 {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .dp-acc-item-8b7af143 {
        border-radius: 16px;
    }

    .dp-acc-open-8b7af143 .dp-acc-body-8b7af143 {
        max-height: 900px;
    }
}
