/* ═══════════════════════════════════════════════════════════════
   WL Buchshop — Theme CSS
   Modernes, editorieles Buchshop-Design (Bookix-2026-Stil)
   Nutzt Design-Tokens aus design-tokens.css
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────────── */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--wl-font-body);
    font-weight: var(--wl-fw-normal);
    color: var(--wl-text);
    background: var(--wl-bg);
    line-height: var(--wl-lh-base);
    font-size: var(--wl-fs-base);
}

/* Alle Überschriften: Figtree, fett — aber KEIN Rot als Default */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--wl-font-heading);
    font-weight: var(--wl-fw-bold);
    line-height: var(--wl-lh-tight);
    letter-spacing: var(--wl-ls-tight);
    color: var(--wl-text);   /* schwarz — Rot nur dort wo explizit gesetzt */
}

/* CI-Rot nur für echte Seiten-Überschriften im Theme-Layout */
.wl-hero__title,
.wl-section__title,
.wl-section__header h2,
.entry-title,
.page-title,
.wl-page-content h1,
.wl-page-content h2 {
    color: var(--wl-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--wl-text);        /* Links: schwarz, nicht rot */
    text-decoration: none;
    transition: color var(--wl-duration) var(--wl-ease);
}

a:hover {
    color: var(--wl-primary);     /* Hover: CI-Rot */
}

::selection {
    background: var(--wl-bg-light);
    color: var(--wl-primary);
}

/* ── Container ────────────────────────────────────────────────── */

.wl-container {
    max-width: var(--wl-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--wl-space-8);   /* einheitlich 2rem links+rechts */
}

/* ── Buttons ──────────────────────────────────────────────────── */

.wl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--wl-space-2);
    padding: var(--wl-space-3) var(--wl-space-8);
    border: 2px solid transparent;
    border-radius: var(--wl-radius);
    font-family: var(--wl-font-body);
    font-size: var(--wl-fs-sm);
    font-weight: var(--wl-fw-semibold);
    letter-spacing: var(--wl-ls-wide);
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--wl-duration) var(--wl-ease);
    text-align: center;
}

.wl-btn:active {
    transform: scale(0.97);
}

.wl-btn--primary {
    background: var(--wl-primary);
    color: #fff;
}

.wl-btn--primary:hover {
    background: var(--wl-primary-light);
    color: #fff;
    box-shadow: var(--wl-shadow);
}

.wl-btn--accent {
    background: var(--wl-accent);
    color: #fff;
}

.wl-btn--accent:hover {
    background: var(--wl-accent-dark);
    color: #fff;
    box-shadow: var(--wl-shadow);
}

.wl-btn--outline {
    background: transparent;
    color: var(--wl-primary);
    border-color: var(--wl-primary);
}

.wl-btn--outline:hover {
    background: var(--wl-primary);
    color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════ */

.wl-header {
    background: var(--wl-bg);
    border-bottom: 2px solid var(--wl-border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    width: 100%;
}

/* Obere Zeile: Logo | Suche | Icons */
/* Nutzt wl-container für gleiche Breite wie alle anderen Sections */
.wl-header__inner {
    display: flex;
    align-items: center;
    gap: var(--wl-space-6);
    height: var(--wl-header-height);
    padding-top: var(--wl-space-2);
    padding-bottom: var(--wl-space-2);
}

.wl-header__logo {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    margin-left: 0;
    padding-left: 0;
    align-items: flex-start;
    padding: 6px 0;   /* optischer Abstand Bildrand ↕ */
}

/* WP custom_logo erzeugt ein <a> mit figure > img drin */
.wl-header__logo a {
    display: block;
    line-height: 0;
}

.wl-header__logo img,
.wl-header__logo .custom-logo {
    max-height: 80px;
    width: auto;
    height: auto;
}

/* Tagline komplett ausblenden — steht nur noch im Customizer als Daten */
.wl-header__tagline {
    display: none;
}

.wl-header__site-title {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-xl);
    font-weight: var(--wl-fw-bold);
    color: var(--wl-primary);
    white-space: nowrap;
    letter-spacing: var(--wl-ls-tight);
}

.wl-header__search {
    flex: 1;
    max-width: 520px;
}

.wl-header__actions {
    display: flex;
    align-items: center;
    gap: var(--wl-space-5);
    flex-shrink: 0;
}

.wl-header__account,
.wl-header__cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--wl-text);
    position: relative;
    transition: color var(--wl-duration) var(--wl-ease);
}

.wl-header__account:hover,
.wl-header__cart:hover {
    color: var(--wl-accent);
}

.wl-header__action-label {
    font-size: var(--wl-fs-xs);
    font-weight: var(--wl-fw-medium);
    letter-spacing: var(--wl-ls-wide);
    text-transform: uppercase;
}

.wl-header__cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--wl-accent);
    color: #fff;
    font-size: 0.6rem;
    font-weight: var(--wl-fw-bold);
    width: 18px;
    height: 18px;
    border-radius: var(--wl-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.wl-header__menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--wl-text);
    cursor: pointer;
    padding: var(--wl-space-2);
    border-radius: var(--wl-radius-sm);
    transition: background var(--wl-duration-fast) var(--wl-ease);
}

.wl-header__menu-toggle:hover {
    background: var(--wl-bg-light);
}

/* ── Navigation ───────────────────────────────────────────────── */

.wl-nav {
    background: var(--wl-bg);
    border-bottom: 1px solid var(--wl-border);
}

.wl-nav__list {
    list-style: none;
    display: flex;
    gap: 0;
    margin-left: 0;
    padding-left: 0;
    align-items: stretch;
}

.wl-nav__list li {
    position: relative;
    display: flex;
    align-items: center;
}

.wl-nav__list li a {
    display: flex;
    align-items: center;
    text-align: center;
    padding: var(--wl-space-2) var(--wl-space-4);
    color: var(--wl-text);
    font-size: var(--wl-fs-sm);
    font-weight: var(--wl-fw-medium);
    letter-spacing: var(--wl-ls-normal);
    text-transform: uppercase;
    transition: all var(--wl-duration) var(--wl-ease);
    border-bottom: 3px solid transparent;
    line-height: 1.2;
    white-space: normal;
    min-height: var(--wl-nav-height);
}

.wl-nav__list li:first-child a {
    padding-left: 0;
}

.wl-nav__list li a:hover,
.wl-nav__list li.current-menu-item > a,
.wl-nav__list li.current-menu-ancestor > a {
    color: var(--wl-primary);
    border-bottom-color: var(--wl-primary);
}

