/*
Theme Name: VIP Nummer Info
Theme URI: https://vip-nummer.info
Author: vip-nummer.de
Description: Minimalistischer WooCommerce-Shop fuer Schnaeppchen-VIP-Nummern.
Version: 1.6.0
Text Domain: vip-nummer-info
*/

:root {
    --page: #f6f6f3;
    --surface: #ffffff;
    --surface-muted: #eeeeea;
    --surface-soft: #fafaf8;
    --text: #111111;
    --muted: #656565;
    --line: #deded8;
    --line-strong: #c9c9c1;
    --accent: #111111;
    --accent-dark: #000000;
    --accent-soft: #efefeb;
    --success: #1f6b43;
    --danger: #a8241b;
    --radius: 16px;
    --radius-sm: 10px;
    --button-radius: 8px;
    --shadow: 0 16px 42px rgba(17, 17, 17, 0.045);
    --shadow-hover: 0 20px 52px rgba(17, 17, 17, 0.075);
    --max: 1180px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.9), transparent 32rem),
        linear-gradient(180deg, #fbfbf8 0%, var(--page) 48%, #f0f0ec 100%);
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.vip-section {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 250, 248, 0.88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    transition: background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(17, 17, 17, 0.08);
    box-shadow: 0 12px 34px rgba(17, 17, 17, 0.055);
}

.site-header__inner {
    width: min(var(--max), calc(100% - 40px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: min-height 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled .site-header__inner {
    min-height: 66px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.site-logo__image {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
    box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.08);
    transition: transform 220ms var(--ease);
}

.site-logo:hover .site-logo__image,
.site-logo:focus-visible .site-logo__image {
    transform: scale(1.03);
}

.site-logo__text {
    display: grid;
    gap: 1px;
}

.site-logo__title {
    font-weight: 700;
    letter-spacing: -0.01em;
}

.site-logo__sub {
    color: var(--muted);
    font-size: 13px;
}

.site-nav,
.header-actions,
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav {
    justify-content: center;
    flex: 1;
}

.site-nav a,
.language-switcher a,
.site-cart {
    border-radius: var(--button-radius);
    color: #343434;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.site-nav a {
    padding: 9px 12px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: var(--surface-muted);
    color: #000;
    outline: none;
}

.language-switcher {
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
}

.language-switcher a {
    padding: 5px 8px;
    font-size: 12px;
}

.language-switcher a.is-active {
    background: var(--text);
    color: #fff;
}

.site-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    background: var(--surface);
}

.site-cart:hover,
.site-cart:focus-visible {
    border-color: var(--text);
    transform: translateY(-1px);
    outline: none;
}

.vip-cart-count {
    display: grid;
    place-items: center;
    min-width: 23px;
    height: 23px;
    padding: 0 6px;
    border-radius: 7px;
    background: var(--text);
    color: #fff;
    font-size: 12px;
}

.premium-ticker {
    display: block;
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: linear-gradient(90deg, #fff 0%, #f5f5f2 50%, #fff 100%);
    color: var(--text);
    white-space: nowrap;
}

.premium-ticker:focus-visible {
    outline: 2px solid var(--text);
    outline-offset: -2px;
}

.premium-ticker__track {
    display: flex;
    width: max-content;
    gap: clamp(26px, 5vw, 58px);
    padding: 8px 0;
    animation: premiumTickerScroll 34s linear infinite;
}

.premium-ticker:hover .premium-ticker__track,
.premium-ticker:focus-visible .premium-ticker__track {
    animation-play-state: paused;
}

.premium-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #222;
    font-size: 12px;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.premium-ticker__item::before {
    content: "VIP";
    display: inline-grid;
    place-items: center;
    min-width: 32px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero {
    padding: 56px 0 24px;
}

.hero__grid {
    display: block;
}

.hero__content,
.hero-panel,
.shop-controls,
.product-card,
.process-grid article,
.seo-card,
.vip-page article,
.woocommerce .woocommerce-cart-form,
.woocommerce .cart-collaterals,
.woocommerce-checkout .woocommerce,
.woocommerce-order,
.woocommerce-account .woocommerce {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    animation: vipFadeUp 560ms var(--ease) both;
}

.hero__content {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(30px, 5vw, 58px);
    text-align: center;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(250, 250, 248, 0.98)),
        var(--surface);
}

.hero-panel {
    padding: 28px;
    animation-delay: 90ms;
}

.hero__eyebrow,
.section-eyebrow,
.hero-panel__label {
    display: inline-flex;
    margin-bottom: 12px;
    color: #4b4b4b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1,
.hero-panel h2,
.shop-heading h2,
.process-section h2,
.seo-card h2,
.vip-page h1 {
    margin: 0;
    color: var(--text);
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.hero h1 {
    max-width: 760px;
    margin-inline: auto;
    font-size: clamp(34px, 4.3vw, 54px);
    font-weight: 720;
}

.hero__copy {
    max-width: 660px;
    margin: 18px auto 0;
    color: #575757;
    font-size: clamp(17px, 1.7vw, 19px);
}

.hero-panel h2 {
    font-size: 24px;
    font-weight: 720;
}

.hero-panel ul {
    margin: 18px 0 24px;
    padding-left: 20px;
    color: #575757;
}

.hero-panel li + li {
    margin-top: 8px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
}

.btn-primary,
.btn-secondary,
.product-card__button,
.product-card__details,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--button-radius);
    cursor: pointer;
    font-weight: 700;
    text-align: center;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms var(--ease), box-shadow 180ms ease;
}

.btn-primary,
.product-card__button,
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt,
.woocommerce #payment #place_order {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.1);
}

.product-card__button--request,
.vip-whatsapp-request {
    border-color: #128c4a;
    background: #128c4a;
    color: #fff;
    box-shadow: 0 10px 24px rgba(18, 140, 74, 0.18);
}

.product-card__button--request::before,
.vip-whatsapp-request::before {
    content: "WhatsApp";
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    margin-right: 8px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.btn-primary:hover,
.btn-primary:focus-visible,
.product-card__button:hover,
.product-card__button:focus-visible,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #payment #place_order:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.14);
    outline: none;
}

.product-card__button--request:hover,
.product-card__button--request:focus-visible,
.vip-whatsapp-request:hover,
.vip-whatsapp-request:focus-visible {
    border-color: #0f7a40;
    background: #0f7a40;
    color: #fff;
    box-shadow: 0 14px 30px rgba(18, 140, 74, 0.24);
}

.btn-secondary,
.product-card__details,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    border-color: var(--line);
    background: var(--surface);
    color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.product-card__details:hover,
.product-card__details:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--surface-muted);
    color: var(--text);
    border-color: var(--line-strong);
    transform: translateY(-1px);
    outline: none;
}

.hero-proof,
.payment-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 24px auto 0;
}

