
/* =========================================================
   PROMORIA LOCAL LANDINGPAGES – UX BUILDER 6.2
   Prefix: pdb-local-
   Designsystem: WSK Landingpage Designsystem v1.3
   Stand: 2026-08-10 · Self-Service + ID® Identity Spotlight
   ========================================================= */
.pdb-local-landing,
.pdb-local-landing * {
    box-sizing: border-box;
}

.pdb-local-landing {
    --pdb-orange: #e75303;
    --pdb-orange-dark: #ca4900;
    --pdb-dark: #1f1f1f;
    --pdb-text: #5e5e5e;
    --pdb-muted: #8b8b8b;
    --pdb-border: #e4e5e7;
    --pdb-light: #f6f7f8;
    --pdb-card: #ffffff;

    width: min(1270px, calc(100% - 30px));
    margin: 22px auto 65px;
    color: var(--pdb-dark);
    font-family: inherit;
}

.pdb-local-landing a {
    color: inherit;
    text-decoration: none;
}

.pdb-local-landing img {
    display: block;
    max-width: 100%;
}

.pdb-local-main-grid {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.pdb-local-main {
    min-width: 0;
}

/* =========================================================
   SIDEBAR – ORIGINAL WOOCOMMERCE / FLATSOME SHOP SIDEBAR
   ========================================================= */
.pdb-local-sidebar {
    position: sticky;
    top: 100px;
    min-width: 0;
}

/*
 * WICHTIG:
 * Die eigentlichen Widget-Styles kommen bewusst aus der bereits
 * vorhandenen globalen WSK-CSS für #shop-sidebar / .shop-sidebar.
 * Dadurch sieht die Sidebar hier genauso aus wie im WooCommerce-Shop.
 */
.pdb-local-sidebar .sidebar-inner,
.pdb-local-sidebar .widget-area {
    width: 100% !important;
}

.pdb-local-sidebar .widget:last-child {
    margin-bottom: 0 !important;
}

/* =========================================================
   MOBILE SIDEBAR
   ========================================================= */
.pdb-local-mobile-navbar {
    display: none;
    margin-bottom: 12px;
}

.pdb-local-mobile-navbtn {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 12px;
    border: 1px solid var(--pdb-border);
    border-radius: 6px;
    background: #fff;
    color: #252525;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.pdb-local-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99997;
    display: none;
    background: rgba(0,0,0,.52);
}

.pdb-local-backdrop.is-open {
    display: block;
}

.pdb-local-mobile-close {
    display: none;
    width: 34px;
    height: 34px;
    margin: 0 0 12px auto;
    border: 1px solid #dedede;
    border-radius: 50%;
    background: #fff;
    color: #222;
    font-family: inherit;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

/* =========================================================
   BREADCRUMB
   ========================================================= */
.pdb-local-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin: 0 0 9px;
    color: #a0a0a0;
    font-size: 10.8px;
    line-height: 1.3;
}

.pdb-local-breadcrumb a:hover {
    color: var(--pdb-orange);
}

.pdb-local-breadcrumb strong {
    color: #555;
    font-weight: 700;
}

/* =========================================================
   HERO
   ========================================================= */
.pdb-local-hero {
    position: relative;
    min-height: 285px;
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid var(--pdb-border);
    border-radius: 7px;
    background: #f2f4f5;
}

.pdb-local-hero-media {
    position: absolute;
    inset: 0 0 0 43%;
    z-index: 1;
}

.pdb-local-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.pdb-local-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(247,248,249,1) 0%,
        rgba(247,248,249,.98) 32%,
        rgba(247,248,249,.85) 47%,
        rgba(247,248,249,.16) 67%,
        rgba(247,248,249,0) 100%
    );
}

.pdb-local-hero-content {
    position: relative;
    z-index: 3;
    width: 58%;
    padding: 31px 27px 23px;
}

.pdb-local-hero h1 {
    max-width: 620px;
    margin: 0 0 10px;
    color: #1e1e1e;
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -.025em;
    font-weight: 800;
}

.pdb-local-hero-lead {
    max-width: 560px;
    margin: 0 0 16px;
    color: var(--pdb-text);
    font-size: 14px;
    line-height: 1.55;
}

.pdb-local-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.pdb-local-btn {
    min-height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 14px;
    border: 1px solid var(--pdb-orange);
    border-radius: 4px;
    background: var(--pdb-orange);
    color: #fff !important;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.pdb-local-btn:hover {
    border-color: var(--pdb-orange-dark);
    background: var(--pdb-orange-dark);
    color: #fff !important;
}

.pdb-local-btn--secondary {
    border-color: #cacdd0;
    background: #fff;
    color: #252525 !important;
}

