/* === EINBAU CATEGORY PAGE - 2025 PREMIUM DESIGN === */
/* Reusable CSS for custom product category pages */

.wks-einbau-page {
    background: #fafafa;
    color: #2a2a2a;
    font-family: var(--wks-font-sans);
}

/* Breadcrumbs - inside hero */
.wks-einbau-page .wks-breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #666;
}
.wks-einbau-page .wks-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}
.wks-einbau-page .wks-breadcrumb a:hover {
    color: var(--wks-gold-accent);
}
.wks-einbau-page .wks-breadcrumb span {
    color: #2a2a2a;
}

/* ============================================
   SHARED STYLES FOR ALL TAXONOMY PAGES
   ============================================ */

/* Breadcrumbs */
.wks-breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #666;
}

.wks-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wks-breadcrumb a:hover {
    color: #d4af37;
}

.wks-breadcrumb span {
    color: #2a2a2a;
}

/* Compact subcategory links (for hub page) */
.wks-subcat-nav {
    max-width: 1080px;
    margin: 0 auto;
    padding: 1rem 1rem 0rem;
}

.wks-subcat-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.wks-subcat-label {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wks-subcat-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.375rem;
}

.wks-subcat-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.5);
}

.wks-subcat-link:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

.wks-subcat-separator {
    color: #cbd5e1;
    font-weight: 400;
}

.wks-subcat-sorting {
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    padding-left: 1rem;
    margin-left: 1rem;
    position: relative;
}

.wks-subcat-sorting::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--wks-gold-accent);
    border-radius: 50%;
    opacity: 0.6;
}

/* Mobile: move sorting back to separate section */
@media (max-width: 768px) {
    .wks-subcat-sorting {
        display: none;
    }

    .wks-filter-controls-compact .wks-ordering-compact {
        display: inline-block !important;
    }

    /* Mobile: put KATEGORIEN next to models */
    .wks-subcat-wrapper {
        flex-wrap: wrap;
        align-items: center;
        gap: 0.25rem 0.5rem;
    }

    .wks-subcat-nav {
        padding: 0.75rem 1rem 1rem;
    }

    .wks-subcat-label {
        font-size: 0.7rem;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-weight: 600;
        margin-right: 0.25rem;
    }

    .wks-subcat-link {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
        margin: 0;
    }

    .wks-subcat-separator {
        margin: 0 0.2rem;
    }
}

/* SEO Footer styling (for all taxonomy pages) */
.wks-category-seo {
    max-width: 1280px;
    margin: 3rem auto 0;
    padding: 2rem 1rem;
    background: rgba(250, 248, 245, 0.5);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

.wks-category-seo h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem;
}

.wks-category-seo h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1.5rem 0 0.75rem;
}

.wks-category-seo p {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 1rem;
}

.wks-category-seo p:last-child {
    margin-bottom: 0;
}

.wks-category-seo a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.2s ease;
}

.wks-category-seo a:hover {
    color: #b8941f;
    text-decoration: underline;
}

.wks-category-seo ul,
.wks-category-seo ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.wks-category-seo li {
    margin-bottom: 0.5rem;
    color: #475569;
    line-height: 1.6;
}

/* Hub page specific hero */
.wks-hub-hero {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f2ed 100%);
    padding: clamp(2.5rem, 5vw, 3.5rem) 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.wks-hub-hero h1 {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.wks-hub-hero p {
    font-size: 1.0625rem;
    color: #475569;
    max-width: 46rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   EINBAU PAGE SPECIFIC STYLES
   ============================================ */

/* Hero Section - Premium Light Design */
.wks-einbau-page .wks-hero {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f2ed 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.wks-einbau-page .wks-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.wks-einbau-page .wks-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.wks-einbau-page .wks-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem;
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 1024px) {
    .wks-einbau-page .wks-hero-inner {
        grid-template-columns: 1.2fr 1fr;
        padding: 4rem 1rem;
    }

    .wks-einbau-page .wks-hero-inner:not(:has(.wks-hero-image img)) {
        grid-template-columns: 1fr;
    }
}
.wks-einbau-page .wks-hero h1 {
    font-family: var(--wks-font-serif);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.25rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}
.wks-einbau-page .wks-hero p {
    margin-top: 1rem;
    color: #334155;
    line-height: 1.7;
    font-size: 1rem;
}
.wks-einbau-page .wks-hero strong {
    color: var(--wks-gold-accent);
    font-weight: 600;
}

/* Hero Buttons */
.wks-einbau-page .wks-hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.wks-einbau-page .wks-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.wks-einbau-page .wks-btn-primary {
    background: linear-gradient(135deg, var(--wks-gold-accent), #c49a2c);
    color: #1a1a1a;
    border: none;
}
.wks-einbau-page .wks-btn-primary:hover {
    background: linear-gradient(135deg, #e8c247, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
    color: #1a1a1a;
}
.wks-einbau-page .wks-btn-secondary {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.6);
    color: var(--wks-gold-accent);
}
.wks-einbau-page .wks-btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--wks-gold-accent);
    color: var(--wks-gold-accent);
}

/* Hero Features */
.wks-einbau-page .wks-hero-features {
    margin-top: 2rem;
    display: grid;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #475569;
    list-style: none;
    padding: 0;
}
@media (min-width: 640px) {
    .wks-einbau-page .wks-hero-features {
        grid-template-columns: 1fr 1fr;
    }
}
.wks-einbau-page .wks-hero-features li {
    padding-left: 1.5rem;
    position: relative;
    list-style: none;
}
.wks-einbau-page .wks-hero-features li::marker {
    display: none;
}
.wks-einbau-page .wks-hero-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wks-gold-accent);
    font-weight: 700;
}
.wks-einbau-page .wks-hero-features li svg {
    display: none;
}

