/*
Theme Name: Pitbiker Shop
Theme URI: https://www.pitbiker.at/
Author: Pitbiker / Custom Shop Theme
Description: Eigenständiges WooCommerce-Theme für Pitbiker.at mit breitem Fachmarkt-Layout, Produktsuche, Kategorienavigation, Shop-Sidebar, Unterkategorie-Kacheln und responsive Produktkarten.
Version: 1.9.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: pitbiker-shop
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

 :root {
    --pb-ink: #10151d;
    --pb-navy: #182232;
    --pb-navy-2: #222f43;
    --pb-black: #10151d;
    --pb-black-2: #182232;
    --pb-red: #d71920;
    --pb-red-dark: #a91016;
    --pb-orange: #ff6a00;
    --pb-gold: #f4a000;
    --pb-steel: #dfe4ea;
    --pb-soft: #f5f7f9;
    --pb-text: #202631;
    --pb-muted: #68717e;
    --pb-line: #dfe3e8;
    --pb-footer: #e7e7e7;
    --pb-white: #ffffff;
    --pb-width: 1640px;
    --pb-radius: 7px;
}
* { box-sizing: border-box; }
html { margin: 0; padding: 0; }
body {
    margin: 0;
    padding: 0;
    background: var(--pb-white);
    color: var(--pb-text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.55;
}
img { max-width: 100%; height: auto; }
a { color: var(--pb-text); }
a:hover { color: var(--pb-red); }
button, input, select, textarea { font: inherit; }

.pb-wrap {
    width: calc(100% - 40px);
    max-width: var(--pb-width);
    margin: 0 auto;
}

/* Header */
.pb-site-header {
    background: var(--pb-black);
    position: relative;
    z-index: 200;
}
.pb-topbar {
    background: #070707;
    color: #cfcfcf;
    border-bottom: 1px solid #262626;
    font-size: 12px;
}
.pb-topbar .pb-wrap {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.pb-topbar-left,
.pb-topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.pb-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}
.pb-topbar-item svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}
.pb-topbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}
.pb-topbar a:hover { color: #ff4545; }

.pb-main-header {
    background: var(--pb-black);
    border-bottom: 1px solid #292929;
}
.pb-header-grid {
    min-height: 96px;
    display: grid;
    grid-template-columns: minmax(210px, 250px) minmax(260px, 1fr) auto;
    align-items: center;
    gap: 36px;
    padding: 14px 0;
}
.pb-brand {
    display: flex;
    align-items: center;
    min-width: 0;
}
.pb-brand a.custom-logo-link,
.pb-brand .pb-default-logo {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,.16);
}
.pb-brand img,
.pb-brand .custom-logo {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 68px;
    margin: 0;
}
.pb-header-promise {
    min-width: 0;
    padding-left: 30px;
    border-left: 1px solid #343434;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    color: #fff;
}
.pb-header-promise strong {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .01em;
}
.pb-header-promise span {
    color: #bdbdbd;
    font-size: 13px;
    line-height: 1.35;
}

