:root {
    --color-bg: #0b0c10;
    --color-bg-section: #101118;
    --color-bg-card: #151720;
    --color-bg-soft: #1b1d29;
    --color-text: #f5f5f5;
    --color-muted: #a0a4b8;
    --color-border: #252738;
    --color-accent: rgb(0, 137, 52);
    --color-accent-soft: rgba(0, 137, 52, 0.16);
    --color-accent-strong: #008137;
    --color-danger: #e53935;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
    --radius-s: 6px;
    --radius-m: 12px;
    --radius-l: 18px;
    --max-width: 1600px;
}

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

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--color-text);
    background:
        radial-gradient(circle at 0% 0%, rgba(0, 137, 52, 0.35) 0, transparent 45%),
        radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.03) 0, transparent 55%),
        #05060a;
    line-height: 1.6;
}

main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

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

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.75rem;
}

/* HEADER */

.site-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: linear-gradient(to bottom, rgba(5, 6, 10, 0.92), rgba(5, 6, 10, 0.86));
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.5rem;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 54px;
    width: auto;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.75));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.logo-sub {
    font-size: 0.8rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.main-nav {
    display: flex;
    gap: 1.75rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.main-nav a {
    position: relative;
    padding-bottom: 0.25rem;
    color: var(--color-muted);
    font-weight: 500;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), #ffffff);
    transition: width 0.2s ease-out;
}

.main-nav a:hover {
    color: #ffffff;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(5, 6, 10, 0.85);
    color: #ffffff;
    border-radius: 999px;
    padding: 0.35rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    min-height: 38px;
}

.nav-toggle > span:last-child {
    display: none;
}

.nav-toggle-bars {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
}

.nav-toggle-bars span {
    width: 18px;
    height: 2px;
    background: #ffffff;
    display: block;
}

/* HEADER CART BUTTON */

.cart-header-button {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(5, 6, 10, 0.85);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    cursor: pointer;
    transition:
        background-color 0.12s ease-out,
        border-color 0.12s ease-out,
        transform 0.1s ease-out,
        box-shadow 0.15s ease-out;
}

.cart-header-button:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.7);
    transform: translateY(-1px);
}

.cart-icon {
    position: relative;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-icon-basket {
    width: 14px;
    height: 10px;
    border-radius: 2px;
    border: 2px solid #ffffff;
    border-top: 0;
    position: relative;
}

.cart-icon-basket::before,
.cart-icon-basket::after {
    content: "";
    position: absolute;
    top: -6px;
    width: 2px;
    height: 6px;
    background: #ffffff;
}

.cart-icon-basket::before {
    left: 2px;
}

.cart-icon-basket::after {
    right: 2px;
}

.cart-count-badge {
    min-width: 20px;
    padding: 0 0.4rem;
    border-radius: 999px;
    background: var(--color-accent);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0, 137, 52, 0.6);
}

.cart-count-badge.empty {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-muted);
    box-shadow: none;
}

/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 137, 52, 0.65), transparent 55%),
        radial-gradient(circle at 95% 10%, rgba(255, 255, 255, 0.08) 0, transparent 50%);
    opacity: 0.75;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
        -60deg,
        rgba(255, 255, 255, 0.05) 0,
        transparent 40%,
        transparent 60%,
        rgba(255, 255, 255, 0.04) 100%
    );
    mix-blend-mode: soft-light;
    opacity: 0.5;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.2fr);
    gap: 2.75rem;
    padding: 2.7rem 1.75rem 2.9rem;
}

.hero-text h1 {
    font-size: clamp(2.1rem, 3.4vw, 2.7rem);
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 6, 10, 0.7);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.8rem;
}

.hero-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--color-accent);
    box-shadow: 0 0 0 4px var(--color-accent-soft);
}

