/* === Reset === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --wk-text: #1d1d1f;
    --wk-muted: #6e6e73;
    --wk-soft: #f5f5f7;
    --wk-panel: rgba(255, 255, 255, 0.76);
    --wk-panel-strong: rgba(255, 255, 255, 0.92);
    --wk-border: rgba(0, 0, 0, 0.08);
    --wk-blue: #0071e3;
    --wk-blue-dark: #005bb8;
    --wk-green: #17805d;
    --wk-green-soft: rgba(23, 128, 93, 0.12);
    --wk-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
    --wk-shadow-hover: 0 24px 58px rgba(0, 0, 0, 0.13);
}

/* === Grundlayout === */
html {
    background: #f5f5f7;
}

body {
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 245, 247, 0.96) 42%, #f5f5f7 100%),
        linear-gradient(135deg, rgba(0, 113, 227, 0.10) 0%, rgba(23, 128, 93, 0.10) 48%, rgba(255, 255, 255, 0) 100%);
    min-height: 100vh;
    color: var(--wk-text);
    line-height: 1.6;
    padding-bottom: 0;
    overflow-x: hidden;
}

a {
    color: var(--wk-blue);
    text-decoration: none;
}

a:hover {
    color: var(--wk-blue-dark);
    text-decoration: none;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px;
}

main.container {
    flex: 1 0 auto;
    width: 100%;
    padding-top: 38px;
}

main.container > .container {
    padding-left: 0;
    padding-right: 0;
}

/* === Header === */
header {
    background: rgba(251, 251, 253, 0.78);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    min-height: 68px;
}

/* === Logo === */
.logo {
    display: inline-flex;
    align-items: center;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(120deg, var(--wk-blue), var(--wk-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.logo:hover,
.logo:visited,
.logo:active {
    text-decoration: none;
}

/* === Navigation === */
.main-nav {
    margin-left: auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 7px;
    align-items: center;
    justify-content: flex-end;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    color: var(--wk-text);
    font-size: 14px;
    font-weight: 600;
    padding: 9px 12px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover {
    background: rgba(0, 113, 227, 0.09);
    color: var(--wk-blue);
}

/* === Dropdown-Menü === */
.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 8px;
    z-index: 1000;
}

.dropdown li {
    display: block;
}

.dropdown a {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 11px 13px;
    border-radius: 12px;
    color: var(--wk-text);
    white-space: nowrap;
}

.dropdown a:hover {
    background-color: rgba(0, 113, 227, 0.08);
}

/* === Untermenü im Dropdown === */
.has-subdropdown {
    position: relative;
}

.has-subdropdown::after {
    content: "";
    display: none;
    position: absolute;
    top: -8px;
    right: -14px;
    width: 16px;
    height: calc(100% + 16px);
}

.has-subdropdown:hover::after {
    display: block;
}

.has-subdropdown:hover .subdropdown {
    display: block;
}

.subdropdown {
    display: none;
    position: absolute;
    top: -8px;
    left: 100%;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 8px;
    z-index: 1001;
}

.subdropdown li {
    display: block;
}

.subdropdown a {
    display: block;
    padding: 11px 13px;
    color: var(--wk-text);
    white-space: nowrap;
}

.subdropdown a:hover {
    background-color: rgba(23, 128, 93, 0.09);
    color: var(--wk-green);
}

.submenu-arrow {
    margin-left: auto;
    font-size: 11px;
}

/* === Warenkorb-Icon === */
.cart-icon {
    background: linear-gradient(135deg, var(--wk-blue), var(--wk-green));
    color: white;
    border: none;
    padding: 10px 17px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 4px;
    box-shadow: 0 10px 26px rgba(0, 113, 227, 0.24);
}

.cart-icon:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(23, 128, 93, 0.25);
}

.cart-count {
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: white;
    min-width: 24px;
    padding: 3px 8px;
    font-size: 12px;
    text-align: center;
}

.cart-text {
    display: inline;
}

/* === Mobile Menü === */
.menu-toggle {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    display: none;
}

/* === Überschriften & Formulare === */
h2 {
    max-width: 940px;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 700;
    margin: 24px 0 18px;
}

h2 small {
    display: inline-block;
    color: var(--wk-muted);
    font-size: 0.52em;
    font-weight: 600;
}

h2 i {
    color: var(--wk-blue);
}

h3 {
    font-size: 22px;
    line-height: 1.18;
    font-weight: 700;
    margin-bottom: 10px;
}

p {
    color: var(--wk-muted);
}

form {
    margin-top: 10px;
}

label {
    display: block;
    margin-bottom: 7px;
    color: #424245;
    font-size: 14px;
    font-weight: 700;
}

select,
input[type="text"],
input[type="email"],
input[type="number"],
textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--wk-text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus {
    border-color: rgba(0, 113, 227, 0.7);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}

/* === Button-Design === */
button {
    background: linear-gradient(135deg, var(--wk-blue), var(--wk-blue-dark));
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    width: 100%;
    box-shadow: 0 12px 28px rgba(0, 113, 227, 0.22);
}

button:hover {
    background: linear-gradient(135deg, var(--wk-blue-dark), var(--wk-green));
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(23, 128, 93, 0.22);
}

#bestellbutton:not(:disabled),
a[style*="background:#007AFF"],
a[href*="/customer/paypal_create.php"],
a[href*="/customer/dashboard.php?customer_id="] {
    background: linear-gradient(135deg, var(--wk-blue), var(--wk-blue-dark)) !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 12px 28px rgba(0, 113, 227, 0.22) !important;
}

#bestellbutton:not(:disabled):hover,
a[style*="background:#007AFF"]:hover,
a[href*="/customer/paypal_create.php"]:hover,
a[href*="/customer/dashboard.php?customer_id="]:hover {
    background: linear-gradient(135deg, var(--wk-blue-dark), var(--wk-green)) !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 16px 34px rgba(23, 128, 93, 0.22) !important;
}

/* === Preisbox === */
#preisBox {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--wk-border);
    border-radius: 18px;
    padding: 16px;
    margin-top: 10px;
    font-size: 16px;
    color: var(--wk-text);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

/* === Grid & Karten für Produkte (Apple-Style) === */
.menge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    margin-top: 32px;
}

.menge-card {
    position: relative;
    min-height: 100%;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.78)),
        rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 26px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.075);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menge-card::before {
    content: "";
    display: block;
    height: 5px;
    background: linear-gradient(90deg, var(--wk-blue), #33b6ff, var(--wk-green));
}

.menge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.11);
    border-color: rgba(0, 113, 227, 0.16);
}