/* Hero Image */
.wks-einbau-page .wks-hero-image img {
    width: 100%;
    height: auto;
    max-height: 420px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}
.wks-einbau-page .wks-hero-image img:hover {
    transform: translateY(-4px);
}

/* Sections */
.wks-einbau-page .wks-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4rem) 1rem;
}
.wks-einbau-page .wks-section-alt {
    background: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}
.wks-einbau-page .wks-section h2 {
    font-family: var(--wks-font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    text-align: center;
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
}
.wks-einbau-page .wks-section h3 {
    font-family: var(--wks-font-serif);
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: #1a1a1a;
    font-size: 1.1rem;
}
.wks-einbau-page .wks-section p {
    line-height: 1.7;
    color: #2a2a2a;
}

/* Brand Teaser - BODEGA43 (for category pages) */
.wks-einbau-page .wks-brand-teaser {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f2ed 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: clamp(2rem, 4vw, 3rem) 1rem;
}
.wks-einbau-page .wks-brand-teaser h2 {
    margin-bottom: 1rem;
}
.wks-einbau-page .wks-brand-teaser p {
    margin: 0;
}
.wks-einbau-page .wks-brand-teaser strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Brand Features Grid - BODEGA43 (for brand page) */
.wks-einbau-page .wks-brand-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (min-width: 640px) {
    .wks-einbau-page .wks-brand-features {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .wks-einbau-page .wks-brand-features {
        grid-template-columns: repeat(3, 1fr);
    }
}
.wks-einbau-page .wks-brand-features article {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}
.wks-einbau-page .wks-brand-features article:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}
.wks-einbau-page .wks-brand-features h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}
.wks-einbau-page .wks-brand-features p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}
.wks-einbau-page .wks-brand-features strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Table of Contents - Minimal horizontal scroll design */
.wks-einbau-page .wks-toc {
    padding: 1rem 0;
    margin: 0 auto;
    max-width: 1280px;
    overflow: hidden;
}
.wks-einbau-page .wks-toc h2 {
    font-size: 0.75rem;
    margin: 0 0 0.75rem 0;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    font-family: var(--wks-font-sans);
}
.wks-einbau-page .wks-toc-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.3) transparent;
}
.wks-einbau-page .wks-toc-scroll::-webkit-scrollbar {
    height: 4px;
}
.wks-einbau-page .wks-toc-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.wks-einbau-page .wks-toc-scroll::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 2px;
}
.wks-einbau-page .wks-toc-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}
.wks-einbau-page .wks-toc ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 0.5rem;
    width: max-content;
}
.wks-einbau-page .wks-toc li {
    flex-shrink: 0;
}
.wks-einbau-page .wks-toc a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.wks-einbau-page .wks-toc a:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--wks-gold-accent);
    transform: translateY(-1px);
}

/* Product Grid */
.wks-einbau-page .wks-product-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .wks-einbau-page .wks-product-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .wks-einbau-page .wks-product-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Product Cards */
.wks-einbau-page .wks-product-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Center product images */
.wks-einbau-page .wks-product-card > a:first-child {
    display: block;
    margin-bottom: 1rem;
    text-align: center;
}

.wks-einbau-page .wks-product-card > a:first-child img {
    display: inline-block;
    vertical-align: middle;
}