.hero-subtitle {
    margin: 0 0 1.4rem 0;
    max-width: 36rem;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.hero-note {
    margin-top: 0.9rem;
    font-size: 0.8rem;
    color: var(--color-muted);
    max-width: 30rem;
}

.hero-visual {
    align-self: center;
    justify-self: end;
    width: 100%;
    max-width: 620px;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-highlight {
    align-self: center;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.09) 0, transparent 55%),
        var(--color-bg-soft);
    border-radius: var(--radius-l);
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.hero-highlight::before {
    content: "Tony Kart";
    position: absolute;
    right: -2rem;
    top: -1rem;
    font-size: 2.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.hero-highlight h2 {
    margin: 0 0 0.4rem 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-muted);
}

.hero-highlight ul {
    margin: 0.4rem 0 0 0;
    padding-left: 1.1rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.hero-highlight li + li {
    margin-top: 0.25rem;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.3rem;
    border-radius: 999px;
    font-size: 0.9rem;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition:
        background-color 0.15s ease-out,
        color 0.15s ease-out,
        border-color 0.15s ease-out,
        box-shadow 0.15s ease-out,
        transform 0.12s ease-out;
}

.btn-primary {
    background: radial-gradient(circle at 0 0, #00c25a, var(--color-accent-strong));
    border-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(0, 137, 52, 0.45);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(0, 137, 52, 0.6);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* GENERISCHE SEKTIONEN */

.section-light {
    background: radial-gradient(circle at 0 0, rgba(0, 137, 52, 0.22) 0, transparent 60%),
        var(--color-bg-section);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 2.4rem 0;
}

.section-light2 {
    background: radial-gradient(circle at 100% 0, rgba(0, 137, 52, 0.2) 0, transparent 57%),
        var(--color-bg-section);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 2.4rem 0;
}

.section-tight {
    padding-top: 1.6rem;
    padding-bottom: 2.4rem;
}

.section-light h2 {
    margin-top: 0;
    margin-bottom: 0.4rem;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.section-kicker {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-muted);
    margin-bottom: 0.3rem;
}

#about .section-kicker {
    max-width: none;
}

/* KATEGORIEN */

.category-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.8rem;
    justify-items: center;
}

.category-panel {
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.14) 0, transparent 55%),
        var(--color-bg-soft);
    border-radius: var(--radius-l);
    padding: 1.2rem 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
    width: 100%;
    max-width: 900px;
}

.category-tree ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.category-tree > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    align-items: flex-start;
}

.category-tree ul ul {
    padding-left: 1.4rem;
    margin-top: 0.45rem;
}

.cat-main {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-right: 1.2rem;
}

.cat-main::after {
    content: "▸";
    font-size: 0.75rem;
    opacity: 0.7;
    position: absolute;
    right: 0;
    transition: transform 0.12s ease-out;
}

.cat-main.is-open::after {
    transform: rotate(90deg);
}

.cat-sub {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-muted);
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-right: 1rem;
}

.cat-sub::after {
    content: "▼";
    font-size: 0.65rem;
    opacity: 0.6;
    position: absolute;
    right: 0;
    transition: transform 0.12s ease-out;
}

.cat-sub.is-open::after {
    transform: rotate(90deg);
}

.cat-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.35rem;
}

.product-empty {
    margin: 0.6rem 0 0;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.cat-sublist {
    display: none;
    padding-left: 1.4rem;
    margin-top: 0.45rem;
}

.cat-main.is-open + .cat-sublist {
    display: block;
}

.cat-sub.is-open + .cat-sublist {
    display: block;
}

.cat-chip {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(5, 6, 10, 0.8);
    font-size: 0.78rem;
    cursor: pointer;
    transition:
        background-color 0.12s ease-out,
        border-color 0.12s ease-out,
        transform 0.08s ease-out,
        box-shadow 0.12s ease-out;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-muted);
}

.cat-chip:hover {
    border-color: var(--color-accent);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 137, 52, 0.45);
    transform: translateY(-1px);
}

.cat-chip.active {
    background: linear-gradient(135deg, var(--color-accent-strong), #00c25a);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(0, 137, 52, 0.65);
}

/* SHOP-LAYOUT */

.shop-section {
    padding: 2.7rem 0 3.1rem;
    background: radial-gradient(circle at 100% 0, rgba(0, 137, 52, 0.2) 0, transparent 57%),
        var(--color-bg-section);
}

.shop-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.9rem;
    align-items: flex-start;
}

.product-area-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
}

.product-area-header h2 {
    margin: 0;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.link-reset {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.78rem;
    color: var(--color-muted);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.link-reset:hover {
    color: #ffffff;
}

/* PRODUKTKARTEN */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
}

#highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 320px));
    justify-content: center;
}