.card-header {
    background:
        linear-gradient(135deg, rgba(0, 113, 227, 0.09), rgba(23, 128, 93, 0.08)),
        rgba(255, 255, 255, 0.64);
    padding: 26px 24px 20px;
    text-align: left;
}

.card-header h3 {
    margin-bottom: 0;
    font-size: 26px;
    letter-spacing: 0;
}

.card-body {
    padding: 24px;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
}

.card-body p {
    margin-bottom: 0;
}

.card-body > p:first-child {
    min-height: 58px;
}

.card-body > p:not(:first-child) a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(0, 113, 227, 0.07);
    color: var(--wk-blue);
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.card-body > p:not(:first-child) a:hover {
    background: var(--wk-green-soft);
    color: var(--wk-green);
    transform: translateX(2px);
}

.card-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 9px;
    color: #424245;
    line-height: 1.38;
}

.card-body .fa-check,
.card-body .fa-plus {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--wk-green);
}

.card-body select {
    min-height: 48px;
    margin-bottom: 6px;
    background: rgba(255, 255, 255, 0.9);
}

.card-body button {
    margin-top: auto;
    min-height: 50px;
}

.apple-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.34)),
        rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px) saturate(1.12);
    -webkit-backdrop-filter: blur(16px) saturate(1.12);
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.075);
}

/* === Allgemeine Unterseiten im Apple-Look === */
main.container > .container:not(.wk-home):not(.wk-home-apple) {
    position: relative;
}

main.container > .container:not(.wk-home):not(.wk-home-apple) > h2:first-child {
    max-width: 860px;
    margin: 0 0 28px;
    padding: 28px 0 8px;
    font-size: clamp(36px, 4.8vw, 64px);
    line-height: 1.04;
    font-weight: 800;
}

main.container > .container:not(.wk-home):not(.wk-home-apple) > h2:first-child small {
    display: block;
    margin-top: 8px;
    color: var(--wk-muted);
    font-size: 18px;
    font-weight: 650;
}

main.container > .container:not(.wk-home):not(.wk-home-apple) > h2:first-child i {
    color: var(--wk-blue);
}

main.container > .container:not(.wk-home):not(.wk-home-apple) > h2:first-child::after {
    width: 116px;
    height: 5px;
}

main.container > .container:not(.wk-home):not(.wk-home-apple) > .apple-card,
main.container > .container:not(.wk-home):not(.wk-home-apple) .agb-layout > section > .apple-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(246, 250, 255, 0.58)),
        rgba(255, 255, 255, 0.42);
    border-color: rgba(255, 255, 255, 0.72);
    border-radius: 30px;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.08);
}

main.container > .container:not(.wk-home):not(.wk-home-apple) > .apple-card h3 {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
}

main.container > .container:not(.wk-home):not(.wk-home-apple) > .apple-card p {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.5;
}

main.container > .container:not(.wk-home):not(.wk-home-apple) > .apple-card a:not(.wk-button) {
    font-weight: 750;
}

main.container table {
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: var(--wk-shadow);
}

main.container table thead {
    background:
        linear-gradient(135deg, rgba(0, 113, 227, 0.08), rgba(23, 128, 93, 0.08)),
        rgba(255, 255, 255, 0.84);
}

main.container table th {
    color: #424245;
    font-size: 14px;
    font-weight: 800;
}

main.container table td {
    background: rgba(255, 255, 255, 0.52);
}

main.container label {
    display: inline-block;
    margin-bottom: 7px;
    color: #424245;
    font-size: 14px;
    font-weight: 750;
}

main.container input[type="text"],
main.container input[type="email"],
main.container input[type="number"],
main.container textarea,
main.container select {
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

main.container input[type="text"]:focus,
main.container input[type="email"]:focus,
main.container input[type="number"]:focus,
main.container textarea:focus,
main.container select:focus {
    border-color: rgba(0, 113, 227, 0.52);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
    outline: none;
}

/* === Warenkorb, Checkout und Kundenbereich === */
main.container > .container:not(.wk-home):not(.wk-home-apple) form {
    max-width: none;
}

main.container > .container:not(.wk-home):not(.wk-home-apple) table {
    width: 100%;
    margin: 22px 0 28px;
    border-collapse: separate !important;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(246, 250, 255, 0.66)),
        rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.075);
}