.pdb-local-btn--secondary:hover {
    border-color: var(--pdb-orange);
    background: #fff;
    color: var(--pdb-orange) !important;
}

.pdb-local-mini-usps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 15px;
    color: #5f5f5f;
    font-size: 10.6px;
    line-height: 1.35;
}

.pdb-local-mini-usps span::before {
    content: "✓";
    margin-right: 5px;
    color: var(--pdb-orange);
    font-weight: 900;
}

/* =========================================================
   USP STRIP
   ========================================================= */
.pdb-local-usps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid var(--pdb-border);
    border-radius: 7px;
    background: #fff;
}

.pdb-local-usp {
    min-height: 77px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    padding: 14px 17px;
    border-right: 1px solid var(--pdb-border);
}

.pdb-local-usp:last-child {
    border-right: 0;
}

.pdb-local-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff0e7;
    color: var(--pdb-orange);
}

.pdb-local-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pdb-local-usp strong {
    display: block;
    margin: 0 0 2px;
    color: #272727;
    font-size: 13.2px;
    line-height: 1.25;
    font-weight: 800;
}

.pdb-local-usp small {
    display: block;
    color: #858585;
    font-size: 10.6px;
    line-height: 1.4;
}

/* =========================================================
   SECTION HEADINGS
   ========================================================= */
.pdb-local-section {
    margin-bottom: 20px;
}

.pdb-local-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin: 0 0 10px;
}

.pdb-local-section-head h2 {
    margin: 0;
    color: #242424;
    font-size: 18.5px;
    line-height: 1.25;
    font-weight: 800;
}

.pdb-local-section-link {
    color: var(--pdb-orange) !important;
    font-size: 10.4px;
    line-height: 1.3;
    font-weight: 800;
    white-space: nowrap;
}

/* =========================================================
   CATEGORY CARDS
   ========================================================= */
.pdb-local-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 11px;
}

.pdb-local-category-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--pdb-border);
    border-radius: 7px;
    background: #fff;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pdb-local-category-card:hover {
    transform: translateY(-3px);
    border-color: #d9dade;
    box-shadow: 0 8px 22px rgba(0,0,0,.07);
}

.pdb-local-category-media {
    height: 180px;
    overflow: hidden;
    background: #f3f4f5;
}

.pdb-local-category-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdb-local-category-body {
    padding: 12px 11px 13px;
}

.pdb-local-category-body h3 {
    margin: 0 0 5px;
    color: #252525;
    font-size: 14.2px;
    line-height: 1.25;
    font-weight: 800;
}

.pdb-local-category-body p {
    min-height: 42px;
    margin: 0 0 7px;
    color: #727272;
    font-size: 10.4px;
    line-height: 1.45;
}

.pdb-local-card-link {
    color: var(--pdb-orange) !important;
    font-size: 10.8px;
    line-height: 1.25;
    font-weight: 800;
}

/* =========================================================
   ACCESSORIES BAND
   ========================================================= */
.pdb-local-accessories {
    display: grid;
    grid-template-columns: 155px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    margin-top: 11px;
    overflow: hidden;
    border: 1px solid var(--pdb-border);
    border-radius: 7px;
    background: #fff;
}

.pdb-local-accessories-media {
    height: 112px;
    background: #f4f5f6;
}

.pdb-local-accessories-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdb-local-accessories-copy {
    padding: 12px 0;
}

.pdb-local-accessories-copy h3 {
    margin: 0 0 5px;
    font-size: 14.2px;
    line-height: 1.25;
    font-weight: 800;
}

.pdb-local-accessories-copy p {
    margin: 0;
    color: #747474;
    font-size: 10.6px;
    line-height: 1.5;
}

.pdb-local-accessories-action {
    padding-right: 16px;
}

/* =========================================================
   SELF-SERVICE / BESTELLHILFE
   ========================================================= */

.pdb-local-selfservice {
    margin-bottom: 20px;
    padding: 16px;
    border: 1px solid var(--pdb-border);
    border-radius: 7px;
    background: #f7f8f9;
}

.pdb-local-selfservice-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 11px;
}

.pdb-local-selfservice-head h2 {
    margin: 0 0 4px;
    color: #252525;
    font-size: 18.5px;
    line-height: 1.25;
    font-weight: 800;
}

.pdb-local-selfservice-head p {
    max-width: 650px;
    margin: 0;
    color: #707070;
    font-size: 10.8px;
    line-height: 1.55;
}

.pdb-local-selfservice-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 9px;
}

.pdb-local-step {
    position: relative;
    min-height: 126px;
    padding: 13px 12px 12px;
    border: 1px solid var(--pdb-border);
    border-radius: 6px;
    background: #fff;
}