#all-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 320px));
    justify-content: center;
}

#tonykart-grid,
#vortex-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 320px));
    justify-content: center;
}

.product-details-link {
    margin-top: 0.45rem;
    font-size: 0.82rem;
    color: var(--color-accent);
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(280px, 480px) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.product-detail-image {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-l);
    display: block;
    box-shadow: var(--shadow-soft);
    justify-self: stretch;
}

.product-detail-info p {
    margin-top: 0;
}

.product-detail-price {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0.8rem 0 1rem;
}

.product-detail-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-detail-meta {
    color: var(--color-muted);
    margin: 0.2rem 0 0;
}

.product-variant {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.product-variant label {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.product-variant-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.variant-option {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.product-variant select {
    background: var(--color-bg-soft);
    color: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-s);
    padding: 0.5rem 0.6rem;
}

.product-detail-gallery {
    margin-top: 2rem;
}

.product-detail-gallery h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.product-detail-gallery-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.5rem;
}

.product-detail-gallery-item {
    position: relative;
    border-radius: var(--radius-m);
    overflow: hidden;
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    aspect-ratio: 4 / 3;
    cursor: zoom-in;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.product-detail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.18s ease-out;
}

.product-detail-gallery-item:hover img {
    transform: scale(1.03);
}

.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease-out;
}

.image-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.image-modal-content {
    background: #0b0c10;
    border-radius: var(--radius-l);
    padding: 0.75rem;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.image-modal-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #11121a;
    border-radius: var(--radius-m);
    overflow: hidden;
}

.image-modal-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0b0c10;
}

.image-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.16s ease-out, border-color 0.16s ease-out;
}

.image-modal-nav:hover {
    background: rgba(0, 0, 0, 0.75);
    border-color: rgba(255, 255, 255, 0.35);
}

.image-modal-nav.prev {
    left: 12px;
}

.image-modal-nav.next {
    right: 12px;
}

.image-modal-close {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 999px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
}

.product-card {
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.1) 0, transparent 60%),
        var(--color-bg-card);
    border-radius: var(--radius-m);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition:
        transform 0.14s ease-out,
        box-shadow 0.14s ease-out,
        border-color 0.14s ease-out;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.03) 0,
        transparent 40%,
        transparent 60%,
        rgba(255, 255, 255, 0.02) 100%
    );
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease-out;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.8);
    border-color: rgba(0, 137, 52, 0.5);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image-wrap {
    position: relative;
    padding: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-image-wrap img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: calc(var(--radius-m) - 4px);
}

#highlights-grid .product-card .product-image-wrap img {
    height: 220px;
}

#tonykart-grid .product-card .product-image-wrap img,
#vortex-grid .product-card .product-image-wrap img {
    height: 220px;
}

.product-badge-row {
    display: flex;
    justify-content: flex-start;
    padding: 0.75rem 0.95rem 0;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
    background: rgba(5, 6, 10, 0.85);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-muted);
    border: 1px solid rgba(255, 255, 255, 0.16);
    pointer-events: none;
    font-weight: 600;
}

.product-badge.badge-green {
    background: rgba(0, 125, 36, 0.9);
    border-color: rgba(87, 227, 132, 0.6);
    color: #e8ffe4;
}

.product-badge.badge-yellow {
    background: rgba(196, 140, 0, 0.9);
    border-color: rgba(255, 214, 102, 0.7);
    color: #fff8e1;
}

.product-badge.badge-red {
    background: rgba(178, 21, 0, 0.92);
    border-color: rgba(255, 130, 116, 0.7);
    color: #ffe9e5;
}