.hero-proof span,
.payment-row span {
    position: relative;
    padding: 0 0 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #555;
    font-size: 13px;
    font-weight: 620;
}

.hero-proof span:first-child,
.payment-row span:first-child {
    padding-left: 0;
}

.hero-proof span::before,
.payment-row span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 3px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #8b8b86;
    transform: translateY(-50%);
}

.hero-proof span:first-child::before,
.payment-row span:first-child::before {
    content: none;
}

.shop-controls-section {
    padding: 12px 0 22px;
}

.shop-controls {
    display: grid;
    gap: 16px;
    padding: 18px;
}

.shop-search {
    display: grid;
    gap: 8px;
}

.shop-search span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
}

.shop-search input {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--text);
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.shop-search input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.08);
    outline: none;
}

.shop-sort {
    display: grid;
    gap: 8px;
}

.shop-sort span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
}

.shop-sort select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.shop-sort select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.08);
    outline: none;
}

@media (min-width: 860px) {
    .shop-controls {
        grid-template-columns: minmax(0, 1fr) 260px;
        align-items: end;
    }

    .shop-search {
        grid-column: 1;
        grid-row: 1;
    }

    .shop-sort {
        grid-column: 2;
        grid-row: 1;
    }

    .filter-pills {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-pill {
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--button-radius);
    background: var(--surface);
    color: #3f3f3f;
    cursor: pointer;
    font-size: 14px;
    font-weight: 650;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.filter-pill.is-active,
.filter-pill:hover,
.filter-pill:focus-visible {
    border-color: var(--accent);
    background: var(--text);
    color: #fff;
    transform: translateY(-1px);
    outline: none;
}

.shop-section,
.process-section,
.seo-section {
    padding: 34px 0;
}

.shop-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.shop-heading h2,
.process-section h2,
.seo-card h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 740;
}

.shop-heading p,
.seo-card p,
.process-grid p,
.vip-page p,
.vip-page li {
    color: #575757;
}

.result-count {
    flex: 0 0 auto;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: var(--button-radius);
    background: var(--surface);
    color: #575757;
    font-size: 14px;
    font-weight: 650;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.load-more-wrap[hidden] {
    display: none;
}

.load-more-btn {
    min-width: 210px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid var(--accent);
    border-radius: var(--button-radius);
    background: var(--text);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.load-more-btn:hover,
.load-more-btn:focus-visible {
    background: #2b2b2b;
    border-color: #2b2b2b;
    transform: translateY(-1px);
    outline: none;
}

.load-more-btn:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.product-grid__notice {
    grid-column: 1 / -1;
    margin: 0;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--muted);
    text-align: center;
    font-weight: 650;
}

.product-card {
    display: grid;
    gap: 18px;
    padding: 20px;
    transition: transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover,
.product-card:focus-within {
    border-color: rgba(17, 17, 17, 0.18);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.product-card[hidden] {
    display: none;
}

.product-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-card__badge,
.product-card__availability {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 0 9px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
}

.product-card__badge {
    border: 1px solid var(--line);
    background: #f7f7f4;
    color: #1c1c1c;
}

.product-card__availability {
    background: var(--surface-muted);
    color: var(--muted);
}

.product-card__number {
    margin: 0;
    font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
    font-size: clamp(23px, 3vw, 32px);
    font-weight: 720;
    letter-spacing: -0.04em;
}

.product-card__number a:hover,
.product-card__number a:focus-visible {
    color: #000;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    outline: none;
}

.product-card__price {
    display: grid;
    gap: 4px;
}

.product-card__price strong {
    font-size: 21px;
}

.product-card__price span {
    color: var(--muted);
    font-size: 13px;
}

.product-card__actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-breadcrumb {
    width: min(var(--max), calc(100% - 40px));
    margin: 18px auto 0;
    color: #6a6a66;
    font-size: 13px;
    font-weight: 600;
}

.woocommerce .woocommerce-breadcrumb a,
.woocommerce-breadcrumb a {
    color: #3f3f3f;
    text-decoration: none;
}

.woocommerce .woocommerce-breadcrumb a:hover,
.woocommerce .woocommerce-breadcrumb a:focus-visible,
.woocommerce-breadcrumb a:hover,
.woocommerce-breadcrumb a:focus-visible {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 4px;
    outline: none;
}

.vip-product-hero {
    padding: 46px 0 28px;
}

.vip-product-hero__grid,
.vip-product-info__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 18px;
    align-items: stretch;
}

.vip-product-summary,
.vip-product-buy,
.vip-product-detail-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    animation: vipFadeUp 520ms var(--ease) both;
}

.vip-product-summary {
    display: grid;
    align-content: center;
    min-height: 430px;
    padding: clamp(30px, 5vw, 56px);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 248, 0.98)),
        var(--surface);
}