.pdb-local-step-number {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    margin-bottom: 8px;
    border-radius: 50%;
    background: #fff0e7;
    color: var(--pdb-orange);
    font-size: 10px;
    font-weight: 900;
}

.pdb-local-step h3 {
    margin: 0 0 5px;
    color: #2a2a2a;
    font-size: 12.4px;
    line-height: 1.3;
    font-weight: 800;
}

.pdb-local-step p {
    margin: 0;
    color: #737373;
    font-size: 9.8px;
    line-height: 1.5;
}

.pdb-local-choice-help {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 9px;
}

.pdb-local-choice {
    padding: 11px 12px;
    border: 1px solid var(--pdb-border);
    border-radius: 6px;
    background: #fff;
}

.pdb-local-choice strong {
    display: block;
    margin-bottom: 4px;
    color: #252525;
    font-size: 11px;
    font-weight: 800;
}

.pdb-local-choice p {
    margin: 0;
    color: #737373;
    font-size: 9.8px;
    line-height: 1.5;
}

.pdb-local-choice a {
    color: var(--pdb-orange) !important;
    font-weight: 800;
}

/* =========================================================
   DARK CONFIG CTA
   ========================================================= */
.pdb-local-config-cta {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    margin-bottom: 23px;
    padding: 18px 20px;
    border-radius: 7px;
    background: linear-gradient(100deg, #282828, #181818);
    color: #fff;
}

.pdb-local-config-cta .pdb-local-icon {
    width: 46px;
    height: 46px;
    background: rgba(231,83,3,.14);
    border: 1px solid rgba(231,83,3,.38);
}

.pdb-local-config-eyebrow {
    margin: 0 0 3px;
    color: #ff8d51;
    font-size: 9.8px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.pdb-local-config-copy h2 {
    margin: 0 0 3px;
    color: #fff;
    font-size: 20.5px;
    line-height: 1.2;
    font-weight: 800;
}

.pdb-local-config-copy p {
    margin: 0;
    color: #bababa;
    font-size: 11px;
    line-height: 1.45;
}

.pdb-local-config-action {
    text-align: center;
}

.pdb-local-config-note {
    display: block;
    margin-top: 5px;
    color: #8f8f8f;
    font-size: 8.8px;
    line-height: 1.3;
}

/* =========================================================
   WOOCOMMERCE PRODUCT GRID
   ========================================================= */
.pdb-local-products {
    margin-bottom: 22px;
}

.pdb-local-products .woocommerce ul.products,
.pdb-local-products .woocommerce .products,
.pdb-local-products ul.products {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 9px !important;
    margin: 0 !important;
}

.pdb-local-products .woocommerce ul.products::before,
.pdb-local-products .woocommerce ul.products::after,
.pdb-local-products ul.products::before,
.pdb-local-products ul.products::after {
    display: none !important;
}

.pdb-local-products .woocommerce ul.products li.product,
.pdb-local-products ul.products li.product,
.pdb-local-products .product-small {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid var(--pdb-border);
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
}

.pdb-local-products .box,
.pdb-local-products .box-text,
.pdb-local-products .box-image {
    box-shadow: none !important;
}

.pdb-local-products .box-image,
.pdb-local-products .product-small .box-image,
.pdb-local-products ul.products li.product > a:first-child {
    background: #fff;
}

.pdb-local-products .box-image img,
.pdb-local-products ul.products li.product img {
    width: 100% !important;
    height: 122px !important;
    margin: 0 !important;
    padding: 6px !important;
    object-fit: contain !important;
    background: #fff;
}

.pdb-local-products .box-text,
.pdb-local-products ul.products li.product .woocommerce-loop-product__title,
.pdb-local-products ul.products li.product .price {
    text-align: left;
}

.pdb-local-products .box-text {
    padding: 8px 8px 9px !important;
}

.pdb-local-products .name,
.pdb-local-products .woocommerce-loop-product__title {
    margin: 0 0 4px !important;
    color: #303030 !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
}

.pdb-local-products .price,
.pdb-local-products .price span,
.pdb-local-products .amount {
    color: #242424 !important;
    font-size: 10.8px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
}

.pdb-local-products .add-to-cart-button,
.pdb-local-products .button,
.pdb-local-products .badge-container {
    font-size: 9px !important;
}

/* =========================================================
   MORE PRODUCTS – 4 COLUMNS DESKTOP
   ========================================================= */
.pdb-local-products--more {
    margin-top: 4px;
    margin-bottom: 26px;
    padding-top: 2px;
}

.pdb-local-products--more .woocommerce ul.products,
.pdb-local-products--more .woocommerce .products,
.pdb-local-products--more ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 11px !important;
}

.pdb-local-products-intro {
    max-width: 720px;
    margin: -2px 0 13px;
    color: var(--pdb-text);
    font-size: 10.8px;
    line-height: 1.55;
}

/* =========================================================
   ID® IDENTITY SPOTLIGHT
   ========================================================= */
.pdb-local-idspot {
    display: grid;
    grid-template-columns: minmax(360px, 1.08fr) minmax(0, .92fr);
    min-height: 455px;
    margin-bottom: 24px;
    overflow: hidden;
    border: 1px solid #292929;
    border-radius: 7px;
    background: #1d1d1d;
}

.pdb-local-idspot-media {
    position: relative;
    min-height: 455px;
    overflow: hidden;
    background: #e9eaeb;
}

.pdb-local-idspot-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 455px;
    object-fit: cover;
    object-position: center;
}