/* Ensure consistent title spacing without changing images */
.wks-einbau-page .wks-product-card h3 {
    margin-top: auto !important;
    margin-bottom: 0.75rem !important;
    min-height: 3.5rem !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
}

.wks-einbau-page .wks-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Enhanced WooCommerce product title styling */
.wks-einbau-page .woocommerce-loop-product__title,
.wks-einbau-page .woocommerce-loop-product__title a {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #1a1a1a !important;
    margin: 0.5rem 0 0.75rem 0 !important;
    text-decoration: none !important;
    display: block !important;
    transition: color 0.3s ease !important;
}

.wks-einbau-page .woocommerce-loop-product__title a:hover {
    color: var(--wks-gold-accent) !important;
}

/* Enhanced price styling */
.wks-einbau-page .woocommerce-Price-amount,
.wks-einbau-page .woocommerce-Price-amount bdi,
.wks-einbau-page .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: var(--wks-gold-accent) !important;
    margin: 0.75rem 0 1rem 0 !important;
}

.wks-einbau-page .woocommerce-product-price ins .woocommerce-Price-amount {
    color: #059669 !important;
}

/* Product meta information styling (specs below title) */
.wks-einbau-page .product_meta,
.wks-einbau-page .product_meta span,
.wks-einbau-page .product_meta a {
    font-size: 0.8rem !important;
    color: #64748b !important;
    text-decoration: none !important;
    margin-top: 0.25rem !important;
}

.wks-einbau-page .product_meta {
    margin-bottom: 0.75rem !important;
    line-height: 1.4 !important;
}

/* Mobile-specific improvements for product specs */
@media (max-width: 768px) {
    .wks-einbau-page .product_meta {
        font-size: 0.75rem !important;
        margin-bottom: 1rem !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.5rem 1rem !important;
        align-items: center !important;
    }

    .wks-einbau-page .product_meta span {
        display: inline-flex !important;
        align-items: center !important;
        padding: 0.25rem 0.5rem !important;
        background: rgba(212, 175, 55, 0.08) !important;
        border-radius: 4px !important;
        white-space: nowrap !important;
    }

    .wks-einbau-page .product_meta .posted_in {
        display: none !important; /* Hide "Category:" prefix on mobile */
    }

    .wks-einbau-page .product_meta .tagged_as:before {
        content: "Tags:" !important;
        font-weight: 600 !important;
        margin-right: 0.25rem !important;
    }

    /* Fix for price-wrapper table overflow on mobile */
    .wks-einbau-page .price-wrapper {
        overflow: visible !important;
        width: 100% !important;
    }

    .wks-einbau-page .price-wrapper table {
        width: 100% !important;
        table-layout: fixed !important;
        border-collapse: collapse !important;
        font-size: 0.7rem !important;
        margin: 0 !important;
    }

    .wks-einbau-page .price-wrapper table th,
    .wks-einbau-page .price-wrapper table td {
        padding: 0.3rem !important;
        text-align: left !important;
        border: 1px solid #e5e7eb !important;
        word-break: break-word !important;
        hyphens: auto !important;
        white-space: normal !important;
        vertical-align: top !important;
        line-height: 1.3 !important;
    }

    .wks-einbau-page .price-wrapper table th {
        background: #f9fafb !important;
        font-weight: 600 !important;
        width: 75% !important;
        font-size: 0.65rem !important;
        padding-right: 0.2rem !important;
    }

    .wks-einbau-page .price-wrapper table td {
        width: 25% !important;
        font-weight: 500 !important;
        font-size: 0.65rem !important;
        padding-left: 0.2rem !important;
    }

    /* Alternative mobile layout for product specs table */
    .wks-einbau-page .price-wrapper > div:first-child {
        margin-bottom: 1rem !important;
    }
}

/* Tables */
.wks-einbau-page .wks-table-wrap {
    margin-top: 2rem;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.wks-einbau-page table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.9rem;
}
.wks-einbau-page table thead {
    background: linear-gradient(135deg, var(--wks-gold-accent), #c49a2c);
}
.wks-einbau-page table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}
.wks-einbau-page table td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    color: #2a2a2a;
}
.wks-einbau-page table tbody tr {
    background: #fff;
    transition: background 0.2s ease;
}
.wks-einbau-page table tbody tr:hover {
    background: #fafafa;
}
.wks-einbau-page table tbody tr:last-child td {
    border-bottom: none;
}
.wks-einbau-page table a {
    color: var(--wks-gold-accent);
    text-decoration: none;
    font-weight: 600;
}
.wks-einbau-page table a:hover {
    color: #b8941f;
}