.wl-nav__list .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--wl-bg);
    border: 1px solid var(--wl-border-light);
    border-radius: 0 0 var(--wl-radius) var(--wl-radius);
    min-width: 220px;
    box-shadow: var(--wl-shadow-md);
    list-style: none;
    z-index: 10;
}

.wl-nav__list li:hover > .sub-menu {
    display: block;
}

.wl-nav__list .sub-menu a {
    color: var(--wl-text);
    padding: var(--wl-space-3) var(--wl-space-5);
    font-size: var(--wl-fs-sm);
    text-transform: none;
    letter-spacing: var(--wl-ls-normal);
    border-bottom: 1px solid var(--wl-border-light);
}

.wl-nav__list .sub-menu li:last-child a {
    border-bottom: none;
}

.wl-nav__list .sub-menu a:hover {
    background: var(--wl-bg-light);
    color: var(--wl-primary);
}

/* ── Search Form ──────────────────────────────────────────────── */

.wl-search-form {
    display: flex;
    border: 2px solid var(--wl-border);
    border-radius: var(--wl-radius);
    overflow: hidden;
    transition: border-color var(--wl-duration) var(--wl-ease),
                box-shadow var(--wl-duration) var(--wl-ease);
    background: var(--wl-bg);
}

.wl-search-form:focus-within {
    border-color: var(--wl-primary);
    box-shadow: 0 0 0 3px rgba(26, 58, 58, 0.08);
}

.wl-search-form__input {
    flex: 1;
    border: none;
    padding: var(--wl-space-3) var(--wl-space-4);
    font-family: var(--wl-font-body);
    font-size: var(--wl-fs-sm);
    outline: none;
    background: transparent;
    color: var(--wl-text);
}

.wl-search-form__input::placeholder {
    color: var(--wl-text-muted);
}

.wl-search-form__button {
    background: var(--wl-primary);
    border: none;
    color: #fff;
    padding: var(--wl-space-3) var(--wl-space-4);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background var(--wl-duration-fast) var(--wl-ease);
}

.wl-search-form__button:hover {
    background: var(--wl-primary-light);
}

/* ── Search Suggestions Dropdown ──────────────────────────── */

.wl-search-wrap {
    position: relative;
}

.wl-search-suggestions {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--wl-bg);
    border: 1px solid var(--wl-border);
    border-radius: var(--wl-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    max-height: 420px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.wl-search-suggestions[hidden] {
    display: none;
}

.wl-search-suggestion {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: var(--wl-space-3);
    padding: var(--wl-space-3) var(--wl-space-4);
    text-decoration: none;
    color: var(--wl-text);
    border-bottom: 1px solid var(--wl-bg-light);
    transition: background var(--wl-duration-fast) var(--wl-ease);
    cursor: pointer;
}

.wl-search-suggestion:last-of-type {
    border-bottom: none;
}

.wl-search-suggestion:hover,
.wl-search-suggestion.is-active {
    background: var(--wl-bg-light);
}

.wl-search-suggestion__cover {
    width: 40px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #f5f1ee;
    border-radius: 2px;
    overflow: hidden;
}

.wl-search-suggestion__cover img {
    width: 40px;
    height: 56px;
    object-fit: contain;
    display: block;
}

.wl-search-suggestion__no-cover {
    width: 40px;
    height: 56px;
    display: block;
    background: #f5f1ee;
}

.wl-search-suggestion__info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wl-search-suggestion__title {
    font-size: var(--wl-fs-sm);
    font-weight: 600;
    color: var(--wl-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.wl-search-suggestion__author {
    font-size: var(--wl-fs-xs);
    color: var(--wl-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.wl-search-suggestion__badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: var(--wl-text-muted);
    background: var(--wl-bg-light);
    border: 1px solid var(--wl-border);
    border-radius: 3px;
    padding: 0 4px;
    margin-top: 2px;
    line-height: 1.6;
    width: fit-content;
}

.wl-search-suggestion__price {
    font-size: var(--wl-fs-sm);
    font-weight: 600;
    color: var(--wl-primary);
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
}

.wl-search-suggestions__all {
    display: block;
    padding: var(--wl-space-3) var(--wl-space-4);
    text-align: center;
    font-size: var(--wl-fs-sm);
    font-weight: 500;
    color: var(--wl-primary);
    background: var(--wl-bg-light);
    border-top: 1px solid var(--wl-border);
    text-decoration: none;
    border-radius: 0 0 var(--wl-radius) var(--wl-radius);
    transition: background var(--wl-duration-fast) var(--wl-ease);
}

.wl-search-suggestions__all:hover,
.wl-search-suggestions__all.is-active {
    background: var(--wl-border);
    color: var(--wl-text);
}

/* ══════════════════════════════════════════════════════════════
   MAIN CONTENT
   ══════════════════════════════════════════════════════════════ */

.wl-main {
    min-height: 60vh;
    padding: 0;
}

/* ── Hero ─────────────────────────────────────────────────────── */

.wl-hero {
    background: var(--wl-bg);
    padding: var(--wl-space-16) 0;
    border-bottom: 1px solid var(--wl-border-light);
}

.wl-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--wl-space-12);
    align-items: stretch;
    width: 100%;
}

/* Bild-Block — erste Spalte (links) */
.wl-hero__image {
    border-radius: var(--wl-radius-lg);
    overflow: visible;                /* Tagline darf rausragen */
    box-shadow: var(--wl-shadow-lg);
    order: 0;
    max-height: none;                 /* Höhe durch Foto + Tagline bestimmt */
    display: flex;
    flex-direction: column;
}

.wl-hero__photo {
    width: 100%;
    flex: 1;
    object-fit: cover;
    object-position: center top;
    display: block;
    max-height: 380px;
    border-radius: var(--wl-radius-lg) var(--wl-radius-lg) 0 0;
}

/* Text-Block — zweite Spalte (rechts) */
.wl-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;                         /* explizit rechts */
}

/* Tagline unter dem Teamfoto */
.wl-hero__tagline {
    margin: 0;
    padding: var(--wl-space-2) var(--wl-space-3);
    font-size: 0.62rem;               /* ~7pt bei 16px Basis */
    color: var(--wl-text-muted);
    text-align: center;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.4;
    background: var(--wl-bg-light);
    border-radius: 0 0 var(--wl-radius-lg) var(--wl-radius-lg);
}

.wl-hero__title {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-3xl);
    font-weight: var(--wl-fw-bold);
    color: var(--wl-primary);
    line-height: 1.15;
    margin-bottom: var(--wl-space-4);
    letter-spacing: -0.03em;
}