.product-body {
    padding: 0.8rem 0.95rem 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-body h3 {
    margin: 0;
    font-size: 1.02rem;
}

.product-meta {
    margin: 0;
    font-size: 0.8rem;
    color: var(--color-muted);
}

.product-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-desc {
    margin: 0.2rem 0 0.45rem 0;
    font-size: 0.83rem;
    color: var(--color-muted);
    min-height: 2.8rem;
    flex-grow: 1;
}

.product-price {
    margin: 0.25rem 0 0.7rem 0;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.product-body .btn,
.product-body .product-details-link {
    margin-top: auto;
}

/* CART DRAWER */

.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.18s ease-out,
        visibility 0.18s ease-out;
    z-index: 80;
}

.cart-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 360px;
    max-width: 100%;
    transform: translateX(100%);
    transition: transform 0.2s ease-out;
    z-index: 81;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-inner {
    height: 100%;
    background: linear-gradient(135deg, var(--color-bg-soft), #0e1017);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -16px 0 35px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    padding: 1rem 1.1rem 1.2rem;
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cart-drawer-header h2 {
    margin: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.cart-drawer-close {
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    text-align: center;
}

.cart-drawer-close:hover {
    background: rgba(255, 255, 255, 0.16);
}

.cart-drawer-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding-top: 0.4rem;
    padding-bottom: 0.6rem;
}

#cart-items {
    list-style: none;
    margin: 0 0 0.8rem 0;
    padding: 0;
    font-size: 0.88rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.7rem;
    padding: 0.35rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-main {
    display: flex;
    flex-direction: column;
    gap: 0.07rem;
}

.cart-item-name {
    font-size: 0.9rem;
}

.cart-item-price {
    font-size: 0.78rem;
    color: var(--color-muted);
}

.cart-remove {
    background: none;
    border: none;
    font-size: 0.8rem;
    cursor: pointer;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.cart-remove:hover {
    color: var(--color-danger);
}

.cart-drawer-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.7rem;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-weight: 600;
    margin: 0.2rem 0 0.75rem 0;
}

.cart-hint {
    margin: 0.7rem 0 0 0;
    font-size: 0.78rem;
    color: var(--color-muted);
}
.cart-checkout {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.checkout-title {
    margin: 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-muted);
}

.checkout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.83rem;
    color: var(--color-muted);
}

.checkout-field input,
.checkout-field textarea {
    background: rgba(5, 6, 10, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-s);
    padding: 0.45rem 0.55rem;
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
}

.checkout-field textarea {
    resize: vertical;
    min-height: 2.6rem;
}

.checkout-field-full {
    grid-column: 1 / -1;
}

.checkout-hint {
    margin: 0;
    font-size: 0.78rem;
    color: var(--color-muted);
}

.checkout-message {
    margin: 0;
    font-size: 0.82rem;
    min-height: 1.1rem;
    color: #f7a300;
}

.checkout-message.is-error {
    color: #ff6b6b;
}

.checkout-message.is-success {
    color: #57e384;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.checkout-summary-card,
.checkout-form-card {
    background: rgba(5, 6, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-l);
    padding: 1.4rem;
    box-shadow: var(--shadow-soft);
}

.checkout-summary-desc {
    margin: 0 0 1rem 0;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.checkout-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkout-summary-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0.9rem;
    border-radius: var(--radius-m);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(5, 6, 10, 0.6);
}

.checkout-summary-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.checkout-summary-name {
    margin: 0;
    font-weight: 600;
}

.checkout-summary-variants {
    margin: 0;
    font-size: 0.8rem;
    color: var(--color-muted);
}

.checkout-summary-price {
    font-weight: 600;
    white-space: nowrap;
}

.checkout-summary-empty {
    margin: 0.8rem 0 0 0;
    color: var(--color-muted);
    font-size: 0.85rem;
}

.checkout-summary-total {
    margin: 1rem 0 0 0;
    font-weight: 700;
    font-size: 1rem;
}

.checkout-phone {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.checkout-phone p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.btn.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.legal-page,
.faq-page {
    max-width: 720px;
}

.legal-block {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-l);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 6, 10, 0.5);
    box-shadow: var(--shadow-soft);
}

.legal-block h2 {
    margin-top: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.faq-item {
    border-radius: var(--radius-l);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 6, 10, 0.5);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-soft);
}


/* ÜBER UNS / KONTAKT */

#about p {
    max-width: none;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr);
}

.contact-list {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
}

.contact-list li + li {
    margin-top: 0.2rem;
}

/* FOOTER */

.site-footer {
    background: #05060a;
    color: #858899;
    padding: 1.1rem 0;
    font-size: 0.78rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.25rem;
}