/* Guide Grid */
.wks-einbau-page .wks-guide-grid {
    margin-top: 2rem;
    display: grid;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .wks-einbau-page .wks-guide-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
.wks-einbau-page .wks-guide-grid article {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}
.wks-einbau-page .wks-guide-grid article:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}
.wks-einbau-page .wks-guide-grid ul {
    margin-top: 0.75rem;
    padding-left: 0;
    list-style: none;
}
.wks-einbau-page .wks-guide-grid li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
    font-size: 0.9rem;
}
.wks-einbau-page .wks-guide-grid li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--wks-gold-accent);
}

/* CTA Box */
.wks-einbau-page .wks-cta-box {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, rgba(107, 45, 45, 0.1), rgba(212, 175, 55, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
@media (min-width: 640px) {
    .wks-einbau-page .wks-cta-box {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem 2rem;
    }
}
.wks-einbau-page .wks-cta-box p {
    margin: 0;
    color: #1a1a1a;
    font-weight: 500;
}

/* Steps */
.wks-einbau-page .wks-steps {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .wks-einbau-page .wks-steps {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
.wks-einbau-page .wks-steps li {
    list-style: none;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 3.5rem;
}
.wks-einbau-page .wks-steps li:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}
.wks-einbau-page .wks-steps li::before {
    content: counter(list-item);
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--wks-gold-accent), #c49a2c);
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wks-einbau-page .wks-steps strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Error Grid */
.wks-einbau-page .wks-error-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .wks-einbau-page .wks-error-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.wks-einbau-page .wks-error-card {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.wks-einbau-page .wks-error-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* FAQ */
.wks-einbau-page .wks-faq {
    margin-top: 2rem;
}
.wks-einbau-page .wks-faq details {
    padding: 1.25rem 0;
    border-bottom: 1px solid #e0e0e0;
}
.wks-einbau-page .wks-faq details:first-child {
    border-top: 1px solid #e0e0e0;
}
.wks-einbau-page .wks-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.05rem;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease;
}
.wks-einbau-page .wks-faq summary::-webkit-details-marker {
    display: none;
}
.wks-einbau-page .wks-faq summary::before {
    content: '+';
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--wks-gold-accent), #c49a2c);
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.wks-einbau-page .wks-faq details[open] summary::before {
    content: '−';
    transform: rotate(180deg);
}
.wks-einbau-page .wks-faq summary:hover {
    color: var(--wks-gold-accent);
}
.wks-einbau-page .wks-faq details[open] summary {
    margin-bottom: 1rem;
}
.wks-einbau-page .wks-faq .wks-answer {
    color: #2a2a2a;
    line-height: 1.7;
    padding-left: 2.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .wks-einbau-page .wks-hero-inner {
        padding: 2rem 1rem;
    }
    .wks-einbau-page .wks-section {
        padding: 2rem 1rem;
    }
    .wks-einbau-page .wks-steps li {
        padding-left: 1.5rem;
    }
    .wks-einbau-page .wks-steps li::before {
        position: static;
        display: inline-flex;
        margin-right: 0.75rem;
        margin-bottom: 0.5rem;
    }
}

/* ============================================
   KAUFBERATUNG PAGE SPECIFIC STYLES
   ============================================ */

/* Guide section grouping */
.wks-guide-section {
    margin-bottom: 3rem;
}

.wks-guide-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

/* Price tiers */
.wks-price-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.wks-price-tier {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.wks-price-tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.wks-price-tier h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.wks-price-tier ul {
    margin: 1rem 0;
}

.wks-price-tier ul li {
    padding: 0.5rem 0;
    color: #334155;
    font-size: 0.9375rem;
}

/* Quality checklist */
.wks-quality-checklist {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.wks-quality-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--wks-gold-accent);
}

.wks-quality-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.wks-quality-item p {
    margin: 0.5rem 0;
    color: #334155;
}

.wks-quality-item p strong {
    color: #1e293b;
}

/* Must-have list */
.wks-must-have-list {
    margin-top: 2rem;
}

.wks-must-have-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.wks-must-have-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

/* Budget sections */
.wks-budget-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.wks-budget-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.wks-budget-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.wks-budget-section ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #334155;
}

.wks-budget-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--wks-gold-accent);
    font-weight: 700;
}