.wl-hero__subtitle {
    font-size: var(--wl-fs-md);
    color: var(--wl-text-light);
    margin-top: 0;
    font-weight: var(--wl-fw-normal);
    max-width: 480px;
}

.wl-hero__accent {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--wl-primary);
    margin-top: var(--wl-space-6);
    border-radius: var(--wl-radius-full);
}

/* ── Sections ─────────────────────────────────────────────────── */

.wl-section {
    padding: var(--wl-space-16) 0;
}

.wl-section--alt {
    background: var(--wl-bg-light);
}

.wl-section__header {
    margin-bottom: var(--wl-space-10);
}

.wl-section__title {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-2xl);
    font-weight: var(--wl-fw-bold);
    color: var(--wl-primary);
    margin-bottom: var(--wl-space-2);
    display: block;
}

.wl-section__subtitle {
    font-size: var(--wl-fs-base);
    color: var(--wl-text-light);
    margin-top: var(--wl-space-2);
}

.wl-section__divider {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--wl-secondary);
    margin-top: var(--wl-space-4);
    border-radius: var(--wl-radius-full);
}

/* ── Breadcrumb ───────────────────────────────────────────────── */

.wl-breadcrumb {
    font-size: var(--wl-fs-xs);
    color: var(--wl-text-muted);
    margin-bottom: var(--wl-space-8);
    padding: var(--wl-space-4) 0;
    letter-spacing: var(--wl-ls-wide);
    text-transform: uppercase;
}

.wl-breadcrumb a {
    color: var(--wl-text-muted);
}

.wl-breadcrumb a:hover {
    color: var(--wl-primary);
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT GRID (Shop / Archive)
   ══════════════════════════════════════════════════════════════ */

.wl-product-grid,
ul.products {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--wl-space-8);
    list-style: none;
    padding: 0;
    margin: 0 !important;
}

.wl-product-grid--4 { grid-template-columns: repeat(4, 1fr); }
.wl-product-grid--5 { grid-template-columns: repeat(5, 1fr); }
.wl-product-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ── Product Card ─────────────────────────────────────────────── */

.wl-product-card {
    background: var(--wl-bg);
    border-radius: var(--wl-radius);
    overflow: hidden;
    transition: box-shadow var(--wl-duration) var(--wl-ease),
                transform var(--wl-duration) var(--wl-ease);
    list-style: none;
    border: none;
    box-shadow: var(--wl-shadow-sm);
    display: flex !important;
    flex-direction: column;
}

.wl-product-card:hover {
    box-shadow: var(--wl-shadow-md);
    transform: translateY(-4px);
}

.wl-product-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--wl-text);
}

.wl-product-card__link:hover {
    color: var(--wl-text);
}

.wl-product-card__cover {
    position: relative;
    background: #f5f1ee;
    border-radius: var(--wl-radius) var(--wl-radius) 0 0;
}

/* Cover als <img> — direkte Höhe wie Related-Cards: kein overflow:hidden-Clip */
.wl-product-card__cover-img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background-color: #f5f1ee;
    padding: 0.25rem 0;
    display: block;
}

.wl-product-card__cover--has-image {
    /* kein background-image mehr nötig */
}

/* Kein Cover: neutraler Platzhalter */
.wl-product-card__cover--no-image {
    background: var(--wl-bg-light);
}

.wl-product-card__no-cover {
    width: 100%;
    height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--wl-space-3);
    padding: var(--wl-space-6);
    color: var(--wl-border);
    background-color: #f5f1ee;
}

.wl-product-card__no-cover svg {
    width: 40%;
    height: auto;
    opacity: 0.3;
}

.wl-product-card__no-cover span {
    font-size: var(--wl-fs-xs);
    color: var(--wl-text-muted);
    text-align: center;
    line-height: var(--wl-lh-tight);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wl-product-card__img {
    display: none; /* Wird durch background-image ersetzt */
}

.wl-product-card:hover .wl-product-card__img {
    transform: scale(1.03);
}

.wl-product-card__badge {
    position: absolute;
    top: var(--wl-space-3);
    left: var(--wl-space-3);
    background: var(--wl-primary);
    color: #fff;
    font-size: var(--wl-fs-xs);
    font-weight: var(--wl-fw-semibold);
    padding: var(--wl-space-1) var(--wl-space-3);
    border-radius: var(--wl-radius-sm);
    text-transform: uppercase;
    letter-spacing: var(--wl-ls-caps);
    z-index: 2;
}
.wl-product-card__badge + .wl-product-card__badge {
    top: calc(var(--wl-space-3) + 1.8rem);
}
/* E-Book: dunkelblau */
.wl-product-card__badge--ebook {
    background: #1d4ed8;
}
/* Hörbuch: lila */
.wl-product-card__badge--audio {
    background: #7c3aed;
}
/* Neu: grün */
.wl-product-card__badge--new {
    background: #059669;
}

.wl-product-card__info {
    padding: var(--wl-space-5) var(--wl-space-4);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.wl-product-card__author {
    font-size: var(--wl-fs-xs);
    color: var(--wl-text-muted);
    margin-bottom: var(--wl-space-1);
    letter-spacing: var(--wl-ls-wide);
    text-transform: uppercase;
}

.wl-product-card__title {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-base);
    font-weight: var(--wl-fw-semibold);
    line-height: var(--wl-lh-tight);
    margin-bottom: var(--wl-space-3);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--wl-text);   /* schwarz, kein Rot */
}

.wl-product-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: var(--wl-space-3);
    border-top: 1px solid var(--wl-border-light);
}

.wl-product-card__price {
    font-weight: var(--wl-fw-bold);
    font-size: var(--wl-fs-md);
    color: var(--wl-text);
}

.wl-product-card__stock {
    font-size: var(--wl-fs-xs);
    font-weight: var(--wl-fw-medium);
}

.wl-product-card__stock--in {
    color: var(--wl-success);
}

.wl-product-card__stock--out {
    color: var(--wl-error);
}

/* ══════════════════════════════════════════════════════════════
   CATEGORIES GRID
   ══════════════════════════════════════════════════════════════ */

.wl-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--wl-space-6);
}