main.container > .container:not(.wk-home):not(.wk-home-apple) table th {
    padding: 16px 14px !important;
    background:
        linear-gradient(135deg, rgba(0, 113, 227, 0.08), rgba(23, 128, 93, 0.08)),
        rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important;
    color: #424245;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

main.container > .container:not(.wk-home):not(.wk-home-apple) table td {
    padding: 14px !important;
    background: rgba(255, 255, 255, 0.46);
    border-bottom: 1px solid rgba(0, 0, 0, 0.055) !important;
    color: #424245;
}

main.container > .container:not(.wk-home):not(.wk-home-apple) table tr:last-child td {
    border-bottom: none !important;
}

main.container > .container:not(.wk-home):not(.wk-home-apple) table a {
    font-weight: 800;
}

main.container > .container:not(.wk-home):not(.wk-home-apple) .apple-card + .apple-card {
    margin-top: 22px;
}

main.container > .container:not(.wk-home):not(.wk-home-apple) div[style*="text-align:center"][style*="box-shadow"],
main.container > .container:not(.wk-home):not(.wk-home-apple) div[style*="text-align: center"][style*="box-shadow"] {
    border: 1px solid rgba(255, 255, 255, 0.68) !important;
    border-radius: 22px !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(246, 250, 255, 0.62)),
        rgba(255, 255, 255, 0.58) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.065) !important;
}

main.container > .container:not(.wk-home):not(.wk-home-apple) label[style*="cursor:pointer"] > div {
    min-height: 118px;
    display: grid;
    place-items: center;
}

main.container > .container:not(.wk-home):not(.wk-home-apple) input[type="checkbox"],
main.container > .container:not(.wk-home):not(.wk-home-apple) input[type="radio"] {
    accent-color: var(--wk-blue);
}

main.container > .container:not(.wk-home):not(.wk-home-apple) hr {
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
}

main.container > .container:not(.wk-home):not(.wk-home-apple) p[style*="color: green"],
main.container > .container:not(.wk-home):not(.wk-home-apple) p[style*="color:green"] {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(23, 128, 93, 0.08);
    color: var(--wk-green) !important;
}

/* === Grafische Vorbereitung fuer spaetere Marketingmotive === */
main.container > .container > p:first-of-type {
    max-width: 780px;
    font-size: 18px;
}

main.container > .container > h2:first-child {
    position: relative;
    padding-top: 8px;
}

main.container > .container > h2:first-child::after {
    content: "";
    display: block;
    width: 88px;
    height: 4px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--wk-blue), var(--wk-green));
}

/* === Startseite SEO-/Content-Bereiche === */
.wk-home {
    padding-top: 0;
}

.wk-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
    gap: 34px;
    align-items: center;
    min-height: 560px;
    padding: 34px 0 42px;
}

.wk-eyebrow,
.wk-section-kicker {
    margin-bottom: 10px;
    color: var(--wk-green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.wk-hero h1 {
    max-width: 780px;
    margin: 0 0 18px;
    font-size: 64px;
    line-height: 1.02;
    font-weight: 800;
}

.wk-lead,
.wk-section-intro {
    max-width: 780px;
    font-size: 20px;
    line-height: 1.48;
}

.wk-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.wk-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 13px 19px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--wk-blue), var(--wk-blue-dark));
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(0, 113, 227, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wk-button:hover {
    background: linear-gradient(135deg, var(--wk-blue-dark), var(--wk-green));
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(23, 128, 93, 0.22);
}

.wk-button-secondary {
    background: rgba(255, 255, 255, 0.74);
    color: var(--wk-text);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.wk-button-secondary:hover {
    background: rgba(23, 128, 93, 0.10);
    color: var(--wk-green);
    box-shadow: 0 14px 32px rgba(23, 128, 93, 0.12);
}

.wk-hero-panel {
    display: grid;
    gap: 16px;
}

.wk-hero-visual,
.wk-section-visual,
.wk-wide-visual,
.wk-product-visual {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--wk-shadow);
}

.wk-hero-visual img,
.wk-section-visual img,
.wk-wide-visual img,
.wk-product-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate3d(var(--wk-parallax-x, 0), var(--wk-parallax-y, 0), 0) scale(1.055);
    transition: transform 0.18s linear;
    will-change: transform;
}

.wk-hero-visual figcaption,
.wk-section-visual figcaption,
.wk-wide-visual figcaption,
.wk-product-visual figcaption {
    position: absolute;
    left: 24px;
    bottom: 24px;
    max-width: min(420px, calc(100% - 48px));
    padding: 17px 19px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px) saturate(1.18);
    -webkit-backdrop-filter: blur(14px) saturate(1.18);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.07);
    opacity: var(--wk-caption-opacity, 1);
    transform: translate3d(var(--wk-caption-shift, 0), 0, 0);
    transition: opacity 0.18s linear, transform 0.18s linear;
    will-change: opacity, transform;
}