.vip-product-back {
    width: fit-content;
    margin-bottom: 30px;
    color: #60605c;
    font-size: 14px;
    font-weight: 650;
}

.vip-product-back:hover,
.vip-product-back:focus-visible {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 4px;
    outline: none;
}

.vip-product-label,
.vip-product-buy__label {
    display: inline-flex;
    margin-bottom: 12px;
    color: #4b4b4b;
    font-size: 12px;
    font-weight: 720;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vip-product-title {
    max-width: 820px;
    margin: 0;
    color: var(--text);
    font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
    font-size: clamp(40px, 7vw, 82px);
    font-weight: 740;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.vip-product-intro {
    max-width: 620px;
    margin: 22px 0 0;
    color: #575757;
    font-size: clamp(17px, 1.8vw, 20px);
}

.vip-product-trust,
.vip-product-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
}

.vip-product-trust span,
.vip-product-payments span {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: var(--button-radius);
    background: #f7f7f4;
    color: #444;
    font-size: 13px;
    font-weight: 650;
}

.vip-product-buy {
    align-self: start;
    position: sticky;
    top: 96px;
    padding: 28px;
}

.vip-product-buy__price {
    margin: 2px 0 4px;
    color: #111;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 760;
    letter-spacing: -0.04em;
    line-height: 1;
}

.vip-product-buy__note {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px;
}

.vip-product-buy__actions form.cart {
    display: grid;
    gap: 12px;
    margin: 0;
}

.vip-product-buy__actions .quantity {
    display: none !important;
}

.vip-product-buy__actions .single_add_to_cart_button {
    width: 100%;
    min-height: 50px;
}

.vip-product-buy__request-note {
    margin: 0;
    color: #575757;
    font-size: 14px;
    line-height: 1.55;
}

.vip-whatsapp-request--single {
    width: 100%;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid #128c4a;
    border-radius: var(--button-radius);
    font-weight: 760;
    text-align: center;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms var(--ease), box-shadow 180ms ease;
}

.vip-product-info {
    padding: 10px 0 34px;
}

.vip-product-detail-card {
    padding: clamp(24px, 4vw, 36px);
}

.vip-product-detail-card h2 {
    margin: 0 0 16px;
    color: var(--text);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 720;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.vip-product-description {
    color: #575757;
}

.vip-product-description h2 {
    margin-top: 0;
    font-size: 22px;
}

.vip-product-description p {
    margin: 0 0 14px;
}

.vip-product-process ol {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: vip-product-step;
}

.vip-product-process li {
    position: relative;
    min-height: 38px;
    padding-left: 50px;
    color: #575757;
    counter-increment: vip-product-step;
}

.vip-product-process li::before {
    content: counter(vip-product-step, decimal-leading-zero);
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: var(--button-radius);
    background: #f7f7f4;
    color: #111;
    font-size: 12px;
    font-weight: 760;
}

.process-grid,
.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.seo-grid {
    grid-template-columns: 1.15fr 0.85fr;
}

.process-grid article,
.seo-card {
    padding: 22px;
}

.process-grid article > span {
    display: inline-flex;
    margin-bottom: 14px;
    color: #2f2f2f;
    font-weight: 750;
}

.process-grid h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.seo-card ul {
    margin: 14px 0 0;
    padding-left: 20px;
}

.site-footer {
    margin-top: 42px;
    padding: 36px 0 92px;
    background: #111;
    color: #fff;
}

.site-footer__inner {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    gap: 18px;
    justify-items: center;
    text-align: center;
}

.footer-brand {
    display: grid;
    gap: 4px;
}

.footer-brand span,
.footer-copy {
    color: #d6d6d2;
}

.footer-payment,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.footer-payment span {
    min-width: 58px;
    padding: 7px 10px;
    border-radius: 8px;
    background: #f7f7f4;
    color: #222;
    font-size: 12px;
    font-weight: 700;
}

.footer-links a {
    color: #fff;
    font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #d6d6d2;
    outline: none;
}

.mobile-dock {
    display: none;
}

.cky-consent-container,
.cky-modal {
    color: var(--text) !important;
    font-family: inherit !important;
}

.cky-consent-container .cky-consent-bar,
.cky-modal .cky-modal-content {
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    background: #fff !important;
    box-shadow: 0 18px 48px rgba(17, 17, 17, 0.12) !important;
}

.cky-consent-container .cky-title,
.cky-modal .cky-title {
    color: var(--text) !important;
}

.cky-consent-container .cky-notice-des,
.cky-modal .cky-preference-content-wrapper,
.cky-modal .cky-accordion-header-des {
    color: #4f4f4f !important;
}

.cky-consent-container .cky-btn,
.cky-modal .cky-btn {
    border-radius: var(--button-radius) !important;
    font-weight: 700 !important;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease !important;
}

.cky-consent-container .cky-btn-accept,
.cky-modal .cky-btn-accept {
    border-color: #111 !important;
    background: #111 !important;
    color: #fff !important;
}

.cky-consent-container .cky-btn-reject,
.cky-consent-container .cky-btn-customize,
.cky-modal .cky-btn-reject,
.cky-modal .cky-btn-customize,
.cky-modal .cky-btn-preferences {
    border-color: #111 !important;
    background: #fff !important;
    color: #111 !important;
}

.cky-consent-container .cky-btn:hover,
.cky-consent-container .cky-btn:focus-visible,
.cky-modal .cky-btn:hover,
.cky-modal .cky-btn:focus-visible {
    border-color: #000 !important;
    background: #2a2a2a !important;
    color: #fff !important;
}

.vip-page {
    width: min(900px, calc(100% - 40px));
    margin: 42px auto;
}

.vip-page article {
    padding: clamp(24px, 5vw, 46px);
}

.vip-page h1 {
    margin-bottom: 22px;
    font-size: clamp(30px, 5vw, 46px);
}

.vip-page h2 {
    margin-top: 28px;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    border-top-color: var(--accent);
    border-radius: var(--radius-sm);
    background: var(--surface);
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
    color: var(--accent);
}

.woocommerce table.shop_table {
    border-color: var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border-color: var(--line);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container .select2-selection--single {
    min-height: 46px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.08);
    outline: none;
}

.woocommerce-checkout-review-order,
.woocommerce-checkout-payment,
#payment,
.wc-block-components-checkout-place-order-button,
.wc-block-components-express-payment,
.wc-block-components-express-payment__content,
.ppc-button-wrapper,
.wc-stripe-wallet-buttons-container {
    position: relative;
    z-index: 1;
}

#payment {
    border-radius: var(--radius);
    background: var(--surface-muted);
}

#payment ul.payment_methods {
    border-color: var(--line);
}