.wl-category-card {
    background: var(--wl-bg);
    border-radius: var(--wl-radius);
    overflow: hidden;
    text-align: left;
    color: var(--wl-text);
    transition: box-shadow var(--wl-duration) var(--wl-ease),
                transform var(--wl-duration) var(--wl-ease);
    border: 1px solid var(--wl-border-light);
    display: flex;
    flex-direction: column;
}

.wl-category-card:hover {
    box-shadow: var(--wl-shadow-md);
    transform: translateY(-3px);
    color: var(--wl-text);
    border-color: var(--wl-primary);
}

.wl-category-card__img-wrap {
    width: 100%;
    aspect-ratio: 16 / 6;
    overflow: hidden;
    background: var(--wl-bg-light);
}

.wl-category-card__img-wrap--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wl-category-card__placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.3;
}

.wl-category-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--wl-duration-slow) var(--wl-ease);
}

.wl-category-card:hover .wl-category-card__img {
    transform: scale(1.04);
}

.wl-category-card__body {
    padding: var(--wl-space-5) var(--wl-space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--wl-space-2);
}

.wl-category-card__name {
    display: block;
    font-family: var(--wl-font-heading);
    font-weight: var(--wl-fw-bold);
    font-size: var(--wl-fs-lg);
    color: var(--wl-primary);
}

.wl-category-card__desc {
    display: block;
    font-size: var(--wl-fs-sm);
    color: var(--wl-text-light);
    line-height: var(--wl-lh-relaxed);
}

.wl-category-card__count {
    display: block;
    font-size: var(--wl-fs-xs);
    color: var(--wl-text-muted);
    margin-top: auto;
    padding-top: var(--wl-space-2);
    letter-spacing: var(--wl-ls-wide);
    text-transform: uppercase;
}

/* ── Hero-Bullets ─────────────────────────────────────────────── */

.wl-hero__claim {
    font-size: var(--wl-fs-md);
    color: var(--wl-text-light);
    margin-top: var(--wl-space-4);
    font-style: italic;
}

.wl-hero__bullets {
    list-style: none;
    margin-top: var(--wl-space-5);
    display: flex;
    flex-direction: column;
    gap: var(--wl-space-2);
}

.wl-hero__bullets li {
    font-size: var(--wl-fs-base);
    color: var(--wl-text);
    padding-left: var(--wl-space-6);
    position: relative;
}

.wl-hero__bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 12px;
    height: 12px;
    background: var(--wl-primary);
    clip-path: polygon(0 50%, 40% 100%, 100% 0, 40% 60%);
}

/* ── Trust-Bar — Verlags-Claim ────────────────────────────────── */

.wl-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--wl-space-6);
    flex-wrap: wrap;
    padding: var(--wl-space-8) 0;
}

.wl-trust-item__label {
    font-size: var(--wl-fs-lg);
    font-weight: var(--wl-fw-semibold);
    color: var(--wl-primary);
    letter-spacing: var(--wl-ls-wide);
}

.wl-trust-item--divider {
    color: var(--wl-border);
    font-size: var(--wl-fs-2xl);
    line-height: 1;
    user-select: none;
}

/* ══════════════════════════════════════════════════════════════
   SINGLE PRODUCT
   ══════════════════════════════════════════════════════════════ */

.wl-product-detail {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: var(--wl-space-16);
    margin-bottom: var(--wl-space-12);
    align-items: start;
}

.wl-product-detail__cover {
    background: var(--wl-bg-light);
    border-radius: var(--wl-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--wl-space-10);
    position: sticky;
    top: calc(var(--wl-header-height) + var(--wl-nav-height) + var(--wl-space-8));
}

.wl-product-detail__img {
    max-height: 520px;
    width: auto;
    box-shadow: var(--wl-shadow-cover);
    border-radius: 4px;
}

.wl-product-detail__no-cover {
    color: var(--wl-text-muted);
    font-style: italic;
    padding: var(--wl-space-16);
    font-family: var(--wl-font-heading);
}

.wl-product-detail__badge {
    display: inline-block;
    background: var(--wl-secondary);
    color: var(--wl-primary-dark);
    font-size: var(--wl-fs-xs);
    font-weight: var(--wl-fw-semibold);
    padding: var(--wl-space-1) var(--wl-space-3);
    border-radius: var(--wl-radius-sm);
    text-transform: uppercase;
    letter-spacing: var(--wl-ls-caps);
    margin-bottom: var(--wl-space-4);
}

.wl-product-detail__title {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-3xl);
    font-weight: var(--wl-fw-bold);
    line-height: 1.15;
    margin-bottom: var(--wl-space-2);
    color: var(--wl-primary);
}

.wl-product-detail__author {
    font-size: var(--wl-fs-lg);
    color: var(--wl-text-light);
    margin-bottom: var(--wl-space-6);
    font-style: italic;
}

.wl-product-detail__price {
    font-size: var(--wl-fs-2xl);
    font-weight: var(--wl-fw-bold);
    color: var(--wl-text);
    margin-bottom: var(--wl-space-3);
    font-family: var(--wl-font-body);
}

.wl-product-detail__stock {
    font-size: var(--wl-fs-sm);
    font-weight: var(--wl-fw-medium);
    margin-bottom: var(--wl-space-8);
}

.wl-product-detail__stock--in {
    color: var(--wl-success);
}

.wl-product-detail__stock--out {
    color: var(--wl-error);
}

.wl-product-detail__specs {
    margin-top: var(--wl-space-10);
    border-top: 1px solid var(--wl-border);
    padding-top: var(--wl-space-6);
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: var(--wl-space-3) var(--wl-space-6);
    font-size: var(--wl-fs-sm);
}

.wl-product-detail__specs dt {
    font-weight: var(--wl-fw-semibold);
    color: var(--wl-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--wl-ls-caps);
    font-size: var(--wl-fs-xs);
}

.wl-product-detail__specs dd {
    margin: 0;
    color: var(--wl-text);
}

/* ── Product Description ──────────────────────────────────────── */

.wl-product-description {
    margin-bottom: var(--wl-space-12);
}

.wl-product-description h2 {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-xl);
    margin-bottom: var(--wl-space-6);
    padding-bottom: var(--wl-space-4);
    border-bottom: 2px solid var(--wl-secondary);
    display: inline-block;
    color: var(--wl-primary);
}

.wl-product-description__content {
    line-height: var(--wl-lh-relaxed);
    max-width: var(--wl-max-width-narrow);
    font-size: var(--wl-fs-base);
}

.wl-product-description__content p {
    margin-bottom: var(--wl-space-4);
}

/* ── Related Products ─────────────────────────────────────────── */