.wk-hero-visual figcaption span,
.wk-section-visual figcaption span,
.wk-wide-visual figcaption span,
.wk-product-visual figcaption span {
    display: block;
    margin-bottom: 4px;
    color: var(--wk-green);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.wk-hero-visual figcaption strong,
.wk-section-visual figcaption strong,
.wk-wide-visual figcaption strong,
.wk-product-visual figcaption strong {
    display: block;
    color: rgba(29, 29, 31, 0.94);
    font-size: 19px;
    line-height: 1.16;
    text-shadow: 0 1px 18px rgba(255, 255, 255, 0.72);
}

.wk-hero-visual {
    position: relative;
    aspect-ratio: 1.2 / 1;
    transform: translateX(10px);
}

.wk-hero-visual img {
    object-position: 58% 50%;
}

.wk-section-visual {
    width: min(1040px, calc(100vw - 32px));
    aspect-ratio: 16 / 7;
    margin: 26px 0 28px;
}

.wk-wide-visual {
    width: min(1120px, calc(100vw - 32px));
    aspect-ratio: 16 / 7;
    margin: 12px 0 26px;
    margin-left: 50%;
    translate: -50% 0;
}

.wk-product-visual {
    aspect-ratio: 16 / 6.4;
    margin: 10px 0 34px;
}

.wk-product-visual-campaign img {
    object-position: 52% 50%;
}

.wk-motion-ready .wk-hero-content,
.wk-motion-ready .wk-hero-visual,
.wk-motion-ready .wk-stat-strip,
.wk-motion-ready .wk-section,
.wk-motion-ready .wk-section-visual,
.wk-motion-ready .wk-wide-visual,
.wk-motion-ready .wk-product-intro,
.wk-motion-ready .wk-product-visual,
.wk-motion-ready .wk-product-details,
.wk-motion-ready .wk-product-faq {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    transition: opacity 0.76s ease, transform 0.76s ease;
    will-change: opacity, transform;
}

.wk-motion-ready .wk-hero-content.wk-inview,
.wk-motion-ready .wk-hero-visual.wk-inview,
.wk-motion-ready .wk-stat-strip.wk-inview,
.wk-motion-ready .wk-section.wk-inview,
.wk-motion-ready .wk-section-visual.wk-inview,
.wk-motion-ready .wk-wide-visual.wk-inview,
.wk-motion-ready .wk-product-intro.wk-inview,
.wk-motion-ready .wk-product-visual.wk-inview,
.wk-motion-ready .wk-product-details.wk-inview,
.wk-motion-ready .wk-product-faq.wk-inview {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.wk-motion-ready .wk-hero-visual.wk-inview,
.wk-motion-ready .wk-section-visual.wk-inview,
.wk-motion-ready .wk-wide-visual.wk-inview,
.wk-motion-ready .wk-product-visual.wk-inview {
    transition-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
    .wk-hero-visual img,
    .wk-section-visual img,
    .wk-wide-visual img,
    .wk-product-visual img,
    .wk-motion-ready .wk-hero-content,
    .wk-motion-ready .wk-hero-visual,
    .wk-motion-ready .wk-stat-strip,
    .wk-motion-ready .wk-section,
    .wk-motion-ready .wk-section-visual,
    .wk-motion-ready .wk-wide-visual,
    .wk-motion-ready .wk-product-intro,
    .wk-motion-ready .wk-product-visual,
    .wk-motion-ready .wk-product-details,
    .wk-motion-ready .wk-product-faq {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.wk-hero-card,
.wk-feature-card,
.wk-goal-card,
.wk-faq-grid > div {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    box-shadow: var(--wk-shadow);
}

.wk-hero-card {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 4px 14px;
    align-items: center;
    padding: 20px;
}

.wk-hero-card .wk-icon {
    grid-row: span 2;
}

.wk-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.12), rgba(23, 128, 93, 0.16));
    color: var(--wk-blue);
    font-size: 20px;
}

.wk-hero-card strong {
    font-size: 20px;
    line-height: 1.15;
}

.wk-hero-card small {
    color: var(--wk-muted);
    font-size: 14px;
}

.wk-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 8px 0 54px;
}

.wk-stat-strip div {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.wk-stat-strip strong {
    display: block;
    font-size: 26px;
    line-height: 1.1;
}

.wk-stat-strip span {
    color: var(--wk-muted);
    font-size: 13px;
}

.wk-section {
    padding: 56px 0;
}

.wk-section h2 {
    margin-top: 0;
}

.wk-two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    gap: 34px;
    align-items: start;
}

.wk-two-column p {
    margin-bottom: 14px;
    font-size: 17px;
}

.wk-feature-grid,
.wk-goal-grid,
.wk-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.wk-feature-card,
.wk-goal-card,
.wk-faq-grid > div {
    padding: 22px;
}

.wk-feature-card i {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--wk-green);
    font-size: 24px;
}

.wk-feature-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.wk-feature-card span {
    color: var(--wk-muted);
}

.wk-goal-card h3,
.wk-faq-grid h3 {
    font-size: 19px;
}

.wk-process {
    border-radius: 30px;
    padding: 42px;
    background:
        linear-gradient(135deg, rgba(0, 113, 227, 0.08), rgba(23, 128, 93, 0.08)),
        rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--wk-shadow);
}

.wk-step-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.wk-step-list div {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.wk-step-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--wk-blue), var(--wk-green));
    color: #ffffff;
    font-weight: 800;
}

.wk-step-list strong {
    display: block;
    margin-bottom: 8px;
}

.wk-final-cta {
    margin-top: 22px;
    padding: 46px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 12%, rgba(23, 128, 93, 0.18), transparent 34%),
        rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.74);
    box-shadow: var(--wk-shadow);
}

/* === Produktseiten SEO-/Content-Bereiche === */
.wk-product-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
    gap: clamp(54px, 5.2vw, 96px);
    align-items: center;
    width: 100vw;
    min-height: calc(100vh - 172px);
    margin-left: calc(50% - 50vw);
    margin-bottom: 54px;
    padding: 30px clamp(22px, 5vw, 78px) 54px;
    overflow: visible;
}