.pdb-local-idspot-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 3px;
    background: var(--pdb-orange);
    color: #fff;
    font-size: 9px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.pdb-local-idspot-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 29px 30px;
    background: linear-gradient(135deg, #303030 0%, #181818 100%);
    color: #fff;
}

.pdb-local-idspot-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 112px;
    min-height: 50px;
    margin: 0 0 11px;
    padding: 8px 12px;
    border-radius: 5px;
    background: #fff;
}

.pdb-local-idspot-logo img {
    display: block;
    width: auto;
    max-width: 118px;
    height: auto;
    max-height: 36px;
}

.pdb-local-idspot-eyebrow {
    margin: 0 0 7px;
    color: #ff8750;
    font-size: 9.5px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.pdb-local-idspot-copy h2 {
    max-width: 540px;
    margin: 0 0 10px;
    color: #fff;
    font-size: 27px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.02em;
}

.pdb-local-idspot-lead {
    margin: 0 0 17px;
    color: #d7d7d7;
    font-size: 11.4px;
    line-height: 1.58;
}

.pdb-local-idspot-benefits {
    display: grid;
    gap: 1px;
    margin: 0 0 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 5px;
}

.pdb-local-idspot-benefit {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px 11px;
    background: rgba(255,255,255,.045);
}

.pdb-local-idspot-value {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--pdb-orange);
    font-size: 14.5px;
    line-height: 1;
    font-weight: 900;
}

.pdb-local-idspot-benefit strong {
    display: block;
    margin-bottom: 2px;
    color: #fff;
    font-size: 10.5px;
    line-height: 1.3;
    font-weight: 800;
}

.pdb-local-idspot-benefit p {
    margin: 0;
    color: #aaa;
    font-size: 8.9px;
    line-height: 1.45;
}

.pdb-local-idspot-tip {
    margin: 0 0 16px;
    padding: 1px 0 1px 12px;
    border-left: 3px solid var(--pdb-orange);
}

.pdb-local-idspot-tip strong {
    display: block;
    margin-bottom: 3px;
    color: #fff;
    font-size: 9.8px;
    line-height: 1.35;
    font-weight: 800;
}

.pdb-local-idspot-tip p {
    margin: 0;
    color: #aaa;
    font-size: 9.2px;
    line-height: 1.5;
}

.pdb-local-idspot-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.pdb-local-idspot-link {
    color: #ddd !important;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 800;
}

.pdb-local-idspot-link:hover {
    color: #fff !important;
}

/* =========================================================
   IMAGE / TEAM BANNER
   ========================================================= */
.pdb-local-image-banner {
    display: grid;
    grid-template-columns: 56% 44%;
    min-height: 255px;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 7px;
    border: 1px solid #292929;
}

.pdb-local-image-banner-media {
    min-height: 255px;
    background: #e9eaeb;
}

.pdb-local-image-banner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdb-local-image-banner-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px 25px;
    background: linear-gradient(115deg, #303030, #171717);
}

.pdb-local-image-banner-copy h2 {
    margin: 0 0 9px;
    color: #fff;
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -.015em;
    font-weight: 800;
}

.pdb-local-image-banner-copy p {
    margin: 0 0 14px;
    color: #c6c6c6;
    font-size: 11px;
    line-height: 1.55;
}