@media (max-width: 980px) {
    .site-header__inner {
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .site-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .hero__grid,
    .vip-product-hero__grid,
    .vip-product-info__grid,
    .product-grid,
    .process-grid,
    .seo-grid {
        grid-template-columns: 1fr;
    }

    .vip-product-buy {
        position: static;
    }

    .shop-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    body {
        padding-bottom: 86px;
    }

    .vip-section,
    .site-header__inner,
    .site-footer__inner,
    .vip-page {
        width: min(100% - 28px, var(--max));
    }

    .site-header {
        position: static;
    }

    .site-logo {
        min-width: auto;
    }

    .site-logo__sub,
    .site-cart__label {
        display: none;
    }

    .hero {
        padding-top: 24px;
    }

    .premium-ticker__track {
        gap: 28px;
        padding: 7px 0;
        animation-duration: 28s;
    }

    .premium-ticker__item {
        font-size: 11px;
        letter-spacing: 0.06em;
    }

    .hero__content,
    .hero-panel,
    .vip-product-summary,
    .vip-product-buy,
    .vip-product-detail-card,
    .shop-controls,
    .product-card,
    .process-grid article,
    .seo-card,
    .vip-page article {
        border-radius: 16px;
        box-shadow: none;
    }

    .hero__content,
    .hero-panel,
    .vip-product-summary,
    .vip-product-buy,
    .vip-product-detail-card {
        padding: 24px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .vip-product-hero {
        padding-top: 24px;
    }

    .vip-product-summary {
        min-height: auto;
    }

    .vip-product-title {
        font-size: clamp(34px, 12vw, 48px);
    }

    .hero__actions,
    .product-card__actions {
        grid-template-columns: 1fr;
    }

    .hero__actions {
        display: grid;
    }

    .btn-primary,
    .btn-secondary,
    .product-card__button,
    .product-card__details {
        width: 100%;
    }

    .filter-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .filter-pill {
        flex: 0 0 auto;
    }

    .mobile-dock {
        position: fixed;
        right: 12px;
        bottom: 12px;
        left: 12px;
        z-index: 80;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 10px 30px rgba(17, 24, 39, 0.16);
    }

    .mobile-dock a {
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        border-radius: var(--button-radius);
        color: #343434;
        font-size: 11px;
        font-weight: 700;
        line-height: 1.1;
        transition: background-color 180ms ease, color 180ms ease, transform 180ms var(--ease);
    }

    .mobile-dock svg {
        width: 19px;
        height: 19px;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 2;
    }

    .mobile-dock a:hover,
    .mobile-dock a:focus-visible {
        background: var(--surface-muted);
        color: #000;
        transform: translateY(-1px);
        outline: none;
    }
}

@keyframes premiumTickerScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes vipFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-controls,
.shop-heading,
.process-grid article,
.seo-card {
    animation: vipFadeUp 520ms var(--ease) both;
}

.product-card:nth-child(1) { animation-delay: 20ms; }
.product-card:nth-child(2) { animation-delay: 45ms; }
.product-card:nth-child(3) { animation-delay: 70ms; }
.product-card:nth-child(4) { animation-delay: 95ms; }
.product-card:nth-child(5) { animation-delay: 120ms; }
.product-card:nth-child(6) { animation-delay: 145ms; }

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}

/* WooCommerce Screenreader-Texte visuell verstecken (z. B. "Ursprünglicher Preis war: ...") */
.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

/* Streichpreis bei Sale-Artikeln sauber darstellen:
   alter Preis durchgestrichen, neuer Preis ohne Linie – überall
   (Karten, Produktseite, Warenkorb, Kasse, Bestellübersicht). */
del,
del .woocommerce-Price-amount {
    text-decoration: line-through;
}

ins,
ins .woocommerce-Price-amount {
    text-decoration: none;
}

.product-card__price del,
.vip-product-buy__price del {
    opacity: 0.55;
    font-weight: 400;
    font-size: 0.78em;
    margin-right: 0.35em;
}

.product-card__price ins,
.vip-product-buy__price ins {
    text-decoration: none;
    font-weight: inherit;
}