.wk-product-intro {
    max-width: 700px;
    min-width: 0;
    padding: 0;
    transform: translateY(calc(var(--wk-product-hero, 0) * -0.14px));
}

.wk-product-intro h1 {
    max-width: 720px;
    margin: 0 0 20px;
    font-size: clamp(46px, 4.7vw, 74px);
    line-height: 1;
    font-weight: 800;
    text-wrap: balance;
}

.wk-product-pills {
    display: flex;
    flex-wrap: wrap;
    grid-column: 1 / -1;
    justify-content: center;
    gap: 10px;
    width: min(1180px, calc(100vw - 44px));
    margin: -18px auto 0;
}

.wk-product-pills span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(0, 0, 0, 0.07);
    color: #424245;
    font-size: 14px;
    font-weight: 750;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.wk-product-pills i {
    color: var(--wk-green);
}

.wk-product-hero .wk-product-visual {
    justify-self: start;
    width: min(960px, 54vw);
    aspect-ratio: 16 / 10;
    margin: 0 min(-36px, -2vw) 0 0;
    border-radius: 34px 0 0 34px;
    transform: translateX(calc(var(--wk-product-hero, 0) * -0.20px));
}

.wk-product-hero .wk-product-visual img {
    transform: translate3d(calc(var(--wk-product-hero, 0) * 0.10px + var(--wk-parallax-x, 0px)), var(--wk-parallax-y, 0), 0) scale(1.06);
}

.wk-motion-ready .wk-product-hero .wk-product-intro.wk-inview {
    transform: translateY(calc(var(--wk-product-hero, 0) * -0.14px));
}

.wk-motion-ready .wk-product-hero .wk-product-visual.wk-inview {
    transform: translateX(calc(var(--wk-product-hero, 0) * -0.20px));
}

.wk-product-hero + h2 {
    margin: 20px 0 22px;
    padding: 24px 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--wk-shadow);
    font-size: 30px;
    line-height: 1.18;
}

.wk-product-hero + h2 small {
    display: block;
    margin-top: 8px;
    color: var(--wk-muted);
    font-size: 17px;
    font-weight: 600;
}

@media (max-width: 1280px) {
    .wk-product-hero {
        grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
        gap: clamp(38px, 4.4vw, 64px);
    }

    .wk-product-intro h1 {
        max-width: 640px;
        font-size: clamp(42px, 5.1vw, 64px);
    }

    .wk-product-hero .wk-product-visual {
        width: min(780px, 50vw);
        margin-right: 0;
    }
}

.wk-product-details {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    gap: 22px;
    margin-top: 58px;
}

.wk-product-copy,
.wk-product-benefits,
.wk-product-faq {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(245, 250, 255, 0.66)),
        rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 28px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.075);
}

.wk-product-copy,
.wk-product-benefits {
    padding: 30px;
}

.wk-product-copy h2 {
    margin-top: 0;
    font-size: clamp(28px, 3.2vw, 38px);
    line-height: 1.08;
}

.wk-product-copy p {
    font-size: 18px;
    line-height: 1.5;
}

.wk-product-benefits ul {
    list-style: none;
}

.wk-product-benefits li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: #424245;
    line-height: 1.42;
}

.wk-product-benefits i {
    display: inline-grid;
    flex: 0 0 26px;
    place-items: center;
    width: 26px;
    height: 26px;
    margin-top: -2px;
    border-radius: 999px;
    background: rgba(23, 128, 93, 0.1);
    color: var(--wk-green);
}

.wk-product-faq {
    margin-top: 24px;
    padding: 30px;
}

.wk-product-faq .wk-faq-grid > div {
    min-height: 100%;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.64);
}

.wk-product-faq h3 {
    font-size: 20px;
}

.wk-product-faq p {
    line-height: 1.48;
}