.wl-related-products {
    margin-top: var(--wl-space-16);
    padding-top: var(--wl-space-12);
    border-top: 1px solid var(--wl-border);
}

.wl-related-products h2 {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-xl);
    margin-bottom: var(--wl-space-8);
    color: var(--wl-primary);
}

/* ══════════════════════════════════════════════════════════════
   PAGE
   ══════════════════════════════════════════════════════════════ */

.wl-page__title {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-3xl);
    margin-top: var(--wl-space-8);
    margin-bottom: var(--wl-space-8);
    margin-left: 0;
    padding-left: 0;
    color: var(--wl-primary);
}

.wl-page__content {
    max-width: var(--wl-max-width);
    line-height: var(--wl-lh-relaxed);
}

/* Über-uns-Seite: volle Breite für Hero + Team-Layout */
.page-template-default.page-id-11 .wl-page__content,
.page-slug-ueber-uns .wl-page__content,
body.page.page-id-11 .wl-page__content {
    max-width: var(--wl-max-width);
}

.wl-page__content h2 {
    margin-top: var(--wl-space-10);
    margin-bottom: var(--wl-space-4);
}

.wl-page__content p {
    margin-bottom: var(--wl-space-4);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */

.wl-footer {
    background: var(--wl-primary);   /* CI-Rot */
    border-top: none;
    padding: var(--wl-space-16) 0 var(--wl-space-8);
    margin-top: var(--wl-space-16);
    color: rgba(255,255,255,0.88);
}

.wl-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--wl-space-10);
    margin-bottom: var(--wl-space-12);
}

.wl-footer-widget--brand .wl-footer-widget__desc {
    font-size: var(--wl-fs-sm);
    color: rgba(255,255,255,0.75);
    line-height: var(--wl-lh-base);
    max-width: 280px;
}

.wl-footer-widget__title {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-md);
    font-weight: var(--wl-fw-bold);
    margin-bottom: var(--wl-space-5);
    color: #ffffff;
    letter-spacing: var(--wl-ls-tight);
}

.wl-footer__links {
    list-style: none;
}

.wl-footer__links li {
    margin-bottom: var(--wl-space-3);
}

.wl-footer__links a {
    color: rgba(255,255,255,0.80);
    font-size: var(--wl-fs-sm);
    transition: color var(--wl-duration-fast) var(--wl-ease);
}

.wl-footer__links a:hover {
    color: #ffffff;
}

.wl-footer__payment-icons {
    display: flex;
    gap: var(--wl-space-3);
    flex-wrap: wrap;
}

.wl-footer__payment-icons span {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.30);
    padding: var(--wl-space-2) var(--wl-space-3);
    border-radius: var(--wl-radius-sm);
    font-size: var(--wl-fs-xs);
    color: rgba(255,255,255,0.90);
}

.wl-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.25);
    padding-top: var(--wl-space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--wl-fs-xs);
    color: rgba(255,255,255,0.65);
}

.wl-footer__powered a {
    color: rgba(255,255,255,0.65);
    transition: color var(--wl-duration-fast) var(--wl-ease);
}

.wl-footer__powered a:hover {
    color: #ffffff;
}

/* ══════════════════════════════════════════════════════════════
   PAGINATION
   ══════════════════════════════════════════════════════════════ */

.woocommerce-pagination,
.wl-pagination {
    margin-top: var(--wl-space-10);
    display: flex;
    justify-content: center;
    gap: var(--wl-space-2);
}

.woocommerce-pagination .page-numbers,
.wl-pagination .page-numbers {
    padding: var(--wl-space-3) var(--wl-space-4);
    border: 1px solid var(--wl-border);
    border-radius: var(--wl-radius);
    font-size: var(--wl-fs-sm);
    color: var(--wl-text);
    background: var(--wl-bg);
    transition: all var(--wl-duration-fast) var(--wl-ease);
}

.woocommerce-pagination .page-numbers:hover,
.wl-pagination .page-numbers:hover {
    border-color: var(--wl-primary);
    color: var(--wl-primary);
}

.woocommerce-pagination .page-numbers.current,
.wl-pagination .page-numbers.current {
    background: var(--wl-primary);
    color: #fff;
    border-color: var(--wl-primary);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

/* ── Tablet ≤ 1024px ──────────────────────────────────────────── */

@media (max-width: 1024px) {
    .wl-container {
        padding: 0 var(--wl-space-6);
    }

    .wl-product-grid,
    ul.products {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--wl-space-6);
    }

    .wl-product-detail {
        gap: var(--wl-space-8);
    }

    .wl-hero__title {
        font-size: var(--wl-fs-3xl);
    }

    .wl-nav__list li a {
        padding: var(--wl-space-2) var(--wl-space-3);
        font-size: 0.78rem;
    }
}

/* ── Schmales Tablet / großes Handy ≤ 768px ──────────────────── */

@media (max-width: 768px) {
    .wl-container {
        padding: 0 var(--wl-space-4);
    }

    /* Hero: untereinander */
    .wl-hero__inner {
        grid-template-columns: 1fr;
        gap: var(--wl-space-8);
    }

    .wl-hero__image {
        order: 0;
        max-height: 260px;
    }

    .wl-hero__content {
        order: 1;
    }

    .wl-hero__photo {
        max-height: 260px;
    }

    .wl-hero {
        padding: var(--wl-space-12) 0;
    }

    .wl-hero__title {
        font-size: var(--wl-fs-2xl);
    }

    /* Header: Logo oben, Suche darunter */
    .wl-header__inner {
        flex-wrap: wrap;
        height: auto;
        padding: var(--wl-space-3) 0;
        gap: var(--wl-space-3);
    }

    .wl-header__logo {
        flex: 1;
    }

    .wl-header__search {
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    .wl-header__actions {
        flex-shrink: 0;
    }

    .wl-header__action-label {
        display: none;
    }

    .wl-header__menu-toggle {
        display: block;
    }

    /* Nav: aufklappbar mit Animation */
    .wl-nav {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .wl-nav.is-open {
        display: block;
        max-height: 600px;
    }

    .wl-nav__list {
        flex-direction: column;
    }

    .wl-nav__list li a {
        padding: var(--wl-space-3) var(--wl-space-4);
        border-bottom: 1px solid var(--wl-border-light);
        font-size: var(--wl-fs-base);
    }

    .wl-nav__list li:first-child a {
        padding-left: var(--wl-space-4);
    }

    .wl-nav__list .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: var(--wl-bg-light);
        border-radius: 0;
    }

    /* Produkte */
    .wl-product-grid,
    ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--wl-space-4);
    }

    .wl-product-detail {
        grid-template-columns: 1fr;
        gap: var(--wl-space-8);
    }

    .wl-product-detail__cover {
        position: static;
        padding: var(--wl-space-6);
    }

    .wl-product-detail__img {
        max-height: 360px;
    }

    .wl-product-detail__title {
        font-size: var(--wl-fs-2xl);
    }

    /* Kategorien */
    .wl-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--wl-space-4);
    }

    /* Footer */
    .wl-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--wl-space-8);
    }

    .wl-footer-widget--brand {
        grid-column: 1 / -1;
    }

    .wl-footer__bottom {
        flex-direction: column;
        gap: var(--wl-space-3);
        text-align: center;
    }

    .wl-section {
        padding: var(--wl-space-10) 0;
    }

    .wl-section__title {
        font-size: var(--wl-fs-xl);
    }
}