.footer-links a {
    color: #a0a4b8;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.footer-links a:hover {
    color: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 960px) {
    .main-nav {
        display: none;
        flex-direction: column;
        gap: 0.8rem;
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        padding: 1.1rem min(6vw, 2rem);
        background: rgba(5, 6, 10, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        color: #ffffff;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.65);
        align-items: center;
        text-align: center;
        order: 4;
        margin-top: 0.25rem;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
    }

    .nav-toggle {
        display: inline-flex;
        order: 1;
        margin-left: 0;
        min-height: 38px;
    }

    .header-inner {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.65rem 1rem;
        flex-wrap: wrap;
    }

    .logo {
        order: 2;
        margin: 0 auto;
    }

    .cart-header-button {
        order: 3;
        margin-right: 0;
        min-height: 38px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.9rem;
        order: -1;
    }

    .footer-inner > *:last-child {
        width: 100%;
        text-align: center;
        margin-top: 0.4rem;
    }
}

@media (max-width: 720px) {
    .header-inner {
        padding: 0.45rem 0.85rem;
        gap: 0.4rem;
    }

    .logo-text {
        display: none;
    }

    .logo {
        gap: 0.35rem;
    }

    .logo img {
        height: 38px;
    }

    .nav-toggle {
        padding: 0.3rem;
        min-height: 46px;
        width: 46px;
    }

    .cart-header-button {
        padding: 0.3rem 0.85rem;
        min-height: 46px;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        padding-top: 2.2rem;
    }

    .hero-visual {
        order: -1;
        max-width: none;
        justify-self: stretch;
        margin-bottom: 1.1rem;
    }

    .checkout-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .checkout-summary-card,
    .checkout-form-card {
        padding: 1.1rem;
    }

    .category-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-detail-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.1rem;
        align-items: flex-start;
    }

    .product-detail-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .product-detail-actions .btn {
        width: 100%;
    }

    .container {
        padding: 0 1.15rem;
    }

    .header-inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 0.4rem;
        padding: 0.5rem 0.9rem 0.8rem;
    }

    .logo {
        grid-column: 2;
        justify-self: center;
        flex-direction: column;
        margin-top: 0.35rem;
    }

    .logo img {
        height: 48px;
    }

    .logo-title {
        display: none;
    }

    .logo-sub {
        font-size: 0.7rem;
        letter-spacing: 0.22em;
        text-align: center;
        margin: 0;
    }

    .main-nav {
        gap: 1.1rem;
        font-size: 0.8rem;
    }

    .hero-inner {
        padding-inline: 1.15rem;
    }

    .cart-drawer {
        width: 100%;
    }

    .product-detail-gallery-list {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

/* Cookie consent banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    transform: translateY(100%);
    background: rgba(15, 17, 26, 0.98);
    border-top: 1px solid var(--color-border);
    padding: 1.5rem calc((100vw - min(960px, 100vw)) / 2 + 1.5rem);
    box-shadow: 0 -0.65rem 2rem rgba(0, 0, 0, 0.35);
    color: var(--color-text);
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    font-size: 0.95rem;
}

.cookie-banner.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cookie-banner__text {
    margin: 0 0 1rem;
    line-height: 1.5;
    color: var(--color-text);
}

.cookie-banner__text a {
    color: var(--color-text);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cookie-banner__button {
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-banner__button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.cookie-banner__button.primary {
    background: var(--color-accent);
    color: #ffffff;
    border-color: var(--color-accent);
}

.cookie-banner__button.primary:hover {
    background: var(--color-accent-strong);
}

.cookie-banner__button.secondary {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.cookie-banner__button.secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

@media (max-width: 1520px) {

    /* Container enger */
    .container {
        padding: 0 1.25rem;
    }

    /* Header etwas kompakter */
    .header-inner {
        padding: 0.65rem 2rem;
    }

    /* Footer symmetrisch zum Header */
    .footer-inner {
        padding: 0 2rem;
    }
}


@media (max-width: 540px) {
    .cookie-banner {
        padding: 1.25rem 1rem calc(1.5rem + env(safe-area-inset-bottom, 0));
    }
    .cookie-banner__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__button {
        width: 100%;
        text-align: center;
    }
}