/* === Gutscheinbereich im Warenkorb === */
.gutschein-box {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.gutschein-box > div {
    flex: 1 1 250px;
    max-width: 300px;
}

.gutschein-box input[type="text"],
.gutschein-box button {
    height: 38px;
    line-height: 38px;
    box-sizing: border-box;
    vertical-align: middle;
}

.agb-layout {
    display: grid;
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.agb-sidebar {
    position: sticky;
    top: 90px;
}

.agb-sidebar ul {
    list-style: none;
}

.agb-sidebar a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: var(--wk-text);
    text-decoration: none;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.agb-sidebar a:hover {
    background: rgba(0, 113, 227, 0.09);
    color: var(--wk-blue);
    transform: translateX(2px);
}

.agb-section {
    scroll-margin-top: 120px;
    margin-bottom: 20px;
}

.agb-section p {
    font-size: 0.86em;
    margin-bottom: 3px;
}

.agb-box {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(248, 251, 255, 0.68)),
        rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-left: 5px solid var(--wk-blue);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.055);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.agb-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.agb-box p {
    font-size: 15px;
    line-height: 1.54;
    margin-bottom: 9px;
}

.impressum-top {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 28px;
    align-items: center;
}

.impressum-hinweis h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.impressum-hinweis p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.impressum-bild {
    width: 100%;
    border-radius: 26px;
    box-shadow: var(--wk-shadow);
}

footer {
    margin-top: 42px;
    padding: 26px 0;
    color: #86868b;
    font-size: 14px;
}

.footer-copyright {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.footer-copyright .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 0;
    padding-bottom: 0;
}

.footer-links,
.footer-right {
    margin: 0;
    color: #86868b;
}

.footer-right {
    text-align: right;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-links a,
.footer-right a {
    color: #424245;
    font-weight: 600;
}

.footer-links a:hover,
.footer-right a:hover {
    color: var(--wk-blue);
}

@media (max-width: 768px) {
    body {
        padding-bottom: 0;
    }

    .container {
        padding: 16px;
    }

    main.container {
        padding-top: 24px;
    }

    main.container > .container:not(.wk-home):not(.wk-home-apple) table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    main.container > .container:not(.wk-home):not(.wk-home-apple) table th,
    main.container > .container:not(.wk-home):not(.wk-home-apple) table td {
        min-width: 128px;
        white-space: nowrap;
    }

    h2 {
        font-size: 32px;
        line-height: 1.12;
        margin-top: 18px;
    }

    h2 small {
        display: block;
        margin-top: 6px;
        font-size: 0.58em;
    }

    .nav-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 16px;
    }

    .logo {
        flex: 1;
        font-size: 22px;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, var(--wk-blue), var(--wk-green));
        color: #ffffff;
        border: none;
        border-radius: 999px;
        font-size: 20px;
        cursor: pointer;
        padding: 0;
        box-shadow: 0 10px 24px rgba(0, 113, 227, 0.20);
    }

    .menu-toggle i {
        color: #ffffff;
    }

    .menu-toggle:hover {
        transform: none;
    }

    .main-nav {
        width: 100%;
        margin-left: 0;
        order: 3;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 7px;
        padding: 10px 0 0 0;
        margin: 0;
        list-style: none;
    }

    .nav-menu.open {
        display: flex;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        padding-bottom: 20px;
    }

    .nav-menu > li {
        width: 100%;
        display: block;
    }

    .nav-menu > li > a {
        display: flex;
        width: 100%;
        padding: 12px 14px;
        background: rgba(255, 255, 255, 0.82);
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 14px;
        color: var(--wk-text);
        text-decoration: none;
    }

    .nav-menu > li > a:hover {
        background: rgba(0, 113, 227, 0.08);
        color: var(--wk-blue);
    }

    .dropdown {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        margin: 6px 0 8px 0;
        padding: 8px;
        background: rgba(255, 255, 255, 0.86);
        border-radius: 16px;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.07);
        z-index: auto;
    }

    .has-dropdown.open > .dropdown {
        display: block;
    }

    .dropdown li {
        width: 100%;
        display: block;
    }

    .dropdown a {
        display: flex;
        width: 100%;
        padding: 11px 13px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.74);
        margin-bottom: 5px;
        color: var(--wk-text);
        text-decoration: none;
        white-space: normal;
    }

    .dropdown a:hover {
        background: rgba(0, 113, 227, 0.08);
        color: var(--wk-blue);
    }

    .subdropdown {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        margin: 6px 0 8px 0;
        padding: 8px;
        background: rgba(23, 128, 93, 0.06);
        border-radius: 16px;
        box-shadow: none;
        border: 1px solid rgba(23, 128, 93, 0.10);
        z-index: auto;
    }

    .has-subdropdown.open > .subdropdown {
        display: block;
    }

    .subdropdown a {
        display: block;
        width: 100%;
        padding: 10px 13px;
        margin-bottom: 5px;
        background: rgba(255, 255, 255, 0.84);
        border-radius: 12px;
        white-space: normal;
        color: var(--wk-text);
        text-decoration: none;
    }

    .subdropdown a:hover {
        background: rgba(23, 128, 93, 0.10);
        color: var(--wk-green);
    }

    .submenu-arrow {
        margin-left: auto;
        transform: rotate(90deg);
    }

    .has-dropdown:hover .dropdown {
        display: none;
    }

    .has-dropdown.open:hover .dropdown {
        display: block;
    }

    .has-subdropdown:hover .subdropdown {
        display: none;
    }

    .has-subdropdown.open:hover .subdropdown {
        display: block;
    }

    .cart-icon {
        margin-left: 0;
    }

    .cart-text {
        display: none;
    }

    .footer-copyright .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right {
        width: 100%;
        text-align: left;
    }

    .menge-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .menge-card {
        border-radius: 20px;
    }

    .card-header,
    .card-body {
        padding: 19px;
    }

    .wk-product-copy,
    .wk-product-benefits,
    .wk-product-faq,
    .apple-card,
    .agb-box {
        border-radius: 22px;
        padding: 20px;
    }

    .wk-product-copy h2 {
        font-size: 26px;
    }

    .wk-product-faq .wk-faq-grid > div {
        padding: 18px;
        border-radius: 18px;
    }

    .agb-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .agb-sidebar {
        position: static;
    }

    .impressum-top {
        grid-template-columns: 1fr;
    }

    .impressum-bild {
        max-width: 700px;
        margin: 0 auto;
        display: block;
    }

    .wk-hero {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 18px 0 34px;
    }

    .wk-hero-visual {
        aspect-ratio: 16 / 10;
        transform: none;
    }

    .wk-section-visual,
    .wk-wide-visual,
    .wk-product-visual {
        aspect-ratio: 16 / 10;
        border-radius: 24px;
    }

    .wk-hero-visual figcaption,
    .wk-section-visual figcaption,
    .wk-wide-visual figcaption,
    .wk-product-visual figcaption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
        padding: 14px 15px;
        border-radius: 18px;
    }

    .wk-hero-visual figcaption strong,
    .wk-section-visual figcaption strong,
    .wk-wide-visual figcaption strong,
    .wk-product-visual figcaption strong {
        font-size: 16px;
    }

    .wk-hero h1 {
        font-size: 38px;
        line-height: 1.08;
    }

    .wk-lead,
    .wk-section-intro {
        font-size: 17px;
    }

    .wk-hero-actions {
        flex-direction: column;
    }

    .wk-button {
        width: 100%;
    }

    .wk-stat-strip,
    .wk-feature-grid,
    .wk-goal-grid,
    .wk-faq-grid,
    .wk-step-list {
        grid-template-columns: 1fr;
    }

    .wk-two-column {
        grid-template-columns: 1fr;
    }

    .wk-product-hero {
        grid-template-columns: 1fr;
        gap: 20px;
        width: auto;
        min-height: 0;
        margin-left: 0;
        margin-bottom: 28px;
        padding: 28px 0 42px;
    }

    .wk-product-intro {
        max-width: none;
        padding-left: 22px;
        padding-right: 22px;
        transform: none;
    }

    .wk-section {
        padding: 38px 0;
    }

    .wk-process,
    .wk-final-cta {
        padding: 24px;
        border-radius: 24px;
    }

    .wk-product-intro h1 {
        font-size: 34px;
        line-height: 1.1;
    }

    .wk-product-pills {
        width: auto;
        gap: 8px;
        margin: 2px 22px 0;
    }

    .wk-product-hero .wk-product-visual {
        width: calc(100vw - 22px);
        margin-left: 22px;
        margin-right: -22px;
        border-radius: 28px 0 0 28px;
        transform: none;
    }

    .wk-product-hero .wk-product-visual img {
        transform: translate3d(var(--wk-parallax-x, 0), var(--wk-parallax-y, 0), 0) scale(1.055);
    }

    .wk-motion-ready .wk-product-hero .wk-product-intro.wk-inview,
    .wk-motion-ready .wk-product-hero .wk-product-visual.wk-inview {
        transform: none;
    }

    .wk-product-pills span {
        width: 100%;
        justify-content: center;
    }

    .wk-product-hero + h2 {
        padding: 20px;
        border-radius: 22px;
        font-size: 24px;
    }

    .wk-product-hero + h2 small {
        font-size: 15px;
    }

    .wk-product-details {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .wk-product-copy,
    .wk-product-benefits,
    .wk-product-faq {
        border-radius: 22px;
    }

    .wk-product-copy,
    .wk-product-benefits,
    .wk-product-faq {
        padding: 22px;
    }
}