.pdb-local-image-banner-copy .pdb-local-btn {
    align-self: flex-start;
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.pdb-local-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.pdb-local-service-card {
    display: grid;
    grid-template-columns: 46% 54%;
    overflow: hidden;
    border: 1px solid var(--pdb-border);
    border-radius: 7px;
    background: #fff;
}

.pdb-local-service-media {
    min-height: 215px;
    background: #f0f1f2;
}

.pdb-local-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdb-local-service-body {
    padding: 17px 15px;
}

.pdb-local-service-body h3 {
    margin: 0 0 7px;
    color: #252525;
    font-size: 14.5px;
    line-height: 1.25;
    font-weight: 800;
}

.pdb-local-service-body p {
    margin: 0 0 10px;
    color: #747474;
    font-size: 10.4px;
    line-height: 1.5;
}

.pdb-local-checklist {
    display: grid;
    gap: 5px;
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    color: #555;
    font-size: 9.8px;
    line-height: 1.4;
}

.pdb-local-checklist li::before {
    content: "✓";
    margin-right: 6px;
    color: var(--pdb-orange);
    font-weight: 900;
}

/* =========================================================
   FAQ
   ========================================================= */
.pdb-local-faq {
    margin-bottom: 20px;
}

.pdb-local-faq-box {
    overflow: hidden;
    border: 1px solid var(--pdb-border);
    border-radius: 7px;
    background: #fff;
}

.pdb-local-faq details {
    border-bottom: 1px solid var(--pdb-border);
}

.pdb-local-faq details:last-child {
    border-bottom: 0;
}

.pdb-local-faq summary {
    position: relative;
    display: block;
    padding: 13px 40px 13px 14px;
    cursor: pointer;
    list-style: none;
    color: #2d2d2d;
    font-size: 11.6px;
    line-height: 1.4;
    font-weight: 800;
}

.pdb-local-faq summary::-webkit-details-marker {
    display: none;
}

.pdb-local-faq summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: var(--pdb-orange);
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
}

.pdb-local-faq details[open] summary {
    color: var(--pdb-orange);
    background: #fffaf7;
}

.pdb-local-faq details[open] summary::after {
    content: "−";
}

.pdb-local-faq details p {
    margin: 0;
    padding: 0 14px 13px;
    color: #686868;
    font-size: 10.6px;
    line-height: 1.6;
}

/* =========================================================
   CONFIG MODAL
   ========================================================= */
.pdb-local-config-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    width: 100%;
    height: 100dvh;
    margin: 0;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: #f3f5f6;
    transition: opacity .18s ease, visibility .18s ease;
}