/* ── Handy ≤ 480px ───────────────────────────────────────────── */

@media (max-width: 480px) {
    .wl-container {
        padding: 0 var(--wl-space-3);
    }

    .wl-product-grid,
    ul.products {
        grid-template-columns: 1fr 1fr;
        gap: var(--wl-space-3);
    }

    .wl-product-card__info {
        padding: var(--wl-space-3);
    }

    .wl-product-card__title {
        font-size: var(--wl-fs-sm);
    }

    .wl-product-card__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--wl-space-1);
    }

    .wl-categories-grid {
        grid-template-columns: 1fr;
    }

    .wl-hero__title {
        font-size: var(--wl-fs-xl);
    }

    .wl-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════════ */

.wl-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--wl-space-6);
    padding: var(--wl-space-10) 0;
}

.wl-trust-item {
    text-align: center;
    padding: var(--wl-space-6);
    background: var(--wl-bg);
    border-radius: var(--wl-radius);
    transition: box-shadow var(--wl-duration) var(--wl-ease),
                transform var(--wl-duration) var(--wl-ease);
}

.wl-trust-item:hover {
    box-shadow: var(--wl-shadow);
    transform: translateY(-2px);
}

.wl-trust-item__icon {
    font-size: 1.8rem;
    margin-bottom: var(--wl-space-2);
}

.wl-trust-item__title {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-base);
    font-weight: var(--wl-fw-semibold);
    color: var(--wl-primary);
    margin-bottom: var(--wl-space-1);
}

.wl-trust-item__desc {
    font-size: var(--wl-fs-sm);
    color: var(--wl-text-muted);
}

/* ══════════════════════════════════════════════════════════════
   CONTENT PAGES (Redaktionelle Seiten: Über uns, Kontakt, etc.)
   ══════════════════════════════════════════════════════════════ */

.wl-page-header {
    background: var(--wl-bg-light);
    padding: var(--wl-space-16) 0 var(--wl-space-16);
    border-bottom: 1px solid var(--wl-border-light);
}

.wl-page-header__title {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-4xl);
    font-weight: var(--wl-fw-bold);
    line-height: 1.1;
    margin-bottom: var(--wl-space-4);
    letter-spacing: -0.03em;
    color: var(--wl-primary);
}

.wl-page-header__subtitle {
    font-size: var(--wl-fs-lg);
    color: var(--wl-text-light);
    max-width: 600px;
    line-height: var(--wl-lh-base);
}

.wl-page-header__accent {
    display: block;
    width: 56px;
    height: 3px;
    background: var(--wl-secondary);
    margin-top: var(--wl-space-6);
    border-radius: var(--wl-radius-full);
}

/* ── Content Sections ────────────────────────────────────────── */

.wl-content-section {
    padding: var(--wl-space-16) 0;
}

.wl-content-section--alt {
    background: var(--wl-bg-light);
}

.wl-content-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--wl-space-16);
    align-items: start;
}

.wl-content-layout--reverse {
    grid-template-columns: 360px 1fr;
}

.wl-content-layout--wide {
    grid-template-columns: 1fr;
    max-width: 800px;
}

.wl-content-layout--center {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ── Content Text ────────────────────────────────────────────── */

.wl-content-text h2 {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-xl);
    font-weight: var(--wl-fw-bold);
    margin-bottom: var(--wl-space-4);
    color: var(--wl-primary);
}

.wl-content-text h3 {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-lg);
    font-weight: var(--wl-fw-semibold);
    margin: var(--wl-space-8) 0 var(--wl-space-3);
    color: var(--wl-primary);
}

.wl-content-text p {
    font-size: var(--wl-fs-md);
    line-height: var(--wl-lh-relaxed);
    color: var(--wl-text);
    margin-bottom: var(--wl-space-5);
}

.wl-content-text ul,
.wl-content-text ol {
    margin: var(--wl-space-4) 0 var(--wl-space-6) var(--wl-space-6);
    line-height: var(--wl-lh-relaxed);
}

.wl-content-text li {
    margin-bottom: var(--wl-space-2);
}

.wl-content-text blockquote {
    border-left: 3px solid var(--wl-secondary);
    padding: var(--wl-space-4) 0 var(--wl-space-4) var(--wl-space-6);
    margin: var(--wl-space-8) 0;
    font-style: italic;
    color: var(--wl-text-light);
    font-size: var(--wl-fs-lg);
    background: var(--wl-bg-light);
    border-radius: 0 var(--wl-radius) var(--wl-radius) 0;
}

.wl-content-text blockquote small {
    display: block;
    margin-top: var(--wl-space-3);
    font-size: var(--wl-fs-sm);
    font-style: normal;
    color: var(--wl-text-muted);
}

.wl-content-text a {
    color: var(--wl-primary);
    border-bottom: 1px solid var(--wl-secondary);
    transition: all var(--wl-duration) var(--wl-ease);
}

.wl-content-text a:hover {
    color: var(--wl-accent);
    border-bottom-color: var(--wl-accent);
}

/* ── Content Image ───────────────────────────────────────────── */

.wl-content-image {
    border-radius: var(--wl-radius);
    overflow: hidden;
    box-shadow: var(--wl-shadow);
}

.wl-content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.wl-content-image figcaption {
    padding: var(--wl-space-3) var(--wl-space-4);
    font-size: var(--wl-fs-sm);
    color: var(--wl-text-muted);
    background: var(--wl-bg);
    border-top: 1px solid var(--wl-border-light);
}