/* === Startseite Apple-Motion-Buehnen === */
.wk-home-apple {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: visible;
}

.wk-home-contained {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 22px;
    padding-right: 22px;
}

.wk-home-stage {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr);
    align-items: center;
    gap: 28px;
    min-height: calc(100vh - 132px);
    padding: 30px clamp(22px, 5vw, 78px) 70px;
}

.wk-stage-copy {
    max-width: 700px;
    transform: translateY(calc(var(--wk-home-hero, 0) * -0.14px));
}

.wk-stage-copy h1 {
    max-width: 860px;
    margin-bottom: 20px;
    font-size: clamp(54px, 7vw, 96px);
    line-height: 0.98;
}

.wk-stage-media {
    width: min(920px, 62vw);
    aspect-ratio: 16 / 10;
    margin-right: min(-130px, -8vw);
    border-radius: 34px 0 0 34px;
    transform: translateX(calc(10px + var(--wk-home-hero, 0) * -0.28px));
}

.wk-stage-media img {
    transform: translate3d(calc(var(--wk-home-hero, 0) * 0.10px), var(--wk-parallax-y, 0), 0) scale(1.06);
}

.wk-intro-band {
    padding-top: 92px;
    padding-bottom: 76px;
    text-align: center;
}

.wk-intro-band h2 {
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(40px, 5.5vw, 78px);
    line-height: 1;
}

.wk-intro-band p:not(.wk-section-kicker) {
    max-width: 820px;
    margin: 22px auto 0;
    color: var(--wk-muted);
    font-size: 22px;
    line-height: 1.42;
}

.wk-sticky-campaign {
    position: relative;
    min-height: 170vh;
    background:
        radial-gradient(circle at 72% 12%, rgba(0, 113, 227, 0.24), transparent 30%),
        linear-gradient(180deg, #050505 0%, #07090c 70%, #050505 100%);
    color: #ffffff;
}

.wk-sticky-inner {
    position: sticky;
    top: 82px;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr);
    align-items: center;
    gap: 42px;
    min-height: calc(100vh - 82px);
    padding: 42px clamp(22px, 6vw, 88px);
    overflow: hidden;
}

.wk-sticky-copy {
    max-width: 620px;
    opacity: calc(0.72 + var(--wk-campaign-progress, 0) * 0.28);
    transform: translateX(calc((1 - var(--wk-campaign-progress, 0)) * -58px));
}

.wk-sticky-copy .wk-section-kicker {
    color: #57d18d;
}

.wk-sticky-copy h2 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1;
}

.wk-sticky-copy p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 21px;
    line-height: 1.42;
    margin-bottom: 30px;
}