.pb-header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    gap: 9px;
}
.pb-header-action {
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid #393939;
    border-radius: 4px;
    background: #181818;
    color: #fff;
    text-decoration: none;
    transition: border-color .15s ease, background .15s ease;
}
.pb-header-action:hover {
    background: #222;
    border-color: var(--pb-red);
    color: #fff;
}
.pb-action-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 0 0 28px;
}
.pb-action-icon svg {
    width: 25px;
    height: 25px;
    fill: #fff;
}
.pb-action-copy {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    line-height: 1.25;
}
.pb-action-copy small { color: #aaa; font-size: 11px; }
.pb-action-copy strong { color: #fff; font-size: 13px; font-weight: 800; }
.pb-cart-count {
    position: absolute;
    top: -7px;
    right: -8px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: var(--pb-red);
    color: #fff;
    border: 2px solid #181818;
    font-size: 9px;
    font-weight: 800;
}

/* Main navigation */
.pb-main-nav {
    background: #fff;
    border-bottom: 3px solid var(--pb-red);
    box-shadow: 0 2px 7px rgba(0,0,0,.08);
    position: relative;
    z-index: 100;
}
.pb-nav-row {
    display: flex;
    align-items: stretch;
    min-width: 0;
}
.pb-nav-kicker {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 0 20px;
    background: var(--pb-black);
    color: #fff;
    border-bottom: 3px solid var(--pb-red);
    margin-bottom: -3px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .025em;
    text-transform: uppercase;
}
.pb-nav-row .pb-shop-menu {
    min-width: 0;
    flex: 1 1 auto;
}
.pb-menu-toggle {
    display: none;
    width: 100%;
    min-height: 46px;
    border: 0;
    background: #fff;
    color: #111;
    text-align: left;
    font-weight: 700;
    padding: 0 15px;
}
.pb-shop-menu {
    list-style: none;
    display: flex;
    align-items: stretch;
    margin: 0;
    padding: 0;
}
.pb-shop-menu li { list-style: none; position: relative; margin: 0; padding: 0; }
.pb-shop-menu > li { border-right: 1px solid #e5e5e5; }
.pb-shop-menu > li:first-child { border-left: 1px solid #e5e5e5; }
.pb-shop-menu > li > a {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 17px;
    background: #fff;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.pb-shop-menu > li > a:hover,
.pb-shop-menu > li.current-menu-item > a,
.pb-shop-menu > li.current-menu-parent > a,
.pb-shop-menu > li.current-product_cat-ancestor > a {
    background: var(--pb-black);
    color: #fff;
}
.pb-shop-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    margin: 0;
    padding: 7px 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 8px 24px rgba(0,0,0,.16);
    z-index: 9999;
}
.pb-shop-menu li:hover > .sub-menu { display: block; }
.pb-shop-menu .sub-menu a {
    display: block;
    padding: 10px 16px;
    color: #222;
    text-decoration: none;
    font-size: 13px;
}
.pb-shop-menu .sub-menu a:hover { background: #f3f3f3; color: var(--pb-red); }

/* Main pages */
.pb-site-main { min-height: 55vh; }
.pb-page-shell { padding: 28px 0 55px; }
.pb-content-card { background: #fff; }
.pb-content-card > h1:first-child,
.entry-title {
    margin-top: 0;
    font-size: 24px;
    line-height: 1.25;
}

/* Woo shop layout */
.pb-shop-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}
.pb-shop-content { min-width: 0; }
.pb-filter-toggle { display: none; }
.pb-shop-sidebar {
    position: sticky;
    top: 18px;
    min-width: 0;
}
.pb-sidebar-title {
    margin: 0;
    padding: 14px 16px;
    background: var(--pb-black);
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
}
.pb-shop-sidebar .widget,
.pb-shop-sidebar .pb-sidebar-fallback {
    margin: 0 0 16px;
    padding: 16px;
    border: 1px solid var(--pb-line);
    background: #fff;
}
.pb-shop-sidebar .widget-title,
.pb-shop-sidebar h2,
.pb-shop-sidebar h3 {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 800;
}
.pb-shop-sidebar ul { margin: 0; padding: 0; list-style: none; }
.pb-shop-sidebar li { margin: 0; padding: 7px 0; border-bottom: 1px solid #eee; }
.pb-shop-sidebar li:last-child { border-bottom: 0; }
.pb-shop-sidebar a { color: #333; text-decoration: none; font-size: 13px; }
.pb-shop-sidebar a:hover { color: var(--pb-red); }

/* Woo headings/breadcrumb */
.woocommerce .woocommerce-breadcrumb { margin: 0 0 14px; font-size: 12px; color: #777; }
.woocommerce .woocommerce-breadcrumb a { color: #444; text-decoration: none; }
.woocommerce .woocommerce-breadcrumb a:hover { color: var(--pb-red); }
.woocommerce-products-header__title.page-title,
.woocommerce h1.page-title {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
}

/* Child category tiles */
.pb-category-tiles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 24px;
}
.pb-category-tile {
    min-height: 102px;
    display: grid;
    grid-template-columns: 82px minmax(0,1fr);
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid var(--pb-line);
    background: #fff;
    color: #222;
    text-decoration: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.pb-category-tile:hover { border-color: #999; box-shadow: 0 4px 14px rgba(0,0,0,.08); color: #111; }
.pb-category-tile-image {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.pb-category-tile-image img { width: 100%; height: 100%; object-fit: contain; }
.pb-category-tile-placeholder { font-size: 26px; color: #bbb; }
.pb-category-tile-copy { min-width: 0; }
.pb-category-tile-name { display: block; font-size: 14px; line-height: 1.25; font-weight: 800; }
.pb-category-tile-count { display: block; margin-top: 5px; color: #777; font-size: 11px; }

/* Loop toolbar */
.woocommerce .woocommerce-result-count { margin: 11px 0 18px; font-size: 13px; color: #666; }
.woocommerce .woocommerce-ordering { margin: 0 0 18px; }
.woocommerce .woocommerce-ordering select {
    min-height: 42px;
    padding: 0 36px 0 12px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: var(--pb-radius);
    color: #222;
}

/* Product grid */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0 !important;
    padding: 0 !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 14px !important;
    min-width: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--pb-line);
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.woocommerce ul.products li.product:hover {
    border-color: #999;
    box-shadow: 0 6px 20px rgba(0,0,0,.10);
    transform: translateY(-2px);
}
.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: 220px !important;
    object-fit: contain !important;
    margin: 0 0 13px !important;
    background: #fff;
}
.pb-loop-brand {
    display: block;
    min-height: 16px;
    margin: 0 0 4px;
    color: #666;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 42px;
    margin: 0 0 9px;
    padding: 0 !important;
    color: #222;
    font-size: 14px !important;
    line-height: 1.35;
    font-weight: 700;
}
.woocommerce ul.products li.product .price {
    margin: auto 0 8px;
    color: #111 !important;
    font-size: 22px !important;
    line-height: 1.15;
    font-weight: 800;
}
.woocommerce ul.products li.product .price del { color: #888 !important; font-size: 12px; font-weight: 400; opacity: 1; }
.woocommerce ul.products li.product .price ins { color: var(--pb-red) !important; text-decoration: none; }
.woocommerce span.onsale {
    min-width: auto;
    min-height: auto;
    line-height: 1;
    top: 10px;
    left: 10px;
    right: auto;
    margin: 0;
    padding: 7px 9px;
    border-radius: 0;
    background: var(--pb-red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}
.woocommerce ul.products li.product .button {
    width: 100%;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0 0;
    padding: 10px 12px;
    border-radius: 2px;
    background: var(--pb-black);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}
.woocommerce ul.products li.product .button:hover { background: var(--pb-red); }
.woocommerce ul.products li.product .wc-gzd-additional-info,
.woocommerce ul.products li.product .delivery-time-info,
.woocommerce ul.products li.product .tax-info,
.woocommerce ul.products li.product .shipping-costs-info {
    margin: 2px 0;
    color: #666;
    font-size: 11px;
    line-height: 1.35;
}

/* Shop-/Kategoriebeschreibung oben vor Kategorien und Produkten */
.woocommerce-products-header .term-description,
.woocommerce-products-header .page-description {
    margin: 0 0 22px;
    padding: 0;
    color: #3c3c3c;
    font-size: 14px;
    line-height: 1.6;
}
.woocommerce-products-header .term-description h2,
.woocommerce-products-header .page-description h2 { margin: 18px 0 7px; font-size: 18px; }
.woocommerce-products-header .term-description h3,
.woocommerce-products-header .page-description h3 { margin: 16px 0 6px; font-size: 16px; }
.woocommerce-products-header .term-description p,
.woocommerce-products-header .page-description p { margin: 0 0 10px; }

/* Buttons/forms */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    border-radius: 2px;
    background: var(--pb-black);
    color: #fff;
    font-weight: 700;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover { background: var(--pb-red); color: #fff; }
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="number"], textarea, select {
    border: 1px solid #ccc;
    border-radius: 2px;
    background: #fff;
    color: #222;
    padding: 9px 11px;
}

/* Single product */
.single-product .pb-shop-content { max-width: 1380px; margin: 0 auto; }
.woocommerce div.product .product_title { font-size: 24px; line-height: 1.25; font-weight: 800; }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: #111; font-size: 27px; font-weight: 800; }
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins { color: var(--pb-red); text-decoration: none; }
.woocommerce div.product form.cart .button { background: var(--pb-red); min-height: 46px; }
.woocommerce div.product form.cart .button:hover { background: var(--pb-black); }

/* Pagination */
.woocommerce nav.woocommerce-pagination { margin: 30px 0; }
.woocommerce nav.woocommerce-pagination ul { border: 0; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; margin: 2px; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    min-width: 38px;
    min-height: 38px;
    padding: 9px;
    border: 1px solid #ddd;
    background: #fff;
    color: #222;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover { background: var(--pb-black); border-color: var(--pb-black); color: #fff; }

/* Footer */
.pb-footer-widgets {
    background: var(--pb-footer);
    border-top: 1px solid #d2d2d2;
    padding: 34px 0;
}
.pb-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}
.pb-footer-widgets .widget { margin: 0; }
.pb-footer-widgets .widget-title,
.pb-footer-widgets h2,
.pb-footer-widgets h3 { margin: 0 0 11px; font-size: 15px; color: #111; }
.pb-footer-widgets ul { margin: 0; padding: 0; list-style: none; }
.pb-footer-widgets li { padding: 4px 0; }
.pb-footer-widgets a { color: #222; text-decoration: none; }
.pb-footer-widgets a:hover { color: var(--pb-red); }
.pb-footer-bottom { background: #fff; border-top: 1px solid #ddd; padding: 15px 0; font-size: 12px; color: #555; }
.pb-footer-bottom .pb-wrap { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.pb-legal-menu { display: flex; flex-wrap: wrap; gap: 14px; list-style: none; margin: 0; padding: 0; }
.pb-legal-menu a { color: #444; text-decoration: none; }
.pb-legal-menu a:hover { color: var(--pb-red); }

/* Responsive */
@media (max-width: 1350px) {
    .pb-header-grid { grid-template-columns: 200px minmax(320px, 1fr) 300px; gap: 20px; }
    .pb-category-tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1050px) {
    .pb-header-grid { grid-template-columns: 190px 1fr; gap: 14px 22px; }
    .pb-header-actions { grid-column: 1 / -1; }
    .pb-shop-layout { grid-template-columns: 230px minmax(0, 1fr); gap: 20px; }
    .pb-category-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 800px) {
    .pb-wrap { width: calc(100% - 20px); }
    .pb-topbar-left { gap: 10px; font-size: 10px; }
    .pb-topbar-right { display: none; }
    .pb-header-grid { grid-template-columns: 1fr auto; min-height: auto; padding: 10px 0 12px; }
    .pb-brand img, .pb-brand .custom-logo { max-width: 150px; max-height: 55px; }
    .pb-header-action.pb-account { display: none; }
    .pb-header-action .pb-action-copy { display: none; }
    .pb-header-action { min-height: 48px; padding: 7px 10px; }
    .pb-search { grid-column: 1 / -1; grid-row: 2; }
    .pb-product-search,
    .pb-product-search input[type="search"],
    .pb-product-search button { height: 46px; }
    .pb-product-search button { padding: 0 15px; font-size: 12px; }
    .pb-menu-toggle { display: block; }
    .pb-main-nav .pb-wrap { width: 100%; }
    .pb-shop-menu { display: none; flex-direction: column; border-top: 1px solid #ddd; }
    .pb-main-nav.is-open .pb-shop-menu { display: flex; }
    .pb-shop-menu > li { border-right: 0; border-bottom: 1px solid #eee; }
    .pb-shop-menu > li:first-child { border-left: 0; }
    .pb-shop-menu > li > a { min-height: 44px; padding: 0 15px; }
    .pb-shop-menu .sub-menu { display: block; position: static; min-width: 0; border: 0; box-shadow: none; padding: 0 0 7px 15px; }
    .pb-shop-menu .sub-menu a { padding: 8px 15px; }
    .pb-shop-layout { display: block; }
    .pb-filter-toggle {
        display: block;
        width: 100%;
        min-height: 44px;
        margin: 0 0 16px;
        border: 0;
        background: var(--pb-black);
        color: #fff;
        font-weight: 700;
        text-align: left;
        padding: 0 14px;
    }
    .pb-shop-sidebar { display: none; position: static; margin-bottom: 18px; }
    .pb-shop-layout.is-filter-open .pb-shop-sidebar { display: block; }
    .pb-category-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .pb-category-tile { grid-template-columns: 62px minmax(0,1fr); min-height: 82px; padding: 8px; }
    .pb-category-tile-image { width: 62px; height: 62px; }
    .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .woocommerce ul.products li.product { padding: 9px !important; }
    .woocommerce ul.products li.product a img { height: 150px !important; }
    .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 13px !important; min-height: 36px; }
    .woocommerce ul.products li.product .price { font-size: 18px !important; }
    .pb-footer-grid { grid-template-columns: 1fr; gap: 22px; }
    .pb-footer-bottom .pb-wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
    .pb-topbar-left span:last-child { display: none; }
    .pb-brand img, .pb-brand .custom-logo { max-width: 132px; }
    .pb-category-tile-name { font-size: 12px; }
    .woocommerce ul.products li.product a img { height: 125px !important; }
}


/* 1.1 – zusätzliche Stabilität gegen doppelte WooCommerce-Kategorien */
body.post-type-archive-product .woocommerce ul.products li.product-category,
body.tax-product_cat .woocommerce ul.products li.product-category {
    display: none !important;
}

/* Ruhigeres, professionelleres Shop-Finish */
.pb-page-shell { padding-top: 24px; }
.woocommerce-products-header__title.page-title,
.woocommerce h1.page-title {
    font-size: 22px;
    letter-spacing: -.01em;
}
.pb-category-tiles {
    padding: 14px;
    background: #f7f7f7;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
}
.pb-category-tile {
    border-radius: 3px;
}
.pb-category-tile:hover {
    border-color: #b9b9b9;
    box-shadow: 0 5px 16px rgba(0,0,0,.08);
}
.woocommerce ul.products li.product {
    border-radius: 4px;
}
.woocommerce ul.products li.product:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
}
.woocommerce ul.products li.product .button {
    border-radius: 3px;
}

@media (max-width: 1100px) {
    .pb-header-grid {
        grid-template-columns: minmax(180px, 220px) 1fr auto;
        gap: 20px;
    }
    .pb-header-promise {
        padding-left: 20px;
    }
    .pb-header-actions { grid-column: auto !important; }
    .pb-header-promise strong { font-size: 16px; }
    .pb-account .pb-action-copy { display: none; }
}

@media (max-width: 800px) {
    .pb-header-grid {
        grid-template-columns: 1fr auto;
        gap: 12px;
        min-height: 78px;
        padding: 9px 0;
    }
    .pb-header-promise { display: none; }
    .pb-brand img,
    .pb-brand .custom-logo { max-width: 145px; max-height: 52px; }
    .pb-header-actions { align-items: center; }
    .pb-header-action.pb-account { display: none; }
    .pb-header-action .pb-action-copy { display: none; }
    .pb-header-action { min-height: 46px; padding: 7px 9px; }
    .pb-nav-row { display: block; }
    .pb-nav-kicker { display: none; }
    .pb-category-tiles { padding: 8px; }
}

/* ============================================================
1.3 – PROFESSIONAL MULTI-COLOR SHOP REDESIGN
============================================================ */


body {
    background: #ffffff;
    color: var(--pb-text);
}

/* ---------- Top service bar ---------- */
.pb-topbar {
    background: linear-gradient(90deg, var(--pb-red-dark) 0%, var(--pb-red) 55%, #ef3f22 100%);
    color: #fff;
    border-bottom: 0;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.16);
}
.pb-topbar .pb-wrap { min-height: 36px; }
.pb-topbar-item { font-weight: 700; }
.pb-topbar-item svg { fill: #fff; }
.pb-topbar-right { color: rgba(255,255,255,.92); }
.pb-topbar-tag {
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.18);
    font-weight: 700;
    letter-spacing: .01em;
}
.pb-topbar a { color: #fff; }
.pb-topbar a:hover { color: #fff3d7; }

/* ---------- Main header ---------- */
.pb-main-header {
    background:
        radial-gradient(circle at 72% 15%, rgba(255,106,0,.11), transparent 25%),
        linear-gradient(135deg, var(--pb-ink) 0%, var(--pb-navy) 58%, #202b3b 100%);
    border-bottom: 1px solid rgba(255,255,255,.09);
}
.pb-header-grid {
    min-height: 108px;
    grid-template-columns: minmax(215px, 255px) minmax(330px, 1fr) auto;
    gap: 34px;
    padding: 15px 0;
}
.pb-brand a.custom-logo-link,
.pb-brand .pb-default-logo {
    position: relative;
    padding: 8px 13px;
    border: 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.24);
    overflow: hidden;
}
.pb-brand a.custom-logo-link::after,
.pb-brand .pb-default-logo::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pb-red), var(--pb-orange), var(--pb-gold));
}
.pb-brand img,
.pb-brand .custom-logo {
    max-width: 225px;
    max-height: 70px;
}

.pb-header-promise {
    padding-left: 30px;
    border-left: 1px solid rgba(255,255,255,.17);
    gap: 4px;
}
.pb-header-eyebrow {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 2px;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(215,25,32,.15);
    border: 1px solid rgba(255,82,88,.25);
    color: #ff9b9f !important;
    font-size: 10px !important;
    font-weight: 800;
    letter-spacing: .13em;
}
.pb-header-promise strong {
    font-size: 21px;
    line-height: 1.15;
    color: #fff;
    letter-spacing: -.015em;
}
.pb-header-promise > span:last-child {
    color: #cbd2dc;
    font-size: 13px;
}

/* ---------- Account / Cart ---------- */
.pb-header-actions {
    gap: 10px;
    align-items: stretch;
}
.pb-header-action {
    min-height: 64px;
    border-radius: 8px;
    box-shadow: none;
}
.pb-account {
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.16);
    padding: 9px 14px;
}
.pb-account:hover {
    background: rgba(255,255,255,.11);
    border-color: rgba(255,255,255,.30);
}
.pb-account .pb-action-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
}
.pb-account .pb-action-icon svg {
    width: 20px;
    height: 20px;
}
.pb-account .pb-action-copy small { color: #aeb8c5; }

.pb-cart {
    position: relative;
    min-width: 190px;
    padding: 9px 14px 9px 15px;
    border: 1px solid rgba(255,255,255,.14);
    background: linear-gradient(135deg, var(--pb-red) 0%, #ed2d1d 52%, var(--pb-orange) 100%);
    box-shadow: 0 8px 20px rgba(184,20,20,.30);
    overflow: visible;
}
.pb-cart::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 7px;
    border: 1px solid rgba(255,255,255,.13);
    pointer-events: none;
}
.pb-cart:hover {
    background: linear-gradient(135deg, #bc1118 0%, var(--pb-red) 46%, #e65d00 100%);
    border-color: rgba(255,255,255,.28);
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(184,20,20,.38);
}
.pb-cart .pb-cart-icon {
    width: 37px;
    height: 37px;
    flex-basis: 37px;
    border-radius: 7px;
    background: rgba(0,0,0,.18);
}
.pb-cart .pb-action-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}
.pb-cart .pb-action-copy small { color: rgba(255,255,255,.82); }
.pb-cart .pb-action-copy strong { font-size: 14px; }
.pb-cart-count {
    top: -10px;
    right: -10px;
    min-width: 22px;
    height: 22px;
    border: 2px solid var(--pb-navy);
    background: #fff;
    color: var(--pb-red);
    box-shadow: 0 2px 6px rgba(0,0,0,.20);
    font-size: 10px;
}
.pb-cart-arrow {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
}
.pb-cart-arrow svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---------- Main navigation ---------- */
.pb-main-nav {
    background: #f3f5f7;
    border-bottom: 0;
    box-shadow: 0 4px 12px rgba(16,21,29,.10);
}
.pb-nav-row { min-height: 54px; }
.pb-nav-kicker {
    min-height: 54px;
    padding: 0 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--pb-red), var(--pb-orange));
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    border: 0;
}
.pb-shop-menu > li {
    border-right: 1px solid #dfe3e8;
}
.pb-shop-menu > li:first-child { border-left: 0; }
.pb-shop-menu > li > a {
    min-height: 54px;
    padding: 0 17px;
    color: #202631;
    background: transparent;
    font-size: 13px;
    font-weight: 800;
    position: relative;
}
.pb-shop-menu > li > a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--pb-red), var(--pb-orange));
    transition: transform .16s ease;
}
.pb-shop-menu > li > a:hover,
.pb-shop-menu > li.current-menu-item > a,
.pb-shop-menu > li.current-menu-parent > a {
    background: #fff;
    color: var(--pb-red);
}
.pb-shop-menu > li > a:hover::after,
.pb-shop-menu > li.current-menu-item > a::after,
.pb-shop-menu > li.current-menu-parent > a::after { transform: scaleX(1); }
.pb-shop-menu .sub-menu {
    border: 1px solid #dfe3e8;
    border-top: 3px solid var(--pb-red);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 14px 34px rgba(16,21,29,.18);
    overflow: hidden;
}
.pb-shop-menu .sub-menu a { padding: 11px 17px; }
.pb-shop-menu .sub-menu a:hover {
    background: #fff4f1;
    color: var(--pb-red);
}

/* ---------- Small colored service strip ---------- */
.pb-trust-strip {
    background: #fff;
    border-bottom: 1px solid #e6e9ed;
}
.pb-trust-grid {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    color: #59616d;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .035em;
}
.pb-trust-grid > span { display: inline-flex; align-items: center; gap: 8px; }
.pb-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(0,0,0,.04);
}
.pb-dot-red { background: var(--pb-red); }
.pb-dot-orange { background: var(--pb-orange); }
.pb-dot-dark { background: var(--pb-navy); }

/* ---------- Content / headings ---------- */
.pb-page-shell { padding-top: 30px; }
.woocommerce-products-header__title.page-title,
.woocommerce h1.page-title {
    position: relative;
    margin: 0 0 20px;
    padding: 0 0 12px;
    font-size: 25px;
    color: var(--pb-ink);
}
.woocommerce-products-header__title.page-title::after,
.woocommerce h1.page-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 74px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--pb-red), var(--pb-orange));
}
.woocommerce-products-header .term-description,
.woocommerce-products-header .page-description {
    color: #46505c;
    max-width: 1260px;
}

/* ---------- Sidebar / filters ---------- */
.pb-sidebar-title {
    padding: 15px 17px;
    border-radius: 7px 7px 0 0;
    background: linear-gradient(135deg, var(--pb-navy), #27364b);
    border-left: 5px solid var(--pb-red);
    font-size: 15px;
    letter-spacing: .01em;
}
.pb-shop-sidebar .widget,
.pb-shop-sidebar .pb-sidebar-fallback {
    border: 1px solid var(--pb-line);
    border-radius: 7px;
    box-shadow: 0 4px 14px rgba(16,21,29,.04);
}
.pb-shop-sidebar .widget-title,
.pb-shop-sidebar h2,
.pb-shop-sidebar h3 { color: var(--pb-ink); }
.pb-shop-sidebar a:hover { color: var(--pb-red); }
.woocommerce .widget_price_filter .ui-slider .ui-slider-range,
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle { background: var(--pb-red); }

/* ---------- Category cards ---------- */
.pb-category-tiles {
    padding: 15px;
    border: 1px solid #e1e5ea;
    border-radius: 9px;
    background: linear-gradient(180deg, #f8f9fb 0%, #f2f4f6 100%);
}
.pb-category-tile {
    border: 1px solid #dfe3e8;
    border-radius: 7px;
    box-shadow: 0 2px 7px rgba(16,21,29,.035);
    position: relative;
    overflow: hidden;
}
.pb-category-tile::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--pb-red), var(--pb-orange));
    opacity: 0;
    transition: opacity .15s ease;
}
.pb-category-tile:hover {
    border-color: #c8cdd3;
    box-shadow: 0 8px 20px rgba(16,21,29,.10);
    transform: translateY(-1px);
}
.pb-category-tile:hover::before { opacity: 1; }
.pb-category-tile-name { color: var(--pb-ink); }
.pb-category-tile-count { color: var(--pb-red); font-weight: 700; }

/* ---------- Toolbar ---------- */
.woocommerce .woocommerce-result-count {
    color: #727b86;
    font-weight: 600;
}
.woocommerce .woocommerce-ordering select {
    border: 1px solid #cfd5dc;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(16,21,29,.04);
}

/* ---------- Product cards ---------- */
.woocommerce ul.products { gap: 18px; }
.woocommerce ul.products li.product {
    padding: 13px 13px 15px !important;
    border: 1px solid #dfe3e8;
    border-radius: 9px;
    box-shadow: 0 3px 12px rgba(16,21,29,.045);
    overflow: hidden;
}
.woocommerce ul.products li.product:hover {
    border-color: #c8cdd3;
    box-shadow: 0 12px 28px rgba(16,21,29,.13);
    transform: translateY(-3px);
}
.woocommerce ul.products li.product a img {
    height: 225px !important;
    padding: 10px;
    border-radius: 7px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}
.pb-loop-brand {
    color: var(--pb-red);
    font-size: 10px;
    letter-spacing: .06em;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #202631;
    font-weight: 750;
}
.woocommerce ul.products li.product .price {
    color: var(--pb-ink) !important;
    font-size: 23px !important;
}
.woocommerce ul.products li.product .price ins { color: var(--pb-red) !important; }
.woocommerce span.onsale {
    top: 12px;
    left: 12px;
    padding: 7px 10px;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--pb-red), var(--pb-orange));
    box-shadow: 0 3px 9px rgba(215,25,32,.20);
}
.woocommerce ul.products li.product .button {
    min-height: 44px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--pb-red) 0%, #e83b1d 55%, var(--pb-orange) 100%);
    box-shadow: 0 4px 11px rgba(215,25,32,.18);
    font-weight: 800;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.woocommerce ul.products li.product .button:hover {
    background: linear-gradient(135deg, var(--pb-red-dark), var(--pb-red) 55%, #e45e00 100%);
    transform: translateY(-1px);
    box-shadow: 0 7px 15px rgba(215,25,32,.26);
}

/* ---------- Generic Woo buttons ---------- */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    border-radius: 6px;
    background: var(--pb-navy);
    color: #fff;
    box-shadow: none;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    background: var(--pb-red);
}

/* Strong cart/checkout CTAs */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #place_order,
.single-product .single_add_to_cart_button {
    background: linear-gradient(135deg, var(--pb-red), var(--pb-orange)) !important;
    border-radius: 7px !important;
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(215,25,32,.22) !important;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout #place_order:hover,
.single-product .single_add_to_cart_button:hover {
    background: linear-gradient(135deg, var(--pb-red-dark), #e75d00) !important;
}

/* ---------- Mobile menu ---------- */
.pb-menu-toggle {
    min-height: 48px;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--pb-navy), #27364b);
    color: #fff;
    border-bottom: 3px solid var(--pb-red);
}
.pb-menu-bars { width: 20px; display: inline-flex; flex-direction: column; gap: 3px; }
.pb-menu-bars i { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; }
.pb-filter-toggle {
    border-radius: 6px;
    background: linear-gradient(135deg, var(--pb-navy), #27364b);
    border-left: 5px solid var(--pb-red);
}

/* ---------- Responsive refinements ---------- */
@media (max-width: 1180px) {
    .pb-header-grid {
        grid-template-columns: minmax(180px, 215px) minmax(250px, 1fr) auto;
        gap: 20px;
    }
    .pb-header-promise { padding-left: 20px; }
    .pb-header-promise strong { font-size: 17px; }
    .pb-header-promise > span:last-child { font-size: 11px; }
    .pb-cart { min-width: 172px; }
    .pb-account .pb-action-copy { display: none; }
    .pb-account { padding: 9px 11px; }
}

@media (max-width: 900px) {
    .pb-header-grid {
        grid-template-columns: 1fr auto;
        min-height: 82px;
        gap: 12px;
    }
    .pb-header-promise { display: none; }
    .pb-brand img,
    .pb-brand .custom-logo { max-width: 155px; max-height: 55px; }
    .pb-account { display: none; }
    .pb-cart { min-width: 0; min-height: 50px; padding: 7px 11px; }
    .pb-cart .pb-action-copy { display: flex; }
    .pb-cart-arrow { display: none; }
    .pb-trust-grid { justify-content: flex-start; overflow-x: auto; gap: 22px; white-space: nowrap; }
}

@media (max-width: 800px) {
    .pb-main-nav { background: #fff; }
    .pb-nav-row { display: block; min-height: 0; }
    .pb-menu-toggle { display: flex; width: 100%; padding: 0 15px; text-align: left; }
    .pb-shop-menu > li > a::after { display: none; }
    .pb-shop-menu > li > a:hover { background: #fff4f1; }
    .pb-trust-strip { display: none; }
}

@media (max-width: 520px) {
    .pb-topbar .pb-wrap { min-height: 32px; }
    .pb-topbar-left { width: 100%; justify-content: space-between; }
    .pb-header-grid { min-height: 74px; }
    .pb-brand a.custom-logo-link,
    .pb-brand .pb-default-logo { padding: 5px 8px; border-radius: 6px; }
    .pb-brand img,
    .pb-brand .custom-logo { max-width: 132px; max-height: 47px; }
    .pb-cart { min-height: 46px; padding: 6px 9px; }
    .pb-cart .pb-action-copy { display: none; }
    .pb-cart .pb-cart-icon { width: 34px; height: 34px; flex-basis: 34px; }
    .pb-cart-count { right: -8px; }
    .woocommerce-products-header__title.page-title,
    .woocommerce h1.page-title { font-size: 21px; }
}


/* ============================================================
   Product navigation / breadcrumb
============================================================ */
.pb-product-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 22px;
    padding: 12px 14px;
    background: #f6f8fa;
    border: 1px solid var(--pb-line);
    border-left: 4px solid var(--pb-red);
    border-radius: var(--pb-radius);
}
.pb-product-nav .woocommerce-breadcrumb {
    flex: 1 1 auto;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--pb-muted);
    font-size: 13px;
    line-height: 1.45;
}
.pb-product-nav .woocommerce-breadcrumb a {
    color: var(--pb-text);
    font-weight: 600;
    text-decoration: none;
}
.pb-product-nav .woocommerce-breadcrumb a:hover {
    color: var(--pb-red);
}
.pb-product-back {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 15px;
    background: linear-gradient(135deg, var(--pb-red), var(--pb-orange));
    color: #fff !important;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 5px 14px rgba(215,25,32,.18);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none !important;
    white-space: nowrap;
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.pb-product-back:hover {
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 7px 18px rgba(215,25,32,.25);
    filter: brightness(.97);
}
.pb-product-back svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

@media (max-width: 767px) {
    .pb-product-nav {
        display: block;
        margin-bottom: 14px;
        padding: 10px 11px;
        border-left-width: 3px;
    }
    .pb-product-nav .woocommerce-breadcrumb {
        overflow: hidden;
        margin-bottom: 9px !important;
        font-size: 11px;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .pb-product-back {
        width: 100%;
        min-height: 38px;
        padding: 8px 12px;
        font-size: 12px;
    }
}


/* ============================================================
1.6 – Shop-Kategorien einmalig + Zurück-Button auf Kategorien
============================================================ */

/* Auf der Haupt-Shopseite zeigt das Theme keine eigene zweite
   Kategorie-Kachelreihe mehr. Unterkategorien bleiben in
   Produktkategorien erhalten. */
body.post-type-archive-product .pb-category-tiles {
    display: none !important;
}

.pb-category-back-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 14px;
}

.pb-category-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid #d7dce2;
    border-radius: 6px;
    background: #ffffff;
    color: var(--pb-ink);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 2px 7px rgba(16,21,29,.04);
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}

.pb-category-back svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: currentColor;
}

.pb-category-back:hover,
.pb-category-back:focus {
    background: var(--pb-red);
    border-color: var(--pb-red);
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .pb-category-back-nav {
        margin-bottom: 10px;
    }

    .pb-category-back {
        width: 100%;
        justify-content: flex-start;
        min-height: 42px;
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* ============================================================
1.7 – FILTER & KATEGORIEN: MAXIMALER KONTRAST / LESBARKEIT
============================================================ */

/* Haupttitel der Filterspalte */
.pb-shop-sidebar .pb-sidebar-title {
    background: linear-gradient(135deg, #111820 0%, #243247 100%) !important;
    color: #ffffff !important;
    border-left: 5px solid var(--pb-red) !important;
    text-shadow: none !important;
}

/* Widget-Karten */
.pb-shop-sidebar .widget,
.pb-shop-sidebar .pb-sidebar-fallback {
    background: #ffffff !important;
    color: #1b222c !important;
    border: 1px solid #d8dee6 !important;
}

/* Überschriften in Filtern */
.pb-shop-sidebar .widget-title,
.pb-shop-sidebar .widget h2,
.pb-shop-sidebar .widget h3,
.pb-shop-sidebar .pb-sidebar-fallback h2,
.pb-shop-sidebar .pb-sidebar-fallback h3 {
    color: #111820 !important;
    background: transparent !important;
    font-weight: 800 !important;
    opacity: 1 !important;
}

/* Kategorien, Filterlinks und Zähler */
.pb-shop-sidebar a,
.pb-shop-sidebar li,
.pb-shop-sidebar label,
.pb-shop-sidebar span,
.pb-shop-sidebar .count,
.pb-shop-sidebar .woocommerce-widget-layered-nav-list__item a,
.pb-shop-sidebar .product-categories a {
    color: #26313d !important;
    opacity: 1 !important;
}

.pb-shop-sidebar a:hover,
.pb-shop-sidebar .current-cat > a,
.pb-shop-sidebar .chosen > a,
.pb-shop-sidebar .woocommerce-widget-layered-nav-list__item--chosen a {
    color: var(--pb-red) !important;
    font-weight: 700 !important;
}

/* Aktuelle Kategorie klar hervorheben */
.pb-shop-sidebar .current-cat,
.pb-shop-sidebar .chosen,
.pb-shop-sidebar .woocommerce-widget-layered-nav-list__item--chosen {
    background: #fff3f3 !important;
    border-radius: 4px !important;
}

/* Checkboxen und Eingaben */
.pb-shop-sidebar input[type="checkbox"],
.pb-shop-sidebar input[type="radio"] {
    accent-color: var(--pb-red) !important;
}

.pb-shop-sidebar input[type="text"],
.pb-shop-sidebar input[type="search"],
.pb-shop-sidebar input[type="number"],
.pb-shop-sidebar select {
    background: #ffffff !important;
    color: #111820 !important;
    border: 1px solid #bfc7d1 !important;
}

/* Preisfilter */
.pb-shop-sidebar .price_label,
.pb-shop-sidebar .price_slider_amount,
.pb-shop-sidebar .woocommerce-Price-amount,
.pb-shop-sidebar .woocommerce-Price-currencySymbol {
    color: #111820 !important;
}

.pb-shop-sidebar .button,
.pb-shop-sidebar button {
    background: #111820 !important;
    color: #ffffff !important;
    border-color: #111820 !important;
}

.pb-shop-sidebar .button:hover,
.pb-shop-sidebar button:hover {
    background: var(--pb-red) !important;
    color: #ffffff !important;
    border-color: var(--pb-red) !important;
}

/* Kategorienliste besser trennen */
.pb-shop-sidebar li {
    border-bottom-color: #e7ebef !important;
}

/* Mobile Filterbutton ebenfalls kontrastreich */
.pb-filter-toggle {
    background: #111820 !important;
    color: #ffffff !important;
    border: 1px solid #111820 !important;
}
.pb-filter-toggle:hover,
.pb-filter-toggle:focus {
    background: var(--pb-red) !important;
    color: #ffffff !important;
}



/* 1.7 – Wenn kein WordPress-Logo gesetzt ist, kein altes Bild erzwingen */
.pb-brand .pb-site-name {
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    color: #ffffff !important;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.03em;
    text-decoration: none !important;
}
.pb-brand .pb-site-name:hover { color: var(--pb-orange) !important; }
@media (max-width: 767px) {
    .pb-brand .pb-site-name { min-height: 44px; font-size: 20px; }
}

/* ============================================================
1.8 – VERWALTBARE WERBEBANNER
SEO-/Performance-freundlich, ohne Slider oder Layout-Sprünge
============================================================ */

.pb-ad-banner {
    width: 100%;
    margin: 18px 0 26px;
    overflow: hidden;
    background: #111820;
    border: 1px solid #dce2e8;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(16,21,29,.08);
}

.pb-ad-banner-bottom {
    margin-top: 30px;
    margin-bottom: 8px;
}

.pb-ad-banner-link {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    color: #ffffff !important;
    text-decoration: none !important;
    background: #111820;
}

.pb-ad-banner-media {
    display: block;
    width: 100%;
    aspect-ratio: 40 / 9;
    overflow: hidden;
    background: #111820;
}

.pb-ad-banner-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.pb-ad-banner-img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    object-fit: cover !important;
    object-position: center !important;
}

.pb-ad-banner.has-copy .pb-ad-banner-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(8,12,18,.78) 0%, rgba(8,12,18,.54) 38%, rgba(8,12,18,.08) 78%);
}

.pb-ad-banner.has-copy .pb-ad-banner-media {
    position: relative;
}

.pb-ad-banner-copy {
    position: absolute;
    z-index: 2;
    left: clamp(20px, 3vw, 48px);
    top: 50%;
    width: min(560px, 58%);
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0,0,0,.42);
}

.pb-ad-banner-headline {
    display: block;
    color: #ffffff !important;
    font-size: clamp(22px, 2.25vw, 38px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -.025em;
}

.pb-ad-banner-text {
    display: block;
    max-width: 520px;
    color: #f1f4f7 !important;
    font-size: clamp(13px, 1.05vw, 16px);
    line-height: 1.45;
    font-weight: 600;
}

.pb-ad-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    margin-top: 5px;
    padding: 9px 14px;
    background: linear-gradient(135deg, var(--pb-red), var(--pb-orange));
    color: #ffffff !important;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(215,25,32,.25);
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    text-shadow: none;
}

.pb-ad-banner-link:hover .pb-ad-banner-img {
    transform: scale(1.012);
}

.pb-ad-banner-img {
    transition: transform .25s ease;
}

.pb-ad-banner-link:hover .pb-ad-banner-cta {
    filter: brightness(1.06);
}

@media (max-width: 767px) {
    .pb-ad-banner {
        margin: 14px 0 20px;
        border-radius: 8px;
        box-shadow: 0 5px 16px rgba(16,21,29,.08);
    }

    .pb-ad-banner-bottom {
        margin-top: 22px;
    }

    .pb-ad-banner-media {
        aspect-ratio: 8 / 5;
    }

    .pb-ad-banner.has-copy .pb-ad-banner-media::after {
        background: linear-gradient(0deg, rgba(8,12,18,.84) 0%, rgba(8,12,18,.54) 48%, rgba(8,12,18,.08) 82%);
    }

    .pb-ad-banner-copy {
        left: 16px;
        right: 16px;
        top: auto;
        bottom: 16px;
        width: auto;
        transform: none;
        gap: 6px;
    }

    .pb-ad-banner-headline {
        font-size: clamp(20px, 7vw, 29px);
    }

    .pb-ad-banner-text {
        max-width: none;
        font-size: 13px;
        line-height: 1.4;
    }

    .pb-ad-banner-cta {
        min-height: 38px;
        padding: 9px 12px;
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pb-ad-banner-img {
        transition: none;
    }
}

/* ============================================================
SHOP ANGEBOTS-SLIDER
============================================================ */
.pb-offer-section {
    margin: 26px 0 34px;
    padding: 22px;
    border: 1px solid #e1e5ea;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
    box-shadow: 0 8px 24px rgba(16,21,29,.06);
    overflow: hidden;
}
.pb-offer-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}
.pb-offer-heading-wrap { min-width: 0; }
.pb-offer-title {
    margin: 0;
    color: var(--pb-ink);
    font-size: 23px;
    line-height: 1.2;
    font-weight: 900;
}
.pb-offer-title::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    margin-top: 9px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--pb-red), var(--pb-orange));
}
.pb-offer-intro {
    margin: 9px 0 0;
    max-width: 760px;
    color: #606975;
    font-size: 13px;
    line-height: 1.55;
}
.pb-offer-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex: 0 0 auto;
}
.pb-offer-all {
    color: var(--pb-red);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}
.pb-offer-all:hover { color: var(--pb-orange); }
.pb-offer-arrows { display: flex; gap: 7px; }
.pb-offer-arrow {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #d7dce2;
    border-radius: 50%;
    background: #fff;
    color: var(--pb-ink);
    font-size: 27px;
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(16,21,29,.06);
}
.pb-offer-arrow:hover {
    border-color: var(--pb-red);
    background: var(--pb-red);
    color: #fff;
}
.pb-offer-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    scrollbar-color: #c7ccd2 transparent;
    -webkit-overflow-scrolling: touch;
}
.pb-offer-track::-webkit-scrollbar { height: 7px; }
.pb-offer-track::-webkit-scrollbar-track { background: transparent; }
.pb-offer-track::-webkit-scrollbar-thumb { background: #c7ccd2; border-radius: 20px; }
.pb-offer-card {
    flex: 0 0 clamp(210px, 19vw, 265px);
    min-width: 0;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #e0e4e9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(16,21,29,.045);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.pb-offer-card:hover {
    transform: translateY(-2px);
    border-color: #cbd1d8;
    box-shadow: 0 8px 22px rgba(16,21,29,.10);
}
.pb-offer-media {
    position: relative;
    display: block;
    height: 190px;
    padding: 12px;
    background: #fff;
    text-decoration: none;
}
.pb-offer-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0;
}
.pb-offer-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 6px 8px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--pb-red), var(--pb-orange));
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.pb-offer-card-body {
    display: flex;
    flex-direction: column;
    min-height: 150px;
    padding: 13px 14px 15px;
    border-top: 1px solid #edf0f2;
}
.pb-offer-product-title {
    margin: 0 0 9px;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
}
.pb-offer-product-title a { color: #202631; text-decoration: none; }
.pb-offer-product-title a:hover { color: var(--pb-red); }
.pb-offer-price {
    margin-top: auto;
    color: var(--pb-ink);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
}
.pb-offer-price del {
    margin-right: 5px;
    color: #89919b;
    font-size: 12px;
    font-weight: 500;
}
.pb-offer-price ins { color: var(--pb-red); text-decoration: none; }
.pb-offer-product-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 11px;
    color: var(--pb-red);
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .035em;
}
.pb-offer-product-link:hover { color: var(--pb-orange); }

@media (max-width: 767px) {
    .pb-offer-section {
        margin: 18px -2px 26px;
        padding: 17px 12px 14px;
        border-radius: 9px;
    }
    .pb-offer-head {
        align-items: flex-start;
        margin-bottom: 14px;
    }
    .pb-offer-title { font-size: 19px; }
    .pb-offer-intro { font-size: 12px; }
    .pb-offer-all { display: none; }
    .pb-offer-arrows { display: none; }
    .pb-offer-track {
        gap: 10px;
        margin-right: -12px;
        padding-right: 18px;
        scroll-padding-left: 0;
    }
    .pb-offer-card { flex-basis: min(72vw, 245px); }
    .pb-offer-media { height: 165px; }
    .pb-offer-card-body { min-height: 138px; padding: 11px 12px 13px; }
    .pb-offer-product-title { font-size: 13px; }
    .pb-offer-price { font-size: 17px; }
}