/* ── Team Grid ───────────────────────────────────────────────── */

.wl-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--wl-space-8);
    margin-top: var(--wl-space-8);
}

.wl-team-card {
    text-align: center;
    padding: var(--wl-space-6);
    background: var(--wl-bg);
    border-radius: var(--wl-radius);
    transition: box-shadow var(--wl-duration) var(--wl-ease),
                transform var(--wl-duration) var(--wl-ease);
}

.wl-team-card:hover {
    box-shadow: var(--wl-shadow);
    transform: translateY(-2px);
}

.wl-team-card__photo {
    width: 120px;
    height: 120px;
    border-radius: var(--wl-radius-full);
    object-fit: cover;
    margin: 0 auto var(--wl-space-4);
    border: 3px solid var(--wl-bg-light);
    box-shadow: var(--wl-shadow-sm);
}

.wl-team-card__name {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-md);
    font-weight: var(--wl-fw-semibold);
    color: var(--wl-primary);
    margin-bottom: var(--wl-space-1);
}

.wl-team-card__role {
    font-size: var(--wl-fs-sm);
    color: var(--wl-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--wl-ls-wide);
}

/* ── Values Grid ─────────────────────────────────────────────── */

.wl-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--wl-space-6);
    margin-top: var(--wl-space-6);
}

.wl-value-card {
    padding: var(--wl-space-6);
    background: var(--wl-bg);
    border-radius: var(--wl-radius);
    border-left: 3px solid var(--wl-secondary);
}

.wl-value-card__icon {
    font-size: 1.8rem;
    margin-bottom: var(--wl-space-2);
}

.wl-value-card__title {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-md);
    font-weight: var(--wl-fw-semibold);
    color: var(--wl-primary);
    margin-bottom: var(--wl-space-1);
}

.wl-value-card__desc {
    font-size: var(--wl-fs-sm);
    color: var(--wl-text-light);
    line-height: var(--wl-lh-base);
}

/* ── Contact Info ────────────────────────────────────────────── */

.wl-contact-grid {
    display: flex;
    justify-content: center;
    gap: var(--wl-space-10);
    flex-wrap: wrap;
    margin: var(--wl-space-8) 0;
}

.wl-contact-item {
    text-align: center;
}

.wl-contact-item__icon {
    font-size: 1.5rem;
    margin-bottom: var(--wl-space-1);
}

.wl-contact-item__label {
    font-size: var(--wl-fs-xs);
    color: var(--wl-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--wl-ls-wide);
    margin-bottom: var(--wl-space-1);
}

.wl-contact-item__value {
    font-weight: var(--wl-fw-semibold);
    color: var(--wl-primary);
}

/* ══════════════════════════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════════════════════════ */

/* ── Blog Header ─────────────────────────────────────────────── */

.wl-blog-header {
    background: var(--wl-bg-light);
    padding: var(--wl-space-10) 0 var(--wl-space-12);
    border-bottom: 1px solid var(--wl-border-light);
}

.wl-blog-meta {
    font-size: var(--wl-fs-xs);
    color: var(--wl-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--wl-ls-wide);
    margin-bottom: var(--wl-space-3);
    display: flex;
    align-items: center;
    gap: var(--wl-space-4);
}

.wl-blog-meta__cat {
    background: var(--wl-secondary);
    color: var(--wl-primary);
    padding: var(--wl-space-1) var(--wl-space-3);
    border-radius: var(--wl-radius-sm);
    font-weight: var(--wl-fw-semibold);
}

.wl-blog-header__title {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-3xl);
    font-weight: var(--wl-fw-bold);
    line-height: 1.15;
    margin-bottom: var(--wl-space-4);
    max-width: 800px;
    color: var(--wl-primary);
}

.wl-blog-header__excerpt {
    font-size: var(--wl-fs-lg);
    color: var(--wl-text-light);
    max-width: 700px;
    line-height: var(--wl-lh-base);
}

.wl-blog-header__author {
    display: flex;
    align-items: center;
    gap: var(--wl-space-3);
    margin-top: var(--wl-space-6);
}

.wl-blog-header__author-photo {
    width: 44px;
    height: 44px;
    border-radius: var(--wl-radius-full);
    object-fit: cover;
}

.wl-blog-header__author-info {
    font-size: var(--wl-fs-sm);
}

.wl-blog-header__author-name {
    font-weight: var(--wl-fw-semibold);
    color: var(--wl-primary);
}

.wl-blog-header__author-date {
    color: var(--wl-text-muted);
    font-size: var(--wl-fs-sm);
}

/* ── Blog Hero Image ─────────────────────────────────────────── */

.wl-blog-hero {
    margin: -1px 0 0;
    max-height: 480px;
    overflow: hidden;
}

.wl-blog-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Blog Content ────────────────────────────────────────────── */

.wl-blog-content {
    padding: var(--wl-space-12) 0 var(--wl-space-16);
}

.wl-blog-content__inner {
    max-width: 720px;
    margin: 0 auto;
}

.wl-blog-content h2 {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-xl);
    font-weight: var(--wl-fw-bold);
    margin: var(--wl-space-10) 0 var(--wl-space-4);
    color: var(--wl-primary);
}

.wl-blog-content h3 {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-lg);
    font-weight: var(--wl-fw-semibold);
    margin: var(--wl-space-8) 0 var(--wl-space-3);
    color: var(--wl-primary);
}

.wl-blog-content p {
    font-size: var(--wl-fs-md);
    line-height: 1.85;
    margin-bottom: var(--wl-space-6);
    color: var(--wl-text);
}

.wl-blog-content blockquote {
    border-left: 3px solid var(--wl-secondary);
    padding: var(--wl-space-5) 0 var(--wl-space-5) var(--wl-space-8);
    margin: var(--wl-space-8) 0;
    font-style: italic;
    color: var(--wl-text-light);
    font-size: var(--wl-fs-lg);
    background: var(--wl-bg-light);
    border-radius: 0 var(--wl-radius) var(--wl-radius) 0;
}

.wl-blog-content figure {
    margin: var(--wl-space-10) 0;
}

.wl-blog-content figure img {
    width: 100%;
    border-radius: var(--wl-radius);
    box-shadow: var(--wl-shadow);
}

.wl-blog-content figcaption {
    text-align: center;
    padding: var(--wl-space-3);
    font-size: var(--wl-fs-sm);
    color: var(--wl-text-muted);
    font-style: italic;
}