.pdb-local-config-modal:target,
.pdb-local-config-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.pdb-local-config-modal__top {
    position: sticky;
    top: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px max(18px, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid var(--pdb-border);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(6px);
}

.pdb-local-config-modal__top h2 {
    margin: 0 0 2px;
    color: #242424;
    font-size: 16.5px;
    line-height: 1.25;
    font-weight: 800;
}

.pdb-local-config-modal__top p {
    margin: 0;
    color: #777;
    font-size: 10.8px;
    line-height: 1.4;
}

.pdb-local-config-close {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid #ffc6a7;
    border-radius: 50%;
    background: #fff4ee;
    color: var(--pdb-orange) !important;
    font-size: 21px;
    line-height: 1;
    font-weight: 500;
}

.pdb-local-config-modal__wrap {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 22px;
}

.pdb-local-config-modal__content {
    min-height: 420px;
    padding: 22px;
    border: 1px solid var(--pdb-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 45px rgba(0,0,0,.08);
}

/* =========================================================
   RESPONSIVE – 1099px
   ========================================================= */
@media (max-width: 1099px) {
    .pdb-local-main-grid {
        grid-template-columns: 195px minmax(0, 1fr);
        gap: 20px;
    }

    .pdb-local-hero h1 {
        font-size: 33px;
    }

    .pdb-local-category-media {
        height: 165px;
    }

    .pdb-local-products .box-image img,
    .pdb-local-products ul.products li.product img {
        height: 112px !important;
    }
}

/* =========================================================
   RESPONSIVE – 849px
   ========================================================= */
@media (max-width: 849px) {
    .pdb-local-selfservice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pdb-local-selfservice-head {
        display: block;
    }

    .pdb-local-selfservice-head p {
        margin-top: 4px;
    }

    .pdb-local-landing {

        width: min(100% - 24px, 1270px);
        margin-top: 16px;
    }

    .pdb-local-main-grid {
        display: block;
    }

    .pdb-local-mobile-navbar {
        display: block;
    }

    .pdb-local-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99998;
        width: min(330px, 88vw);
        height: 100dvh;
        padding: 16px;
        overflow-y: auto;
        transform: translateX(-105%);
        background: #f6f7f8;
        box-shadow: 10px 0 30px rgba(0,0,0,.14);
        transition: transform .2s ease;
    }

    .pdb-local-sidebar.is-open {
        transform: translateX(0);
    }

    .pdb-local-mobile-close {
        display: block;
    }

    .pdb-local-usps {
        grid-template-columns: 1fr;
    }

    .pdb-local-usp {
        border-right: 0;
        border-bottom: 1px solid var(--pdb-border);
    }

    .pdb-local-usp:last-child {
        border-bottom: 0;
    }

    .pdb-local-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pdb-local-config-cta {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .pdb-local-config-action {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        gap: 10px;
        text-align: left;
    }

    .pdb-local-config-note {
        margin: 0;
    }

    .pdb-local-products .woocommerce ul.products,
    .pdb-local-products .woocommerce .products,
    .pdb-local-products ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .pdb-local-idspot {
        grid-template-columns: 1fr;
    }

    .pdb-local-idspot-media,
    .pdb-local-idspot-media img {
        min-height: 360px;
    }

    .pdb-local-image-banner {
        grid-template-columns: 1fr;
    }

    .pdb-local-image-banner-media {
        min-height: 260px;
    }

    .pdb-local-services {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   RESPONSIVE – 549px
   ========================================================= */
@media (max-width: 549px) {
    .pdb-local-selfservice {
        padding: 13px;
    }

    .pdb-local-selfservice-grid {
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .pdb-local-step {
        min-height: 0;
        padding: 11px 10px;
    }

    .pdb-local-choice-help {
        grid-template-columns: 1fr;
    }

    .pdb-local-landing {

        width: calc(100% - 18px);
        margin: 12px auto 45px;
    }

    .pdb-local-hero {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .pdb-local-hero-media {
        position: relative;
        inset: auto;
        order: 1;
        width: 100%;
        height: 210px;
    }

    .pdb-local-hero::after {
        display: none;
    }

    .pdb-local-hero-content {
        order: 2;
        width: 100%;
        padding: 22px 18px 19px;
        background: #f6f7f8;
    }

    .pdb-local-hero h1 {
        margin-bottom: 9px;
        font-size: 29px;
        line-height: 1.08;
    }

    .pdb-local-hero-lead {
        font-size: 13.4px;
    }

    .pdb-local-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .pdb-local-hero-actions .pdb-local-btn {
        width: 100%;
    }

    .pdb-local-mini-usps {
        display: grid;
        gap: 6px;
    }

    .pdb-local-section-head h2 {
        font-size: 16.5px;
    }

    .pdb-local-section-head {
        align-items: flex-start;
    }

    .pdb-local-category-media {
        height: 150px;
    }

    .pdb-local-category-body h3 {
        font-size: 12.3px;
    }

    .pdb-local-category-body p {
        min-height: 0;
        font-size: 9.6px;
    }

    .pdb-local-accessories {
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 11px;
    }

    .pdb-local-accessories-media {
        height: 100%;
        min-height: 118px;
    }

    .pdb-local-accessories-copy {
        padding: 12px 10px 12px 0;
    }

    .pdb-local-accessories-action {
        grid-column: 1 / -1;
        padding: 0 10px 10px;
    }

    .pdb-local-accessories-action .pdb-local-btn {
        width: 100%;
    }

    .pdb-local-config-cta {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 17px 16px;
    }

    .pdb-local-config-cta > .pdb-local-icon {
        width: 42px;
        height: 42px;
    }

    .pdb-local-config-copy h2 {
        font-size: 19px;
    }

    .pdb-local-config-action {
        grid-column: auto;
        display: block;
    }

    .pdb-local-config-action .pdb-local-btn {
        width: 100%;
    }

    .pdb-local-config-note {
        margin-top: 5px;
        text-align: center;
    }

    .pdb-local-products .woocommerce ul.products,
    .pdb-local-products .woocommerce .products,
    .pdb-local-products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .pdb-local-products .box-image img,
    .pdb-local-products ul.products li.product img {
        height: 145px !important;
    }

    .pdb-local-idspot-media,
    .pdb-local-idspot-media img {
        min-height: 285px;
    }

    .pdb-local-idspot-copy {
        padding: 23px 18px;
    }

    .pdb-local-idspot-copy h2 {
        font-size: 22px;
    }

    .pdb-local-image-banner-copy {
        padding: 22px 18px;
    }

    .pdb-local-image-banner-copy h2 {
        font-size: 21px;
    }

    .pdb-local-image-banner-copy p {
        font-size: 10.8px;
    }

    .pdb-local-service-card {
        grid-template-columns: 1fr;
    }

    .pdb-local-service-media {
        min-height: 210px;
    }

    .pdb-local-config-modal__top {
        padding: 11px 12px;
    }

    .pdb-local-config-modal__top h2 {
        font-size: 14px;
    }

    .pdb-local-config-modal__top p {
        font-size: 9.4px;
    }

    .pdb-local-config-modal__wrap {
        padding: 10px;
    }

    .pdb-local-config-modal__content {
        padding: 12px;
        border-radius: 6px;
    }
}


/* =========================================================
   LOCAL TRUST SPOTLIGHT
   ========================================================= */
.pdb-local-trust {
    display: grid;
    grid-template-columns: minmax(360px, 1.08fr) minmax(0, .92fr);
    min-height: 455px;
    margin-bottom: 24px;
    overflow: hidden;
    border: 1px solid #292929;
    border-radius: 7px;
    background: #1d1d1d;
}

.pdb-local-trust-media {
    position: relative;
    min-height: 455px;
    overflow: hidden;
    background: #e9eaeb;
}

.pdb-local-trust-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 455px;
    object-fit: cover;
    object-position: center;
}

.pdb-local-trust-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 3px;
    background: var(--pdb-orange);
    color: #fff;
    font-size: 9px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.pdb-local-trust-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 29px 30px;
    background: linear-gradient(135deg, #303030 0%, #181818 100%);
    color: #fff;
}

.pdb-local-trust-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 112px;
    min-height: 50px;
    margin: 0 0 11px;
    padding: 8px 12px;
    border-radius: 5px;
    background: #fff;
}

.pdb-local-trust-logo img {
    display: block;
    width: auto;
    max-width: 118px;
    height: auto;
    max-height: 36px;
}

.pdb-local-trust-eyebrow {
    margin: 0 0 7px;
    color: #ff8750;
    font-size: 9.5px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.pdb-local-trust-copy h2 {
    max-width: 540px;
    margin: 0 0 10px;
    color: #fff;
    font-size: 27px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.02em;
}

.pdb-local-trust-lead {
    margin: 0 0 17px;
    color: #d7d7d7;
    font-size: 11.4px;
    line-height: 1.58;
}

.pdb-local-trust-benefits {
    display: grid;
    gap: 1px;
    margin: 0 0 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 5px;
}

.pdb-local-trust-benefit {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px 11px;
    background: rgba(255,255,255,.045);
}

.pdb-local-trust-value {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--pdb-orange);
    font-size: 14.5px;
    line-height: 1;
    font-weight: 900;
}

.pdb-local-trust-benefit strong {
    display: block;
    margin-bottom: 2px;
    color: #fff;
    font-size: 10.5px;
    line-height: 1.3;
    font-weight: 800;
}

.pdb-local-trust-benefit p {
    margin: 0;
    color: #aaa;
    font-size: 8.9px;
    line-height: 1.45;
}

.pdb-local-trust-tip {
    margin: 0 0 16px;
    padding: 1px 0 1px 12px;
    border-left: 3px solid var(--pdb-orange);
}

.pdb-local-trust-tip strong {
    display: block;
    margin-bottom: 3px;
    color: #fff;
    font-size: 9.8px;
    line-height: 1.35;
    font-weight: 800;
}

.pdb-local-trust-tip p {
    margin: 0;
    color: #aaa;
    font-size: 9.2px;
    line-height: 1.5;
}

.pdb-local-trust-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.pdb-local-trust-link {
    color: #ddd !important;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 800;
}

.pdb-local-trust-link:hover {
    color: #fff !important;
}




/* =========================================================
   6.2 SHELL / COMPONENT OVERRIDES
   ========================================================= */
.pdb-local-landing { width:100% !important; max-width:none !important; margin:0 !important; padding:0 !important; }
.pdb-local-landing > .section-content { width:100%; }
.pdb-local-shell {
    width:min(1270px, calc(100% - 30px)) !important;
    max-width:1270px !important;
    margin:22px auto 65px !important;
    padding:0 !important;
    display:grid !important;
    grid-template-columns:220px minmax(0,1fr) !important;
    gap:28px !important;
    align-items:start !important;
}
.pdb-local-shell::before,.pdb-local-shell::after{display:none!important}
.pdb-local-shell > .col { width:100%!important;max-width:none!important;flex:none!important;padding:0!important;margin:0!important; }
.pdb-local-shell > .col > .col-inner { margin:0!important;padding:0!important; }
.pdb-local-main-slot { min-width:0; }
.pdb-local-sidebar-widget { min-width:0; }
.pdb-local-mobile-navbtn { display:none; }
.pdb-local-image-placeholder {width:100%;height:100%;min-height:140px;display:block;background:linear-gradient(135deg,#f1f2f3,#e7e8e9)}
.pdb-local-section-head > div > p { margin:4px 0 0;color:var(--pdb-text);font-size:10.8px;line-height:1.55; }
.pdb-local-links { margin-bottom:20px; }

@media (max-width:1099px){.pdb-local-shell{grid-template-columns:195px minmax(0,1fr)!important;gap:20px!important}}
@media (max-width:849px){
  .pdb-local-shell{display:block!important;width:min(100% - 24px,1270px)!important;margin-top:16px!important}
  .pdb-local-mobile-navbtn{display:flex;margin-bottom:12px}
  .pdb-local-sidebar-slot{width:100%!important}
}
@media (max-width:549px){.pdb-local-shell{width:calc(100% - 18px)!important;margin:12px auto 45px!important}}

/* Einzelne PROMORIA-Elemente funktionieren auch dann korrekt, wenn sie später
   außerhalb eines Generator-Wrappers in eine andere UX-Builder-Seite gezogen werden. */
.pdb-local-hero,.pdb-local-usps,.pdb-local-section,.pdb-local-selfservice,
.pdb-local-config-cta,.pdb-local-products,.pdb-local-trust,.pdb-local-image-banner,
.pdb-local-services,.pdb-local-faq,.pdb-local-links,.pdb-local-sidebar-widget {
    --pdb-orange:#e75303;--pdb-orange-dark:#ca4900;--pdb-dark:#1f1f1f;
    --pdb-text:#5e5e5e;--pdb-muted:#8b8b8b;--pdb-border:#e4e5e7;
    --pdb-light:#f6f7f8;--pdb-card:#ffffff;
    box-sizing:border-box;
}

@media (max-width:849px){
    .pdb-local-trust{grid-template-columns:1fr}
    .pdb-local-trust-media,.pdb-local-trust-media img{min-height:360px}
}
@media (max-width:549px){
    .pdb-local-trust-media,.pdb-local-trust-media img{min-height:285px}
    .pdb-local-trust-copy{padding:23px 18px}
    .pdb-local-trust-copy h2{font-size:22px}
}


/* =========================================================
   6.3 – EINZUGSGEBIET
   ========================================================= */
.pdb-local-service-area {
    margin-bottom: 22px;
    padding: 18px;
    border: 1px solid var(--pdb-border);
    border-radius: 7px;
    background: #f7f8f9;
}

.pdb-local-service-area-head {
    max-width: 820px;
    margin-bottom: 14px;
}

.pdb-local-service-area-eyebrow {
    margin: 0 0 5px !important;
    color: var(--pdb-orange) !important;
    font-size: 9.5px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.pdb-local-service-area-head h2 {
    margin: 0 0 7px;
    color: #252525;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 800;
}

.pdb-local-service-area-head > p:last-child {
    margin: 0;
    color: #686868;
    font-size: 10.8px;
    line-height: 1.6;
}

.pdb-local-service-area-nearby {
    padding: 13px 14px;
    border: 1px solid var(--pdb-border);
    border-radius: 6px;
    background: #fff;
}

.pdb-local-service-area-nearby > strong,
.pdb-local-area-group > strong {
    display: block;
    margin-bottom: 8px;
    color: #303030;
    font-size: 10.8px;
    line-height: 1.35;
    font-weight: 800;
}

.pdb-local-area-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pdb-local-area-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 5px 9px;
    border: 1px solid #dedfe1;
    border-radius: 999px;
    background: #fafafa;
    color: #565656;
    font-size: 9.4px;
    line-height: 1.2;
}

.pdb-local-area-details {
    margin-top: 9px;
    overflow: hidden;
    border: 1px solid var(--pdb-border);
    border-radius: 6px;
    background: #fff;
}

.pdb-local-area-details summary {
    position: relative;
    display: block;
    padding: 12px 40px 12px 14px;
    cursor: pointer;
    list-style: none;
    color: #303030;
    font-size: 10.8px;
    line-height: 1.4;
    font-weight: 800;
}

.pdb-local-area-details summary::-webkit-details-marker { display: none; }
.pdb-local-area-details summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    color: var(--pdb-orange);
    font-size: 18px;
    font-weight: 500;
}
.pdb-local-area-details[open] summary::after { content: "−"; }
.pdb-local-area-details[open] summary {
    border-bottom: 1px solid var(--pdb-border);
    color: var(--pdb-orange);
    background: #fffaf7;
}

.pdb-local-area-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
}

.pdb-local-area-group {
    min-width: 0;
    padding: 11px;
    border: 1px solid #ececee;
    border-radius: 5px;
    background: #fff;
}

.pdb-local-area-chips--districts span {
    min-height: 24px;
    padding: 4px 7px;
    font-size: 8.8px;
}

.pdb-local-service-area-note {
    margin: 9px 2px 0 !important;
    color: #929292 !important;
    font-size: 8.7px !important;
    line-height: 1.45 !important;
}

@media (max-width: 849px) {
    .pdb-local-area-groups { grid-template-columns: 1fr; }
}

@media (max-width: 549px) {
    .pdb-local-service-area { padding: 14px; }
    .pdb-local-service-area-head h2 { font-size: 17px; }
    .pdb-local-area-chips { gap: 5px; }
    .pdb-local-area-chips span { font-size: 8.8px; }
}