/* Decision tree */
.wks-decision-tree {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.wks-decision-step {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.wks-decision-step h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.wks-decision-step ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.wks-decision-step ul li {
    padding: 0.5rem 0;
    color: #334155;
}

/* Size guide */
.wks-size-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.wks-size-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.wks-size-category h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.wks-size-category p {
    margin: 0.75rem 0;
    color: #334155;
}

.wks-size-category p strong {
    color: #1e293b;
}

/* Comparison tables */
.wks-comparison-table {
    margin-top: 2rem;
    background: white;
    border-radius: 12px;
    padding: 1rem;
}

.wks-comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.wks-comparison-table th,
.wks-comparison-table td {
    padding: 1rem;
    text-align: left;
}

.wks-comparison-table thead {
    background: rgba(212, 175, 55, 0.1);
}

.wks-comparison-table th {
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.wks-comparison-table td {
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
}

.wks-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive adjustments for Kaufberatung */
@media (max-width: 768px) {
    .wks-price-tiers,
    .wks-size-guide {
        grid-template-columns: 1fr;
    }

    .wks-comparison-table {
        overflow-x: auto;
    }

    .wks-comparison-table table {
        min-width: 600px;
    }

    .wks-guide-section-title {
        font-size: 1.25rem;
    }
}

/* ============================================
   HOMEPAGE SPECIFIC STYLES
   ============================================ */

/* Homepage Hero - More spacious and centered */
.wks-home-hero {
    text-align: center;
    padding: clamp(2rem, 5vw, 3.5rem) 1rem;
}

.wks-home-hero .wks-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wks-hero-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.25rem);
    margin: 0;
}

.wks-hero-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.wks-hero-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0 auto 1.5rem;
    color: #334155;
}

.wks-home-hero .wks-hero-buttons {
    justify-content: center;
}

.wks-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1024px) {
    .wks-hero-body {
        flex-direction: row;
        text-align: left;
    }

    .wks-hero-content {
        flex: 1;
    }

    .wks-hero-image {
        flex: 1;
    }

    .wks-home-hero .wks-hero-buttons {
        justify-content: flex-start;
    }
}

.wks-home-page .wks-section h2,
.wks-home-page .wks-section-alt h2 {
    text-align: center;
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
}

/* Category Grid */
.wks-home-categories {
    background: #fff;
}

.wks-category-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .wks-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wks-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wks-category-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), transparent);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.wks-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.wks-category-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
}

.wks-category-card h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wks-category-card h3 a:hover {
    color: var(--wks-gold-accent);
}

.wks-category-card p {
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0 0 1rem;
}

.wks-category-card .wks-link {
    display: inline-block;
    color: var(--wks-gold-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.wks-category-card .wks-link:hover {
    color: #b8941f;
    transform: translateX(4px);
}

/* Testimonials */
.wks-testimonials {
    text-align: center;
}

.wks-testimonial-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

@media (min-width: 768px) {
    .wks-testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wks-testimonial {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 2rem;
    margin: 0;
    transition: all 0.3s ease;
}

.wks-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.wks-testimonial p {
    font-size: 0.9375rem;
    font-style: italic;
    color: #334155;
    line-height: 1.7;
    margin: 0 0 1rem;
}

.wks-testimonial cite {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    color: #1a1a1a;
}

.wks-service-highlights {
    max-width: 900px;
    margin: 2.5rem auto 0;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.wks-service-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .wks-service-highlights ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

.wks-service-highlights li {
    font-size: 0.9375rem;
    color: #334155;
    text-align: center;
}

.wks-service-highlights li strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* FAQ Teaser - Compact version */
.wks-faq-teaser {
    max-width: 900px;
    margin: 2rem auto 0;
}

.wks-faq-teaser details {
    padding: 1rem 0;
}

.wks-faq-teaser summary {
    font-size: 1rem;
}

/* Solution Grid (for Einbau/Freistehend and Premium Details sections) */
.wks-solution-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .wks-solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wks-solution-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.wks-solution-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.wks-solution-body {
    padding: 1.75rem;
}

.wks-solution-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem;
}

.wks-solution-card p {
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0 0 1rem;
}

.wks-solution-card .wks-link {
    display: inline-block;
    color: var(--wks-gold-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.wks-solution-card .wks-link:hover {
    color: #b8941f;
    transform: translateX(4px);
}

/* Media Layouts for image + content sections */
.wks-media-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.wks-media-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.wks-media-content {
    flex: 1;
}

.wks-media-layout.wks-media-reverse .wks-media-image {
    order: 2;
}

@media (min-width: 1024px) {
    .wks-media-layout {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .wks-media-image,
    .wks-media-content {
        flex: 1;
    }

    .wks-media-layout.wks-media-reverse .wks-media-image {
        order: 0;
    }
}