.wk-sticky-image {
    position: relative;
    width: min(760px, 54vw);
    aspect-ratio: 16 / 9.4;
    overflow: hidden;
    margin: 0;
    border-radius: 32px;
    box-shadow: 0 34px 100px rgba(0, 113, 227, 0.24);
    transform: translateX(calc((1 - var(--wk-campaign-progress, 0)) * 90px));
}

.wk-sticky-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(calc((1 - var(--wk-campaign-progress, 0)) * -62px)) scale(1.07);
}

.wk-feature-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 34px clamp(22px, 6vw, 88px) 96px;
    background: #050505;
    color: #ffffff;
}

.wk-feature-row .wk-feature-card {
    min-height: 210px;
    padding: 28px;
    border-radius: 28px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.wk-feature-row .wk-feature-card i {
    color: #ff6a2a;
}

.wk-feature-row .wk-feature-card strong {
    color: #ffffff;
    font-size: 24px;
}

.wk-feature-row .wk-feature-card span {
    color: rgba(255, 255, 255, 0.62);
}

.wk-format-stage {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
    gap: 34px;
    min-height: 0;
    padding: 74px clamp(22px, 6vw, 88px);
    background: var(--wk-soft);
}

.wk-format-copy {
    max-width: 640px;
}

.wk-format-copy h2 {
    margin: 0 0 20px;
    font-size: clamp(40px, 5.5vw, 78px);
    line-height: 1;
}

.wk-format-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
    transform: none;
    transition: none;
}

.wk-format-card {
    min-height: 100%;
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--wk-shadow);
}

.wk-format-card img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.wk-format-card div {
    padding: 24px;
}

.wk-format-card h3 {
    margin: 0 0 10px;
    font-size: 26px;
}

.wk-format-card p {
    margin: 0 0 16px;
    color: var(--wk-muted);
    line-height: 1.42;
}

.wk-format-card a {
    font-weight: 800;
}

.wk-cinema-stage {
    position: relative;
    min-height: 110vh;
    overflow: hidden;
    background:
        linear-gradient(180deg, var(--wk-soft) 0%, #ffffff 28%, #ffffff 72%, var(--wk-soft) 100%);
}

.wk-cinema-stage > img {
    position: sticky;
    top: 82px;
    display: block;
    width: 118vw;
    height: calc(100vh - 132px);
    margin-left: -8vw;
    margin-top: 50px;
    object-fit: cover;
    border-radius: 34px;
    transform: translateX(calc(var(--wk-cinema-progress, 0) * -11vw));
    filter: saturate(1.04);
    box-shadow: var(--wk-shadow);
}

.wk-cinema-copy {
    position: absolute;
    left: clamp(22px, 8vw, 118px);
    top: 24vh;
    max-width: 560px;
}

.wk-cinema-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(42px, 6vw, 86px);
    line-height: 1;
}

.wk-cinema-copy p:not(.wk-section-kicker) {
    color: #424245;
    font-size: 22px;
    line-height: 1.38;
}

@media (max-width: 900px) {
    .wk-home-apple {
        width: auto;
        margin-left: 0;
        overflow: visible;
    }

    .wk-home-stage,
    .wk-sticky-inner,
    .wk-format-stage {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 28px 0 42px;
    }

    .wk-stage-copy,
    .wk-sticky-copy,
    .wk-format-copy,
    .wk-cinema-copy {
        max-width: none;
        padding-left: 22px;
        padding-right: 22px;
        transform: none;
    }

    .wk-stage-copy h1,
    .wk-sticky-copy h2,
    .wk-format-copy h2,
    .wk-cinema-copy h2 {
        font-size: 38px;
        line-height: 1.08;
    }

    .wk-stage-media,
    .wk-sticky-image {
        width: calc(100vw - 22px);
        margin-left: 22px;
        margin-right: -22px;
        border-radius: 28px 0 0 28px;
        transform: none;
    }

    .wk-sticky-campaign {
        min-height: 0;
    }

    .wk-sticky-inner {
        position: relative;
        top: auto;
        background: #050505;
    }

    .wk-sticky-copy {
        opacity: 1;
    }

    .wk-sticky-image,
    .wk-sticky-image img,
    .wk-format-track,
    .wk-cinema-stage > img {
        transform: none;
    }

    .wk-feature-row {
        grid-template-columns: 1fr;
        padding: 22px 22px 48px;
    }

    .wk-format-stage {
        padding-left: 0;
        padding-right: 0;
    }

    .wk-format-track {
        grid-template-columns: 1fr;
        width: auto;
        padding: 0 22px;
    }

    .wk-format-card {
        min-height: 0;
    }

    .wk-format-card img {
        height: 190px;
    }

    .wk-cinema-stage {
        min-height: 0;
        padding: 38px 0 46px;
        background: var(--wk-soft);
    }

    .wk-cinema-stage > img {
        position: relative;
        top: auto;
        width: calc(100vw - 22px);
        height: auto;
        aspect-ratio: 16 / 10;
        margin-top: 0;
        margin-left: 22px;
        border-radius: 28px 0 0 28px;
        box-shadow: var(--wk-shadow);
    }

    .wk-cinema-copy {
        position: relative;
        left: auto;
        top: auto;
        margin-top: 24px;
    }

    .wk-intro-band {
        text-align: left;
        padding-top: 48px;
        padding-bottom: 42px;
    }

    .wk-intro-band h2,
    .wk-intro-band p:not(.wk-section-kicker) {
        margin-left: 0;
        margin-right: 0;
    }
}