.wl-blog-content ul,
.wl-blog-content ol {
    margin: var(--wl-space-6) 0 var(--wl-space-8) var(--wl-space-6);
    line-height: 1.85;
}

.wl-blog-content li {
    margin-bottom: var(--wl-space-3);
    font-size: var(--wl-fs-md);
}

/* ── Blog Tags ───────────────────────────────────────────────── */

.wl-blog-tags {
    display: flex;
    gap: var(--wl-space-2);
    flex-wrap: wrap;
    margin-top: var(--wl-space-10);
    padding-top: var(--wl-space-8);
    border-top: 1px solid var(--wl-border-light);
}

.wl-blog-tag {
    background: var(--wl-bg-light);
    color: var(--wl-text-light);
    padding: var(--wl-space-2) var(--wl-space-3);
    border-radius: var(--wl-radius-sm);
    font-size: var(--wl-fs-sm);
    transition: all var(--wl-duration) var(--wl-ease);
}

.wl-blog-tag:hover {
    background: var(--wl-primary);
    color: #fff;
}

/* ── Blog Share ──────────────────────────────────────────────── */

.wl-blog-share {
    display: flex;
    align-items: center;
    gap: var(--wl-space-4);
    margin-top: var(--wl-space-8);
    padding-top: var(--wl-space-6);
    border-top: 1px solid var(--wl-border-light);
}

.wl-blog-share__label {
    font-size: var(--wl-fs-sm);
    color: var(--wl-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--wl-ls-wide);
}

.wl-blog-share__btn {
    width: 36px;
    height: 36px;
    border-radius: var(--wl-radius-full);
    background: var(--wl-bg-light);
    border: 1px solid var(--wl-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wl-text-light);
    cursor: pointer;
    transition: all var(--wl-duration) var(--wl-ease);
    font-size: var(--wl-fs-sm);
}

.wl-blog-share__btn:hover {
    background: var(--wl-primary);
    border-color: var(--wl-primary);
    color: #fff;
}

/* ── Blog Related ────────────────────────────────────────────── */

.wl-blog-related {
    background: var(--wl-bg-light);
    padding: var(--wl-space-12) 0;
}

.wl-blog-related__title {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-xl);
    font-weight: var(--wl-fw-bold);
    margin-bottom: var(--wl-space-6);
    text-align: center;
    color: var(--wl-primary);
}

.wl-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--wl-space-6);
}

.wl-blog-card {
    background: var(--wl-bg);
    border-radius: var(--wl-radius);
    overflow: hidden;
    transition: box-shadow var(--wl-duration) var(--wl-ease),
                transform var(--wl-duration) var(--wl-ease);
}

.wl-blog-card:hover {
    box-shadow: var(--wl-shadow-md);
    transform: translateY(-3px);
}

.wl-blog-card__img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.wl-blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--wl-duration-slow) var(--wl-ease);
}

.wl-blog-card:hover .wl-blog-card__img img {
    transform: scale(1.05);
}

.wl-blog-card__body {
    padding: var(--wl-space-5);
}

.wl-blog-card__cat {
    font-size: var(--wl-fs-xs);
    color: var(--wl-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--wl-ls-wide);
    margin-bottom: var(--wl-space-2);
}

.wl-blog-card__title {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-md);
    font-weight: var(--wl-fw-semibold);
    color: var(--wl-primary);
    line-height: var(--wl-lh-tight);
    margin-bottom: var(--wl-space-2);
}

.wl-blog-card__date {
    font-size: var(--wl-fs-xs);
    color: var(--wl-text-muted);
}

/* ── Blog Archive / Listing ──────────────────────────────────── */

.wl-blog-archive {
    padding: var(--wl-space-12) 0;
}

.wl-blog-archive__header {
    margin-bottom: var(--wl-space-10);
}

.wl-blog-archive__title {
    font-family: var(--wl-font-heading);
    font-size: var(--wl-fs-2xl);
    font-weight: var(--wl-fw-bold);
    color: var(--wl-primary);
}

/* ══════════════════════════════════════════════════════════════
   CART ENHANCEMENTS
   ══════════════════════════════════════════════════════════════ */

.wl-cart-trust {
    display: flex;
    gap: var(--wl-space-3);
    margin-top: var(--wl-space-5);
    justify-content: center;
    flex-wrap: wrap;
}

.wl-cart-trust span {
    font-size: var(--wl-fs-xs);
    color: var(--wl-text-muted);
    display: flex;
    align-items: center;
    gap: var(--wl-space-1);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE - Content & Blog
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .wl-content-layout {
        grid-template-columns: 1fr;
        gap: var(--wl-space-8);
    }

    .wl-content-layout--reverse {
        grid-template-columns: 1fr;
    }

    .wl-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wl-trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wl-page-header {
        padding: var(--wl-space-10) 0;
    }

    .wl-page-header__title {
        font-size: var(--wl-fs-2xl);
    }

    .wl-blog-header__title {
        font-size: var(--wl-fs-2xl);
    }

    .wl-blog-grid {
        grid-template-columns: 1fr;
    }

    .wl-team-grid {
        grid-template-columns: 1fr;
    }

    .wl-values-grid {
        grid-template-columns: 1fr;
    }

    .wl-trust-bar {
        grid-template-columns: 1fr;
    }

    .wl-contact-grid {
        flex-direction: column;
        gap: var(--wl-space-6);
    }

    .wl-content-section {
        padding: var(--wl-space-10) 0;
    }

    .wl-blog-content {
        padding: var(--wl-space-8) 0 var(--wl-space-12);
    }
}

/* ── Admin bar offset ─────────────────────────────────────────── */

.admin-bar .wl-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .wl-header {
        top: 46px;
    }
}

/* ── Suchseite (search.php) ───────────────────────────────────── */

.wl-search-header {
    margin-bottom: var(--wl-space-8);
}

.wl-search-header__title {
    font-size: var(--wl-fs-2xl);
}

.wl-search-empty {
    text-align: center;
    padding: var(--wl-space-12) var(--wl-space-4);
}

.wl-search-empty__hint {
    color: var(--wl-text-muted);
    margin-bottom: var(--wl-space-6);
}

.wl-search-empty__form {
    max-width: 480px;
    margin: 0 auto var(--wl-space-10);
}

.wl-search-did-you-mean {
    margin-top: var(--wl-space-10);
    text-align: left;
}

.wl-search-did-you-mean__heading {
    font-size: var(--wl-fs-lg);
    margin-bottom: var(--wl-space-6);
    color: var(--wl-text-muted);
}

