/* ================================================
   PRIME SPORTWEAR – Main Stylesheet
   ================================================ */

/* --- Variables --- */
:root {
    --accent: #C8FF00;
    --accent-dim: rgba(200, 255, 0, 0.12);
    --bg: #080808;
    --bg-2: #111111;
    --bg-3: #1a1a1a;
    --surface: #161616;
    --border: rgba(255, 255, 255, 0.08);
    --text: #f0f0f0;
    --text-muted: #888;
    --text-dim: #555;
    --white: #ffffff;
    --black: #000000;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 4px;
    --radius-lg: 12px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* prevent layout viewport widening on iOS Safari */
    max-width: 100%;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.section { padding: 100px 0; }

/* Clip any decorative overflow at the section level so no child can widen the viewport */
section, main { max-width: 100%; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 32px;
    transition: background var(--transition), border-bottom var(--transition);
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--bg-3);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    color: var(--white);
}
.nav-logo-text em {
    font-style: normal;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2px;
    align-items: center;
}

.nav-links a {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--text-muted);
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    position: relative;
}

.nav-icon-btn:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--accent);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    width: 40px;
}
.hamburger span {
    display: block;
    height: 1.5px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 16px 0;
}
.mobile-menu.active { display: block; }
.mobile-menu li a {
    display: block;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
}
.mobile-menu li a:hover { color: var(--accent); }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--black);
    border: 2px solid var(--accent);
}
.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    box-shadow: 0 0 30px rgba(200, 255, 0, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 2px solid var(--border);
}
.btn-ghost:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 11px 22px;
}
.btn-outline:hover {
    color: var(--white);
    border-color: var(--accent);
    color: var(--accent);
}

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent);
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.0;
    letter-spacing: 0.02em;
    color: var(--white);
}

.section-header { margin-bottom: 56px; }

.section-header--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

/* ================================================
   HERO
   ================================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 32px 80px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    gap: 60px;
}

.hero-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 70% 40%, rgba(200, 255, 0, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(200, 255, 0, 0.03) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content { z-index: 1; }

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.hero-dot {
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: 0.01em;
    margin-bottom: 28px;
    display: block;
}

.hero-line { display: block; }
.hero-line--accent { color: var(--accent); }
.hero-line--outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
}

.hero-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 420px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    line-height: 1;
}

.hero-stat-label {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 3/4;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-img-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #111 40%, #0d1a00 70%, #1a2400 100%);
}

.hero-img-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(ellipse 50% 60% at 60% 40%, rgba(200,255,0,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-image-placeholder::before {
    content: 'BILD KOMMT';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.08);
    z-index: 2;
}

.hero-img-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    z-index: 3;
}
.hero-img-tag span {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}
.hero-img-tag strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}
.hero-img-tag em {
    font-size: 13px;
    color: var(--text-muted);
    font-style: normal;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-dim), transparent);
    animation: scrollHint 2s ease-in-out infinite;
}

@keyframes scrollHint {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* ================================================
   MARQUEE
   ================================================ */
.marquee-strip {
    background: var(--accent);
    color: var(--black);
    overflow: hidden;
    padding: 14px 0;
    position: relative;
    z-index: 10;
}

.marquee-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    width: max-content;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    align-items: center;
}

.marquee-dot {
    font-size: 10px;
    opacity: 0.6;
}

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

/* ================================================
   CATEGORIES
   ================================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    aspect-ratio: 3/4;
    background: var(--bg-2);
    border: 1px solid var(--border);
    transition: transform var(--transition), border-color var(--transition);
}

.category-card:hover { transform: translateY(-4px); border-color: var(--accent); }

.category-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon {
    font-size: 4rem;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
    transition: transform var(--transition);
}

.category-card:hover .category-icon { transform: scale(1.1); }

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 3;
}

.category-info h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 4px;
}

.category-cta {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.category-card:hover .category-cta { gap: 10px; }

/* ================================================
   PRODUCTS
   ================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.product-card:hover {
    border-color: rgba(200, 255, 0, 0.2);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.product-img-placeholder {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.product-img--1 { background: linear-gradient(135deg, #1a1f0d 0%, #2a3011 50%, #111 100%); }
.product-img--2 { background: linear-gradient(135deg, #0d0d1a 0%, #111124 50%, #111 100%); }
.product-img--3 { background: linear-gradient(135deg, #1a0d0d 0%, #2a1111 50%, #111 100%); }
.product-img--4 { background: linear-gradient(135deg, #0d1a13 0%, #11241a 50%, #111 100%); }

.product-img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: var(--black);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 2px;
    z-index: 2;
}

.product-badge--sale { background: #ff4444; color: #fff; }

.product-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(8, 8, 8, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    z-index: 2;
    transition: color var(--transition), background var(--transition);
}

.product-wishlist:hover { color: #ff4444; background: rgba(8, 8, 8, 0.95); }

.product-quick-add {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    background: var(--accent);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px;
    z-index: 2;
    transition: bottom var(--transition);
}

.product-card:hover .product-quick-add { bottom: 0; }

.product-info {
    padding: 16px;
}

.product-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 6px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.product-price-old {
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: line-through;
}

.product-colors {
    display: flex;
    gap: 4px;
    margin-left: auto;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: block;
}

/* Real image wrapper */
.product-img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-3);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img { transform: scale(1.04); }

.product-img-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-3);
    font-size: 3rem;
    color: var(--text-dim);
}

.product-img-empty--dark { background: #0d0d0d; }

/* Badge variants */
.product-badge--drop {
    background: #ff6b00;
    color: #fff;
    top: 44px;
}
.product-badge--drop:first-child { top: 14px; }

/* Sold-out overlay */
.product-soldout {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    backdrop-filter: blur(2px);
}

/* Sizes */
.product-sizes {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.product-sizes span {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-dim);
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 2px 7px;
    letter-spacing: 0.04em;
}

/* Product description (drops) */
.product-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Drop card accent */
.product-card--drop {
    border-color: rgba(255, 107, 0, 0.15);
}
.product-card--drop:hover {
    border-color: rgba(255, 107, 0, 0.35);
    box-shadow: 0 8px 40px rgba(255,107,0,0.1);
}

/* Drop stock hint */
.drop-stock-hint {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #ff9966;
    margin-top: 10px;
}

/* Wide grid (artikel page) */
.products-grid--wide {
    grid-template-columns: repeat(4, 1fr);
}

/* Drops grid (3 cols) */
.products-grid--drops {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── RESPONSIVE – Products ── */
@media (max-width: 1024px) {
    .products-grid,
    .products-grid--wide { grid-template-columns: repeat(3, 1fr); }
    .products-grid--drops { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .products-grid,
    .products-grid--wide { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .products-grid--drops { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-info { padding: 12px; }
    .product-name { font-size: 13px; }
    .product-price { font-size: 14px; }
}

@media (max-width: 480px) {
    .products-grid,
    .products-grid--wide { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .products-grid--drops { grid-template-columns: 1fr; }
    .product-info { padding: 10px; }
}

/* ================================================
   PROMO BANNER
   ================================================ */
.promo-banner {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.promo-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.promo-left {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.promo-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}
.promo-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--accent);
    display: block;
}

.promo-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 0.01em;
    color: var(--white);
}

.promo-title em {
    font-style: normal;
    color: var(--accent);
}

.promo-left p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 380px;
    line-height: 1.7;
}

.promo-right {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1a00 0%, #1a2800 100%);
}

.promo-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.promo-big-text {
    font-family: var(--font-display);
    font-size: 12rem;
    color: rgba(200, 255, 0, 0.05);
    letter-spacing: -0.05em;
    user-select: none;
    position: relative;
    z-index: 2;
}

.promo-shape {
    position: absolute;
    border-radius: 50%;
}

.promo-shape--1 {
    width: 400px;
    height: 400px;
    border: 1px solid rgba(200, 255, 0, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.promo-shape--2 {
    width: 280px;
    height: 280px;
    border: 1px solid rgba(200, 255, 0, 0.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.promo-shape--3 {
    width: 120px;
    height: 120px;
    background: rgba(200, 255, 0, 0.07);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ================================================
   WHY PRIME
   ================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: border-color var(--transition), transform var(--transition);
}

.feature-card:hover {
    border-color: rgba(200, 255, 0, 0.2);
    transform: translateY(-4px);
}

.feature-card--accent {
    background: var(--accent-dim);
    border-color: rgba(200, 255, 0, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 24px;
}

.feature-card--accent .feature-icon {
    background: rgba(200, 255, 0, 0.1);
    border-color: rgba(200, 255, 0, 0.3);
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ================================================
   NEWSLETTER
   ================================================ */
.newsletter {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.newsletter-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    margin: 8px 0 12px;
    letter-spacing: 0.02em;
}

.newsletter-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.newsletter-input-group input {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 13px 18px;
    font-size: 14px;
    color: var(--white);
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-input-group input:focus { border-color: var(--accent); }
.newsletter-input-group input::placeholder { color: var(--text-dim); }

.newsletter-legal {
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.5;
}

.newsletter-legal a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }
.newsletter-legal a:hover { color: var(--accent); }

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding-top: 72px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    padding-bottom: 64px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-logo span { color: var(--accent); }

.footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 220px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.footer-social a:hover {
    color: var(--accent);
    border-color: rgba(200, 255, 0, 0.3);
    background: var(--accent-dim);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 32px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-dim);
}

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

.footer-payment span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dim);
    background: var(--bg-3);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 3px;
}

/* ================================================
   MESSAGES
   ================================================ */
/* ─── Toast notifications ─── */
.messages-container {
    position: fixed;
    top: 84px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 360px;
    width: calc(100vw - 40px);
    pointer-events: none;
}

.message {
    pointer-events: all;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px 14px 14px;
    background: #1c1c1c;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.4);
    overflow: hidden;
    /* slide-in from right */
    animation: toastIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(calc(100% + 24px)); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
    from { opacity: 1; transform: translateX(0); max-height: 120px; margin-bottom: 0; }
    to   { opacity: 0; transform: translateX(calc(100% + 24px)); max-height: 0; margin-bottom: -10px; }
}

.message.toast-exit {
    animation: toastOut 0.3s cubic-bezier(0.4, 0, 1, 1) forwards;
}

/* Icon column */
.message-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    font-size: 11px;
    font-weight: 900;
}

/* Text + close row */
.message-body {
    flex: 1;
    min-width: 0;
    padding-right: 8px;
}

.message-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: rgba(255,255,255,0.35);
    cursor: pointer;
    border-radius: 50%;
    padding: 0;
    transition: color 0.15s, background 0.15s;
    font-size: 14px;
    line-height: 1;
}
.message-close:hover { color: var(--text); background: rgba(255,255,255,0.07); }

/* Progress bar */
.message-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    border-radius: 0 0 12px 12px;
    animation: progressShrink linear forwards;
}
@keyframes progressShrink {
    from { width: 100%; }
    to   { width: 0%; }
}

/* Variants */
.message-success {
    border-left: 3px solid var(--accent);
}
.message-success .message-icon {
    background: rgba(200,255,0,0.12);
    color: var(--accent);
}
.message-success .message-progress {
    background: var(--accent);
}

.message-error {
    border-left: 3px solid #ff4d4d;
}
.message-error .message-icon {
    background: rgba(255,77,77,0.12);
    color: #ff4d4d;
}
.message-error .message-progress {
    background: #ff4d4d;
}

.message-info,
.message-warning {
    border-left: 3px solid #60cdff;
}
.message-info .message-icon,
.message-warning .message-icon {
    background: rgba(96,205,255,0.12);
    color: #60cdff;
}
.message-info .message-progress,
.message-warning .message-progress {
    background: #60cdff;
}

@media (max-width: 480px) {
    .messages-container { top: 72px; right: 12px; width: calc(100vw - 24px); }
    .message { padding: 12px 14px 12px 12px; font-size: 12px; border-radius: 10px; }
}

/* ================================================
   PAGE HEADER (Unterseiten)
   ================================================ */
.page-header {
    padding: 140px 0 60px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(200,255,0,0.03) 0%, transparent 100%);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    letter-spacing: 0.02em;
    color: var(--white);
    line-height: 1;
    margin: 8px 0 16px;
}

.page-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.7;
}

/* ================================================
   ARTIKEL-SEITE
   ================================================ */
.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.filter-btn {
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.filter-btn--active { color: var(--black); background: var(--accent); border-color: var(--accent); }

.empty-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ================================================
   DROPS-SEITE
   ================================================ */
.drops-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
}

.drops-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--bg);
}

.drops-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.drops-glow--1 {
    width: 500px;
    height: 500px;
    background: rgba(200, 255, 0, 0.06);
    top: -100px;
    right: -100px;
}

.drops-glow--2 {
    width: 300px;
    height: 300px;
    background: rgba(200, 255, 0, 0.04);
    bottom: 0;
    left: 20%;
}

.drops-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.drops-hero-inner { position: relative; z-index: 1; }

.drops-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(200,255,0,0.2);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.drops-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.drops-dot--lg { width: 8px; height: 8px; }

.drops-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 24px;
}

.drops-title span { color: var(--accent); }

.drops-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
}

.drops-coming-soon {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 64px;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 56px;
    margin-bottom: 60px;
}

.drops-logo-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--bg-3);
    border: 2px solid var(--border);
    margin: 0 auto;
}

.drops-coming-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.drops-coming-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 16px;
}

.drops-coming-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.drops-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.drop-placeholder-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border-style: dashed;
}

.drop-placeholder-img {
    aspect-ratio: 1/1;
    background: var(--bg-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.drop-placeholder-info {
    padding: 20px;
}

.drop-status {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 10px;
}

.drop-status--soon { color: var(--accent); background: var(--accent-dim); }

.drop-placeholder-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 4px;
}

.drop-placeholder-info p {
    font-size: 12px;
    color: var(--text-dim);
}

/* ================================================
   ÜBER UNS SEITE
   ================================================ */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-img { width: 100%; }

.img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    border-style: dashed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-text-block p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
    opacity: 0.5;
}

.about-vision {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-vision-inner {
    display: flex;
    justify-content: center;
}

.about-vision-quote {
    max-width: 700px;
    text-align: center;
    position: relative;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--accent);
    opacity: 0.2;
    line-height: 1;
    display: block;
    margin-bottom: -40px;
}

blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 20px;
    font-style: normal;
}

cite {
    font-size: 13px;
    color: var(--text-muted);
    font-style: normal;
    letter-spacing: 0.06em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: border-color var(--transition);
}

.value-card:hover { border-color: rgba(200,255,0,0.2); }

.value-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    opacity: 0.5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 16px;
}

.gallery-item .img-placeholder { height: 100%; aspect-ratio: unset; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.about-cta-inner {
    background: linear-gradient(135deg, var(--surface) 0%, var(--bg-2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.about-cta-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--bg-3);
    padding: 4px;
    border: 1px solid var(--border);
}

.about-cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
}

.about-cta-inner p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 400px;
}

.about-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ================================================
   KONTAKT-SEITE
   ================================================ */
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
}

.kontakt-form-wrap h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 32px;
    letter-spacing: 0.03em;
}

.kontakt-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: flex; gap: 16px; }
.form-row--2 > * { flex: 1; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 13px 16px;
    font-size: 14px;
    color: var(--white);
    outline: none;
    transition: border-color var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.btn-full { width: 100%; justify-content: center; }

.kontakt-info {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: sticky;
    top: 100px;
}

.kontakt-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.kontakt-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--bg-3);
    border: 2px solid var(--border);
    padding: 4px;
}

.kontakt-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    text-align: center;
    letter-spacing: 0.04em;
}

.kontakt-tagline {
    text-align: center;
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.kontakt-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.kontakt-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.kontakt-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.kontakt-item .kontakt-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 2px;
}

.kontakt-item a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition);
}

.kontakt-item a:hover { color: var(--accent); }

.kontakt-response {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-dim);
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 14px;
}

.kontakt-response svg { color: var(--accent); flex-shrink: 0; }

/* ================================================
   FOOTER (aktualisiert)
   ================================================ */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--bg-3);
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    color: var(--white);
}

.footer-logo em { font-style: normal; color: var(--accent); }

/* ================================================
   NAV – Drops-Highlight
   ================================================ */
.nav-drops {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.05);
}

/* ================================================
   MOBILE – Hamburger Animiert
   ================================================ */
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ================================================
   RESPONSIVE – KOMPLETT
   ================================================ */
@media (max-width: 1024px) {
    .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
    .drops-coming-soon { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .drops-logo-img { margin: 0 auto; }
    .drops-placeholder-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item--tall { grid-row: span 1; }
    .gallery-item--wide { grid-column: span 2; }
    .kontakt-grid { grid-template-columns: 1fr; }
    .kontakt-info { position: static; }
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { grid-template-columns: repeat(3, 1fr); }
    .newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* ── Navbar: edge-to-edge, kein Seitenabstand ── */
    .navbar { padding: 0; }
    .nav-container { padding: 0 16px; height: 60px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    /* Mobile-Menu: volles Fullscreen, kein Einzug ── */
    .mobile-menu { margin: 0; }
    .mobile-menu li a {
        padding: 15px 20px;
        font-size: 15px;
        font-weight: 500;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .mobile-menu li a:hover { background: rgba(200,255,0,0.04); }
    .mobile-menu-auth { padding: 16px 20px 20px; }

    /* ── Sections & Container ── */
    .section { padding: 48px 0; }
    .container { padding: 0 16px; }
    .page-header { padding: 100px 0 36px; }

    /* ── Hero Simple: fullscreen, enger ── */
    .hero-simple { padding: 88px 16px 56px; }
    .hero-logo { width: 100px; height: 100px; }
    .hero-simple-title { font-size: clamp(2rem, 11vw, 3.5rem); }
    .hero-trust { gap: 16px; flex-wrap: wrap; justify-content: center; }

    /* ── Brand Statement ── */
    .brand-statement-inner { grid-template-columns: 1fr; gap: 28px; }
    .brand-info-inner { grid-template-columns: 1fr; gap: 28px; padding: 24px; text-align: center; }
    .brand-logo-img { max-width: 120px; height: 120px; }
    .brand-tags { justify-content: center; }

    /* ── Produkte ── */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .products-grid--wide { grid-template-columns: repeat(2, 1fr); }
    .products-grid--drops { grid-template-columns: repeat(2, 1fr); }

    /* ── Drops ── */
    .drops-hero { padding: 100px 0 52px; }
    .drops-title { font-size: clamp(2.8rem, 12vw, 5.5rem); }
    .drops-coming-soon { flex-direction: column; gap: 28px; padding: 24px; }
    .drops-placeholder-grid { grid-template-columns: 1fr; }

    /* ── About ── */
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gallery-item--wide { grid-column: span 1; }
    .about-cta-inner { padding: 36px 20px; }
    .values-grid { grid-template-columns: 1fr; }

    /* ── Kontakt ── */
    .kontakt-grid { grid-template-columns: 1fr; }
    .kontakt-info { position: static; padding: 24px; }
    .form-row { flex-direction: column; gap: 0; }

    /* ── Footer ── */
    .footer-container { grid-template-columns: 1fr; gap: 32px; padding: 0 16px 32px; }
    .footer-links { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 12px; padding: 20px 16px; }

    /* ── Newsletter ── */
    .newsletter-input-group { flex-direction: column; }
    .newsletter-inner { gap: 28px; }

    /* ── Features ── */
    .features-grid { grid-template-columns: 1fr; gap: 12px; }

    /* ── Misc ── */
    .section-header--row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .nav-logo-text { display: none; }
    .empty-cta { flex-direction: column; align-items: center; }

    /* ── Marquee Schrift kleiner ── */
    .marquee-track span { font-size: 11px; }
}

@media (max-width: 480px) {
    /* ── Sehr kleine Handys ── */
    .container { padding: 0 14px; }
    .nav-container { padding: 0 14px; }

    .filter-bar { gap: 6px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
    .filter-btn { padding: 7px 14px; font-size: 11px; white-space: nowrap; flex-shrink: 0; }

    .drops-coming-soon { padding: 18px; }
    .about-cta-btns { flex-direction: column; width: 100%; }
    .about-cta-btns .btn { justify-content: center; width: 100%; }
    .kontakt-form-wrap h2 { font-size: 1.5rem; }
    .footer-payment { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .hero-simple-cta { flex-direction: column; align-items: stretch; gap: 10px; }
    .hero-simple-cta .btn { justify-content: center; }
    .section { padding: 40px 0; }
    .hero-simple { padding: 80px 14px 48px; }
}

@media (max-width: 360px) {
    /* ── Mini-Phones (SE, Galaxy A) ── */
    .container { padding: 0 12px; }
    .nav-container { padding: 0 12px; }
    .products-grid { grid-template-columns: 1fr; }
    .products-grid--wide { grid-template-columns: 1fr; }
    .hero-simple-title { font-size: clamp(1.8rem, 12vw, 3rem); }
    .cart-title { font-size: 1.7rem; }
    .mobile-menu li a { padding: 13px 16px; }
}

/* ================================================
   HERO SIMPLE (neue Startseite)
   ================================================ */
.hero-simple {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 32px 80px;
    position: relative;
    overflow: hidden; /* clip decorative orb so it never widens the layout viewport */
    background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(200,255,0,0.05) 0%, transparent 60%);
}

.hero-simple::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
    pointer-events: none;
}

.hero-simple-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-logo {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--bg-2);
    border: 2px solid var(--border);
    padding: 4px;
    box-shadow: 0 0 60px rgba(200,255,0,0.08), 0 20px 60px rgba(0,0,0,0.5);
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 60px rgba(200,255,0,0.08), 0 20px 60px rgba(0,0,0,0.5); }
    50% { box-shadow: 0 0 80px rgba(200,255,0,0.15), 0 20px 60px rgba(0,0,0,0.5); }
}

.hero-simple-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 6rem);
    letter-spacing: 0.04em;
    color: var(--white);
    line-height: 1;
    margin: 0;
}

.hero-simple-sub {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: -8px;
}

.hero-simple-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;
}

/* ================================================
   BRAND INFO
   ================================================ */
.brand-info-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 56px;
}

.brand-logo-img {
    width: 100%;
    max-width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--bg-3);
    border: 2px solid var(--border);
    padding: 4px;
    margin: 0 auto;
}

.brand-sub {
    font-style: normal;
    color: var(--accent);
    font-size: 0.6em;
}

.brand-description {
    margin: 16px 0 24px;
}

.brand-placeholder {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
    opacity: 0.6;
}

.brand-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.brand-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(200,255,0,0.2);
    padding: 5px 12px;
    border-radius: 20px;
}

/* ================================================
   EMPTY PRODUCTS
   ================================================ */
.empty-products {
    text-align: center;
    padding: 80px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    border-style: dashed;
}

.empty-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    margin: 0 auto 24px;
    opacity: 0.4;
}

.empty-products h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.empty-products p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 32px;
}

/* Responsive: Brand Info */
@media (max-width: 768px) {
    .brand-info-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 32px;
        text-align: center;
    }
    .brand-logo-img { max-width: 160px; height: 160px; }
    .brand-tags { justify-content: center; }
    .nav-logo-text { display: none; }
    .hero-logo { width: 120px; height: 120px; }
}

/* ================================================
   NEUE HOMEPAGE-ELEMENTE
   ================================================ */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(200,255,0,0.2);
    padding: 6px 14px;
    border-radius: 20px;
}

.hero-tagline {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: -8px 0 4px;
}

.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.trust-item svg { color: var(--accent); }

/* Brand Statement (neue Version) */
.brand-statement { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.brand-statement-inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 64px;
    align-items: center;
}

.brand-statement-img { display: flex; justify-content: center; }

.brand-logo-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--bg-3);
    border: 2px solid var(--border);
    padding: 4px;
    box-shadow: 0 0 40px rgba(200,255,0,0.06);
}

.accent-text { color: var(--accent); }

.brand-lead {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 16px 0 10px;
}

.brand-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.brand-social-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--black);
    padding: 9px 18px;
    border-radius: 20px;
    transition: all var(--transition);
}

.social-pill:hover { opacity: 0.85; }

.social-pill--ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.social-pill--ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

/* Feature icon als Emoji */
.feature-icon {
    font-size: 2.2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

/* TikTok CTA Section */
.tiktok-cta {
    padding: 80px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.tiktok-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
}

.tiktok-cta-left h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin: 8px 0 16px;
    line-height: 1;
}

.tiktok-cta-left p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 28px;
}

.tiktok-preview {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    min-width: 260px;
}

.tiktok-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
    margin: 0 auto 16px;
}

.tiktok-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tiktok-handle {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.tiktok-bio {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Responsive TikTok & Brand Statement */
@media (max-width: 768px) {
    .brand-statement-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .brand-social-row { justify-content: center; }
    .tiktok-cta-inner { grid-template-columns: 1fr; gap: 40px; }
    .tiktok-preview { min-width: unset; }
    .hero-trust { gap: 12px; }
    .hero-tagline { font-size: 15px; }
}

/* ================================================
   NAV AUTH – Login button & user dropdown
   ================================================ */
.nav-login-btn {
    display: inline-flex;
    align-items: center;
    padding: 7px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--accent);
    border-radius: 20px;
    transition: opacity 0.2s;
    white-space: nowrap;
}
.nav-login-btn:hover { opacity: 0.85; }

.nav-user { position: relative; }

.nav-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 5px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    cursor: pointer;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    transition: border-color 0.2s;
}
.nav-user-btn:hover { border-color: rgba(255,255,255,0.2); }

.nav-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--black);
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-user-name { max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.nav-user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    z-index: 200;
}
.nav-user-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    font-size: 13px;
    color: var(--text-muted);
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
    cursor: pointer;
}
.nav-dropdown-item:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.nav-dropdown-item--danger:hover { color: #ff5555; }

.nav-dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

/* Mobile menu auth section */
.mobile-menu-auth {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-auth-user {
    font-size: 13px;
    color: var(--text-muted);
    padding: 0 0 4px;
}

.mobile-auth-btn {
    display: block;
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: color 0.2s, border-color 0.2s;
}
.mobile-auth-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.mobile-auth-btn--primary { background: var(--accent); color: var(--black); border-color: var(--accent); }
.mobile-auth-btn--primary:hover { opacity: 0.9; color: var(--black); }
.mobile-auth-btn--logout { color: #ff5555; border-color: rgba(255,85,85,0.2); }
.mobile-auth-btn--logout:hover { background: rgba(255,85,85,0.08); }

/* ================================================
   AUTH PAGES – Login & Register
   ================================================ */
.auth-page {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(200,255,0,0.04) 0%, transparent 70%);
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 36px;
}

.auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.auth-logo-mark {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}

.auth-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    text-align: center;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.auth-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 28px;
}

.auth-alert {
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 13px;
    margin-bottom: 16px;
}
.auth-alert--error { background: rgba(255,85,85,0.1); border: 1px solid rgba(255,85,85,0.3); color: #ff7777; }
.auth-alert--success { background: rgba(200,255,0,0.08); border: 1px solid rgba(200,255,0,0.3); color: var(--accent); }

.auth-form { display: flex; flex-direction: column; gap: 16px; }

.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-field label { font-size: 12px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.04em; }

.auth-error { font-size: 12px; color: #ff7777; margin-top: 2px; }

.auth-submit {
    width: 100%;
    padding: 13px;
    background: var(--accent);
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    margin-top: 4px;
    transition: opacity 0.2s;
}
.auth-submit:hover { opacity: 0.88; }

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}
.auth-footer a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ================================================
   ACCOUNT PAGE
   ================================================ */
.account-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 24px 60px;
}

.account-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.account-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.account-name {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 0.02em;
}

.account-email { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.account-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.account-card-icon { font-size: 2rem; margin-bottom: 12px; }

.account-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.account-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

.account-card-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.04em;
}

.account-logout-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: color 0.2s, border-color 0.2s;
}
.account-logout-btn:hover { color: #ff5555; border-color: rgba(255,85,85,0.3); }

@media (max-width: 600px) {
    .auth-card { padding: 28px 20px; }
    .account-header { flex-direction: column; text-align: center; }
    .nav-user-name { display: none; }
}

/* ================================================
   PRODUCT CARD LINK (clickable cards)
   ================================================ */
.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.product-card-link:hover .product-card {
    transform: translateY(-4px);
    border-color: var(--accent);
}

/* ================================================
   PRODUCT DETAIL PAGE
   ================================================ */
.detail-breadcrumb {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}
.detail-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}
.detail-breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.detail-breadcrumb a:hover { color: var(--accent); }
.detail-breadcrumb span { color: var(--white); }

.detail-page { padding: 48px 0 64px; }

.detail-layout {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 56px;
    align-items: start;
}

/* Images */
.detail-images { position: sticky; top: 100px; }

.detail-main-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    aspect-ratio: 4/5;
    border: 1px solid var(--border);
}
.detail-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.detail-main-img:hover img { transform: scale(1.02); }

.detail-img-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    opacity: 0.3;
}

.detail-img-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--black);
    border-radius: 20px;
}
.detail-img-badge--drop {
    background: linear-gradient(135deg, #ff6b00, #ff0080);
    color: #fff;
}

.detail-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.detail-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 2px solid var(--border);
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s;
}
.detail-thumb.active { border-color: var(--accent); }
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Info panel */
.detail-info { padding-top: 8px; }

.detail-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.detail-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1;
    color: var(--white);
    margin: 0 0 20px;
    letter-spacing: 0.02em;
}

.detail-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 24px;
}
.detail-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: var(--accent);
    letter-spacing: 0.02em;
}
.detail-price-old {
    font-size: 1.3rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.detail-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 480px;
}

/* Size chips */
.detail-sizes-block { margin-bottom: 24px; }
.detail-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.detail-size-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.size-chip-btn {
    padding: 8px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: transparent;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.size-chip-btn:hover { border-color: var(--accent); color: var(--accent); }
.size-chip-btn.active { border-color: var(--accent); background: var(--accent); color: var(--black); }

/* Stock info */
.detail-stock-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #4ade80;
    margin-bottom: 20px;
}
.detail-stock-info svg { color: #4ade80; }
.detail-stock-info--out { color: #ff5555; }

.detail-order-btn {
    width: 100%;
    padding: 16px 28px;
    font-size: 14px;
    margin-bottom: 24px;
    justify-content: center;
}

/* Trust row */
.detail-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.detail-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}
.detail-trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ================================================
   ORDER SECTION
   ================================================ */
.order-section {
    padding: 64px 0 80px;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.order-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.order-card-header {
    padding: 36px 40px 28px;
    border-bottom: 1px solid var(--border);
}
.order-card-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--white);
    margin: 0 0 8px;
    letter-spacing: 0.02em;
}
.order-card-header p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.order-success-msg {
    margin: 0;
    padding: 16px 40px;
    background: rgba(74, 222, 128, 0.1);
    border-bottom: 1px solid rgba(74, 222, 128, 0.2);
    font-size: 14px;
    font-weight: 600;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 10px;
}
.order-success-msg--error {
    background: rgba(255, 85, 85, 0.1);
    border-color: rgba(255, 85, 85, 0.2);
    color: #ff5555;
}

.order-form { padding: 32px 40px 40px; }

.order-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 28px;
}
.order-summary-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--border);
    flex-shrink: 0;
}
.order-summary-img img { width: 100%; height: 100%; object-fit: cover; }
.order-summary-img span { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 24px; }
.order-summary-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.order-summary-price { font-size: 16px; font-weight: 700; color: var(--accent); margin-bottom: 2px; }
.order-summary-size { font-size: 12px; color: var(--text-muted); }

.order-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.order-field { display: flex; flex-direction: column; gap: 6px; }
.order-field label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.order-field--full { grid-column: 1 / -1; }

.order-size-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }

.order-error { font-size: 11px; color: #ff5555; font-weight: 600; }

.order-submit {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    justify-content: center;
    margin-bottom: 12px;
}

.order-hint {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

/* ================================================
   STICKY MOBILE BAR
   ================================================ */
.detail-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(10,10,10,0.95);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(12px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.detail-sticky-bar.visible { transform: translateY(0); }

.detail-sticky-info { display: flex; flex-direction: column; gap: 2px; }
.detail-sticky-name { font-size: 13px; font-weight: 700; color: var(--white); }
.detail-sticky-price { font-size: 16px; font-weight: 700; color: var(--accent); }
.detail-sticky-btn { padding: 12px 24px; font-size: 13px; white-space: nowrap; }
.detail-sticky-out { font-size: 13px; color: var(--text-muted); font-weight: 600; }

/* ================================================
   DETAIL PAGE RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
    .detail-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .detail-images { position: static; }
    .detail-main-img { aspect-ratio: 16/12; }
}

@media (max-width: 600px) {
    .detail-page { padding: 28px 0 48px; }
    .order-form { padding: 24px 20px 32px; }
    .order-card-header { padding: 24px 20px 20px; }
    .order-success-msg { padding: 14px 20px; }
    .order-form-grid { grid-template-columns: 1fr; }
    .detail-name { font-size: 2rem; }
    .detail-sticky-bar { display: flex; }
}

@media (min-width: 601px) {
    .detail-sticky-bar { display: none; }
}

/* ================================================
   ANIMATIONS & REVEAL SYSTEM
   ================================================ */

/* Scroll reveal base */
.reveal {
    opacity: 0;
    transition: opacity 0.55s cubic-bezier(.22,1,.36,1),
                transform 0.55s cubic-bezier(.22,1,.36,1);
    will-change: opacity, transform;
}
.reveal--up    { transform: translateY(28px); }
.reveal--left  { transform: translateX(-28px); }
.reveal--right { transform: translateX(28px); }
.reveal--scale { transform: scale(0.92); }
.reveal.is-revealed {
    opacity: 1 !important;
    transform: none !important;
}

/* Shimmer skeleton */
.shimmer {
    background: linear-gradient(
        90deg,
        var(--surface) 0%,
        rgba(200,255,0,0.04) 40%,
        var(--surface) 80%
    );
    background-size: 200% 100%;
    animation: shimmer-move 1.6s ease infinite;
}
@keyframes shimmer-move {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Hero logo float */
@keyframes hero-logo-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* Product card shine sweep on hover */
.product-card {
    position: relative;
    overflow: hidden;
}
.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        transparent 30%,
        rgba(200,255,0,0.06) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.55s ease;
    pointer-events: none;
}
.product-card:hover::after { transform: translateX(100%); }

/* Pulse dot animation */
.drops-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(200,255,0,0.4);
    animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
    0%   { box-shadow: 0 0 0 0 rgba(200,255,0,0.5); }
    70%  { box-shadow: 0 0 0 7px rgba(200,255,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(200,255,0,0); }
}

/* Detail page image hover scale */
.detail-main-img img {
    transition: transform 0.5s cubic-bezier(.22,1,.36,1);
}
.detail-main-img:hover img { transform: scale(1.025); }

/* Size chip active spring */
.size-chip-btn {
    transition: all 0.18s cubic-bezier(.34,1.56,.64,1) !important;
}
.size-chip-btn:active { transform: scale(0.93); }

/* Marquee performance */
.marquee-track { will-change: transform; }

/* Scroll progress bar color pulse on complete */
#scrollProgress { transition: width 0.1s linear; }

/* Section reveal animation class helpers (for HTML usage) */
.fade-in-up {
    animation: fade-in-up 0.6s cubic-bezier(.22,1,.36,1) both;
}
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Btn hover lift */
.btn {
    transition: transform 0.18s cubic-bezier(.34,1.56,.64,1),
                opacity 0.2s ease,
                background 0.2s ease,
                box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,255,0,0.15); }
.btn:active { transform: translateY(0); }

/* ================================================
   IMAGE LOADING ANIMATION
   ================================================ */

/* Skeleton shimmer while image loads */
.product-img-wrap {
    background: var(--surface);
    position: relative;
    overflow: hidden;
}
.product-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(200,255,0,0.05) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: img-skeleton 1.6s ease infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.4s ease;
}
.product-img-wrap.loaded::before { opacity: 0; }

/* Image fade-in on load */
.product-img {
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(.22,1,.36,1);
    position: relative;
    z-index: 2;
}
.product-img.is-loaded { opacity: 1; }

@keyframes img-skeleton {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Detail page image skeleton */
.detail-main-img {
    background: var(--surface);
    position: relative;
    overflow: hidden;
}
.detail-main-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(200,255,0,0.04) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: img-skeleton 1.8s ease infinite;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.5s ease;
}
.detail-main-img.loaded::before { opacity: 0; }
#mainImgEl {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(.22,1,.36,1);
    z-index: 2;
    position: relative;
}
#mainImgEl.is-loaded { opacity: 1; }

/* Staggered product grid card reveal with scale */
.products-grid .product-card-link {
    animation: none;
}
.products-grid .product-card-link.is-revealed .product-card {
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

/* ================================================
   ÜBER UNS – NEUE VERSION
   ================================================ */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 130px 32px 90px;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 50% 40%, rgba(200,255,0,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(200,255,0,0.03) 0%, transparent 60%);
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.about-hero-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--bg-2);
    border: 2px solid rgba(200,255,0,0.2);
    padding: 4px;
    box-shadow: 0 0 60px rgba(200,255,0,0.12), 0 24px 60px rgba(0,0,0,0.5);
    animation: logoPulse 4s ease-in-out infinite;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(200,255,0,0.2);
    padding: 6px 14px;
    border-radius: 20px;
}

.about-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 0.03em;
    color: var(--white);
    line-height: 1;
    margin: 0;
}

.about-hero-accent { color: var(--accent); }

.about-hero-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 460px;
    font-weight: 500;
}

.about-hero-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.about-pill {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 7px 16px;
    border-radius: 20px;
}

.about-pill--accent {
    color: var(--accent);
    background: var(--accent-dim);
    border-color: rgba(200,255,0,0.2);
}

/* Stats strip */
.about-stats-strip {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.about-stat-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--accent);
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* New story section */
.about-story-img-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    max-width: 420px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid rgba(200,255,0,0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-story-logo-big {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--bg-3);
    border: 2px solid var(--border);
    padding: 8px;
    position: relative;
    z-index: 1;
}

.about-story-img-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(200,255,0,0.06);
    filter: blur(60px);
}

.about-text-block p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: normal;
    opacity: 1;
}

.about-tiktok-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(200,255,0,0.3);
    background: var(--accent-dim);
    padding: 10px 20px;
    border-radius: 20px;
    transition: all var(--transition);
    margin-top: 8px;
}
.about-tiktok-link:hover { background: rgba(200,255,0,0.2); }

/* Quote section */
.about-quote-section {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
}

.about-quote-wrap {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.about-quote-mark {
    font-family: var(--font-display);
    font-size: 10rem;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
    display: block;
    margin-bottom: -50px;
    user-select: none;
}

.about-quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.25;
    margin-bottom: 20px;
    font-style: normal;
}

.about-quote-cite {
    font-size: 13px;
    color: var(--text-muted);
    font-style: normal;
    letter-spacing: 0.06em;
}

/* Values – updated */
.value-card {
    position: relative;
    overflow: hidden;
}

.value-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}

.value-card p { font-style: normal; opacity: 1; }

/* TikTok section */
.about-tiktok-section {
    background: var(--bg);
}

.about-tiktok-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: center;
}

.about-tiktok-text .section-label { display: block; margin-bottom: 8px; }

.about-tiktok-brand {
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
}

.about-tiktok-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 16px 0 20px;
    max-width: 440px;
}

.about-tiktok-handle {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}

.about-tiktok-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* TikTok preview card */
.tiktok-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.tiktok-card-top {
    margin-bottom: 20px;
}

.tiktok-card-user {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.tiktok-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--bg-3);
    border-radius: 50%;
    border: 2px solid var(--border);
}

.tiktok-card-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.tiktok-card-sub {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 4px;
}

/* Responsive Über uns */
@media (max-width: 900px) {
    .about-tiktok-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    .about-hero { padding: 110px 20px 70px; }
    .about-hero-logo { width: 120px; height: 120px; }
    .about-stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .about-stat-num { font-size: 2.5rem; }
    .about-quote-mark { font-size: 7rem; }
    .about-hero-pills { gap: 6px; }
    .tiktok-card { padding: 24px; }
    .about-story-img-inner { max-width: 300px; }
    .about-story-logo-big { width: 140px; height: 140px; }
}

@media (max-width: 480px) {
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
    .about-hero-pills { flex-direction: column; align-items: center; }
    .about-hero-title { font-size: 2.8rem; }
}

/* ================================================
   RECHTLICHE SEITEN (Datenschutz, Impressum, AGB)
   ================================================ */
.legal-page {
    padding: 120px 0 80px;
    min-height: 80vh;
}

.legal-header {
    margin-bottom: 56px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.legal-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    letter-spacing: 0.02em;
    color: var(--white);
    line-height: 1;
    margin: 8px 0 12px;
}

.legal-sub {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.legal-body {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.legal-section h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin: 20px 0 8px;
    letter-spacing: 0.04em;
}

.legal-section p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 12px;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}

.legal-section a:hover { opacity: 0.75; }

.legal-section code {
    font-size: 12px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    padding: 2px 7px;
    border-radius: 3px;
    color: var(--accent);
    font-family: monospace;
}

.legal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0;
}

.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.legal-list li::before {
    content: '—';
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
}

.legal-section--note {
    padding: 20px 24px;
    background: rgba(200,255,0,0.04);
    border: 1px solid rgba(200,255,0,0.15);
    border-radius: var(--radius);
}

.legal-section--note p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.legal-section--note strong { color: var(--accent); }

@media (max-width: 768px) {
    .legal-page { padding: 100px 0 60px; }
    .legal-body { gap: 36px; }
    .legal-title { font-size: 2.8rem; }
    .legal-section h2 { font-size: 1.3rem; }
}

/* ═══════════════════════════════════════════════════════════
   DESIGN V2 — MODERN REBUILD
   Glass · Glow · Full-image Cards · Conversion-First
   ═══════════════════════════════════════════════════════════ */

/* ── Deeper palette ── */
:root {
    --bg:      #020202;
    --bg-2:    #070707;
    --bg-3:    #0e0e0e;
    --surface: rgba(255,255,255,0.028);
    --border:  rgba(255,255,255,0.068);
    --glow-sm: 0 0 20px rgba(200,255,0,0.28);
    --glow-md: 0 0 40px rgba(200,255,0,0.42);
    --glow-lg: 0 0 80px rgba(200,255,0,0.22);
}

/* ── Film grain noise ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.024;
    pointer-events: none;
    z-index: 99998;
}

/* ── Navbar — glass strip ── */
.navbar {
    height: 60px;
    padding: 0 24px;
    background: rgba(2,2,2,0.55);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border-bottom: 1px solid rgba(255,255,255,0.042);
    transition: background 0.3s, border-color 0.3s;
}
.navbar.scrolled {
    background: rgba(2,2,2,0.9);
    border-bottom-color: rgba(200,255,0,0.07);
    box-shadow: 0 1px 40px rgba(0,0,0,0.5);
}
.nav-container { height: 60px; }
.nav-logo-img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-3);
    border: 1px solid rgba(200,255,0,0.15);
    box-shadow: 0 0 12px rgba(200,255,0,0.1);
}

/* ── Primary button — glow + sweep ── */
.btn-primary, a.btn-primary, button.btn-primary {
    position: relative;
    overflow: hidden;
    font-weight: 800;
    letter-spacing: 0.08em;
    border-radius: 7px;
    padding: 13px 28px;
    transition: box-shadow 0.28s ease, transform 0.2s ease;
    box-shadow: 0 0 0 rgba(200,255,0,0);
}
.btn-primary:hover, a.btn-primary:hover, button.btn-primary:hover {
    box-shadow: var(--glow-md), 0 8px 32px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}
.btn-primary::after, a.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
    transition: left 0.52s ease;
    pointer-events: none;
}
.btn-primary:hover::after, a.btn-primary:hover::after { left: 160%; }

/* ── Ghost button — glass ── */
.btn-ghost, a.btn-ghost {
    background: rgba(255,255,255,0.055);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 7px;
    padding: 12px 26px;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-ghost:hover, a.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* ── Outline button ── */
.btn-outline, a.btn-outline {
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 7px;
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover, a.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── Hero — atmospheric mesh ── */
.hero-simple {
    background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(200,255,0,0.055) 0%, transparent 65%),
        radial-gradient(ellipse 40% 30% at 80% 80%, rgba(200,255,0,0.025) 0%, transparent 60%),
        var(--bg);
    min-height: 100svh;
}
.hero-simple::before {
    background-size: 50px 50px;
    opacity: 1;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
}
.hero-simple-inner { position: relative; z-index: 1; }
/* Glowing orb */
.hero-simple-inner::before {
    content: '';
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,255,0,0.065) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    pointer-events: none;
    animation: orb-breathe 7s ease-in-out infinite;
    z-index: 0;
}
@keyframes orb-breathe {
    0%,100% { transform: translate(-50%,-60%) scale(1); opacity: 0.9; }
    50%      { transform: translate(-50%,-60%) scale(1.18); opacity: 0.6; }
}
.hero-logo {
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 1px rgba(200,255,0,0.18),
                0 0 36px rgba(200,255,0,0.14),
                0 24px 60px rgba(0,0,0,0.7);
}
.hero-simple-title {
    position: relative;
    z-index: 1;
    /* Gradient fill on title */
    background: linear-gradient(170deg, #ffffff 40%, rgba(200,255,0,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-badge { position: relative; z-index: 1; }
.hero-tagline { position: relative; z-index: 1; }
.hero-simple-sub { position: relative; z-index: 1; }
.hero-simple-cta { position: relative; z-index: 1; }
.hero-trust { position: relative; z-index: 1; }

/* ── Marquee — lime takeover ── */
.marquee-strip {
    background: var(--accent);
    padding: 12px 0;
    border: none;
}
.marquee-track span {
    color: #000 !important;
    font-weight: 900 !important;
    font-size: 10px !important;
    letter-spacing: 0.18em !important;
}
.marquee-dot { color: rgba(0,0,0,0.35) !important; font-size: 7px !important; }

/* ══ PRODUCT CARD V2 — image fills, glass overlay ══ */

/* Card is the aspect-ratio container */
.product-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.055);
    aspect-ratio: 3/4;
    position: relative;
    cursor: pointer;
    background: var(--bg-3);
    transition:
        transform 0.35s cubic-bezier(0.34,1.1,0.64,1),
        border-color 0.3s,
        box-shadow 0.3s;
}
.product-card:hover {
    transform: translateY(-8px) scale(1.015);
    border-color: rgba(200,255,0,0.22);
    box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(200,255,0,0.1);
}
/* Kill old shine */
.product-card::after { display: none !important; }

/* Image fills card completely */
.product-img-wrap {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: var(--bg-3);
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: unset;
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.product-img.is-loaded { opacity: 1; }
.product-card:hover .product-img { transform: scale(1.07); }

/* Empty placeholder */
.product-img-empty {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    opacity: 0.12;
    width: 100%;
    height: 100%;
}

/* Badges — top left stack */
.product-badges-top {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 5px;
    pointer-events: none;
}
/* Old single badge positioning — override */
.product-img-wrap > .product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
}

.product-badge {
    display: inline-block;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--accent);
    color: #000;
    box-shadow: 0 2px 12px rgba(200,255,0,0.4);
}
.product-badge--drop {
    background: linear-gradient(120deg, #ff6200, #ff0055);
    color: #fff;
    box-shadow: 0 2px 12px rgba(255,50,0,0.4);
}
.product-badge--sale {
    background: #fff;
    color: #000;
}

/* Sold out */
.product-soldout {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.68);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    z-index: 5;
}

/* Glass info overlay slides up from bottom */
.product-info {
    position: absolute !important;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 32px 16px 16px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.97) 0%,
        rgba(0,0,0,0.82) 45%,
        rgba(0,0,0,0.3)  72%,
        transparent 100%
    );
    transform: translateY(52px);
    transition: transform 0.38s cubic-bezier(0.34,1.1,0.64,1);
}
.product-card:hover .product-info { transform: translateY(0); }

.product-category {
    display: block;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 5px;
}
.product-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}
.product-price {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--accent);
    letter-spacing: 0.02em;
    line-height: 1;
}
.product-price-old {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    text-decoration: line-through;
}
.product-sizes {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.product-sizes span {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 2px 7px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 3px;
    color: rgba(255,255,255,0.45);
}
/* CTA inside overlay */
.product-cta {
    display: block;
    width: 100%;
    padding: 9px;
    text-align: center;
    background: var(--accent);
    color: #000;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.22s 0.1s, transform 0.22s 0.1s;
    box-shadow: 0 0 16px rgba(200,255,0,0.4);
}
.product-card:hover .product-cta { opacity: 1; transform: translateY(0); }

/* Drops-page description line */
.product-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.drop-stock-hint {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(200,255,0,0.7);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

/* ── Product grid responsive ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.products-grid--wide { grid-template-columns: repeat(4, 1fr); }
.products-grid--drops { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1100px) {
    .products-grid, .products-grid--wide { grid-template-columns: repeat(3, 1fr); }
    .products-grid--drops { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
    .products-grid, .products-grid--wide, .products-grid--drops {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    /* Mobile: always show overlay */
    .product-info {
        transform: translateY(0) !important;
    }
    .product-cta {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    .product-name { font-size: 11px; }
    .product-price { font-size: 1.1rem; }
    .product-sizes { display: none; }
}

/* ── Feature cards — gradient-border glass ── */
.feature-card {
    position: relative;
    background: rgba(255,255,255,0.025);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 16px;
    border: none;
    padding: 36px 30px;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s;
}
/* Gradient border via pseudo-element mask trick */
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(200,255,0,0.28) 0%,
        rgba(255,255,255,0.04) 45%,
        rgba(200,255,0,0.06) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
                  linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.feature-card--accent {
    background: rgba(200,255,0,0.038);
}
.feature-card--accent::before {
    background: linear-gradient(135deg,
        rgba(200,255,0,0.55) 0%,
        rgba(200,255,0,0.12) 50%,
        transparent 100%);
}
.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.04);
}
.feature-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: 0.01em;
}
.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}
.feature-icon {
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

/* ── Brand / TikTok cards — glass ── */
.brand-statement-inner {
    background: rgba(255,255,255,0.022);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.065);
    border-radius: 20px;
}
.tiktok-preview {
    background: rgba(255,255,255,0.038);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.075);
}

/* ── Newsletter — glass input ── */
.newsletter {
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(200,255,0,0.028) 50%,
        transparent 100%);
    border-top: 1px solid rgba(200,255,0,0.07);
    border-bottom: 1px solid rgba(200,255,0,0.04);
}
.newsletter-input-group input {
    background: rgba(255,255,255,0.048);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 7px;
    padding: 13px 18px;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.newsletter-input-group input:focus {
    border-color: rgba(200,255,0,0.45);
    box-shadow: 0 0 0 3px rgba(200,255,0,0.08);
}
.newsletter-input-group input::placeholder { color: var(--text-dim); }
.newsletter-legal a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Filter tabs — pill glass ── */
.filter-btn {
    background: rgba(255,255,255,0.038);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-muted);
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.2s;
}
.filter-btn:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.14);
}
.filter-btn--active {
    background: var(--accent) !important;
    color: #000 !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 20px rgba(200,255,0,0.32) !important;
}

/* ── Drops hero glow ── */
.drops-glow--1 {
    background: rgba(200,255,0,0.07);
    filter: blur(100px);
}
.drops-glow--2 {
    background: rgba(200,255,0,0.045);
    filter: blur(80px);
}

/* ── Size chips ── */
.size-chip-btn {
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: all 0.18s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.size-chip-btn.active {
    box-shadow: 0 0 16px rgba(200,255,0,0.4);
}

/* ── Order section ── */
.order-card {
    border-color: rgba(255,255,255,0.065);
}
.order-submit:hover {
    box-shadow: var(--glow-md);
}

/* ── Mobile sticky shop bar ── */
.mobile-shop-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 600;
    padding: 12px 20px 16px;
    background: rgba(2,2,2,0.94);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-top: 1px solid rgba(200,255,0,0.13);
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.mobile-shop-bar-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    color: #fff;
    line-height: 1;
}
.mobile-shop-bar-name em { color: var(--accent); font-style: normal; }
.mobile-shop-bar-sub {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-top: 2px;
}
.mobile-shop-bar-btn {
    padding: 11px 22px;
    background: var(--accent);
    color: #000;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 7px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 0 22px rgba(200,255,0,0.4);
    transition: box-shadow 0.2s;
}
.mobile-shop-bar-btn:hover { box-shadow: 0 0 36px rgba(200,255,0,0.6); }

@media (max-width: 768px) {
    .mobile-shop-bar { display: flex; }
    main { padding-bottom: 68px; }
}

/* ── product-card-link hover reset (card handles its own) ── */
.product-card-link:hover .product-card {
    transform: none;
    border-color: inherit;
}

/* ── Personalisierung Block (order form) ── */
.order-personalisierung {
    margin: 24px 0 0;
    border: 1px solid rgba(200,255,0,0.18);
    border-radius: 10px;
    background: rgba(200,255,0,0.03);
    overflow: hidden;
}
.order-pers-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    border-bottom: 1px solid rgba(200,255,0,0.12);
    background: rgba(200,255,0,0.05);
}
.order-pers-header svg { opacity: 0.9; flex-shrink: 0; }
.order-pers-badge {
    margin-left: auto;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid rgba(200,255,0,0.3);
    color: rgba(200,255,0,0.7);
    background: transparent;
}
.order-personalisierung .order-form-grid {
    padding: 18px 20px 20px;
    gap: 14px;
}

/* ── Form field helpers ── */
.order-label-opt {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    background: rgba(255,255,255,0.05);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}
.order-field-hint {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════
   NAVBAR CART
   ═══════════════════════════════════════════════ */
.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: var(--text);
    transition: color var(--transition), background var(--transition);
}
.nav-cart:hover { color: var(--accent); background: rgba(200,255,0,0.08); }
.nav-cart svg { display: block; }
.nav-cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    background: var(--accent);
    color: #000;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    animation: badgePop 0.25s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes badgePop {
    from { transform: scale(0); }
    to   { transform: scale(1); }
}

/* ═══════════════════════════════════════════════
   PRODUCT DETAIL — ADD TO CART
   ═══════════════════════════════════════════════ */
.detail-cart-actions {
    display: flex;
    gap: 10px;
    margin: 20px 0 0;
    flex-wrap: wrap;
}
.detail-cart-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 180px;
}
.detail-cart-view {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 18px;
    font-size: 0.82rem;
}
.cart-count-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--accent);
    color: #000;
    font-size: 9px;
    font-weight: 900;
    border-radius: 20px;
}

/* Size error shake */
.size-error { animation: sizeShake 0.35s ease; }
.size-error .detail-label { color: #ff4d4d !important; }
.size-error .detail-size-chips { border-bottom: 2px solid #ff4d4d; }
@keyframes sizeShake {
    0%,100% { transform: translateX(0); }
    25%      { transform: translateX(-6px); }
    75%      { transform: translateX(6px); }
}

/* Personalization accordion on detail page */
.detail-pers-block { margin-top: 18px; }
.detail-pers-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: rgba(200,255,0,0.05);
    border: 1px solid rgba(200,255,0,0.15);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    cursor: pointer;
    transition: background var(--transition);
}
.detail-pers-toggle:hover { background: rgba(200,255,0,0.09); }
.pers-chevron { margin-left: auto; transition: transform 0.2s; }
.detail-pers-toggle.open .pers-chevron { transform: rotate(180deg); }
.detail-pers-fields {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1);
    border: 1px solid rgba(200,255,0,0.1);
    border-top: none;
    border-radius: 0 0 8px 8px;
    background: rgba(200,255,0,0.02);
}
.detail-pers-fields.open { max-height: 400px; }
.detail-pers-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.detail-pers-field:last-child { border-bottom: none; }
.detail-pers-field label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.detail-pers-field input {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 9px 12px;
    color: var(--text);
    font-size: 13px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--transition);
}
.detail-pers-field input:focus { border-color: var(--accent); }
.pers-opt {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    background: rgba(255,255,255,0.05);
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 4px;
}
.pers-hint {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ─── Erstbestellungsrabatt Banner (Homepage) ─── */
.erstrabatt-banner {
    background: linear-gradient(135deg, #0f1a00 0%, #111 50%, #0a1300 100%);
    border-top: 1px solid rgba(200,255,0,0.15);
    border-bottom: 1px solid rgba(200,255,0,0.1);
}
.erstrabatt-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.erstrabatt-badge {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: #000;
    background: var(--accent);
    padding: 3px 8px;
    border-radius: 3px;
    flex-shrink: 0;
}
.erstrabatt-text {
    flex: 1;
    font-size: 13px;
    color: rgba(240,240,240,0.85);
    min-width: 200px;
}
.erstrabatt-text strong { color: var(--accent); }
.erstrabatt-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.erstrabatt-cta {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--accent);
    border: 1px solid rgba(200,255,0,0.35);
    padding: 7px 16px;
    border-radius: 6px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}
.erstrabatt-cta:hover { background: var(--accent); color: #000; }

/* ─── Checkout discount row ─── */
.checkout-rabatt-line {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
}
.checkout-rabatt-value { color: var(--accent); font-weight: 700; }
.checkout-rabatt-hint {
    font-size: 11px;
    color: var(--text-muted);
    text-align: right;
    margin-top: 4px;
    margin-bottom: -4px;
}

/* ─── Account discount card ─── */
.account-rabatt-card {
    max-width: 800px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(200,255,0,0.06) 0%, rgba(200,255,0,0.02) 100%);
    border: 1px solid rgba(200,255,0,0.25);
    border-radius: 14px;
    flex-wrap: wrap;
}
.account-rabatt-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}
.account-rabatt-percent {
    font-family: var(--font-display);
    font-size: 2.8rem;
    letter-spacing: -0.02em;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
}
.account-rabatt-info { min-width: 0; }
.account-rabatt-info strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}
.account-rabatt-info span {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 600px) {
    .erstrabatt-inner { padding: 12px 16px; gap: 10px; }
    .erstrabatt-cta { display: none; }
    .account-rabatt-card { flex-direction: column; align-items: flex-start; }
}

/* ─── Personalization – always-open (new required style) ─── */
.detail-pers-block--open {
    margin-top: 20px;
    border: 1px solid rgba(200,255,0,0.18);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(200,255,0,0.025);
}
.detail-pers-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--accent);
    border-bottom: 1px solid rgba(200,255,0,0.1);
    background: rgba(200,255,0,0.04);
}
.detail-pers-header svg { flex-shrink: 0; }
.pers-req-badge {
    margin-left: auto;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ff8c42;
    background: rgba(255,140,66,0.12);
    border: 1px solid rgba(255,140,66,0.25);
    padding: 2px 7px;
    border-radius: 20px;
}
.pers-opt-badge {
    margin-left: auto;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2px 7px;
    border-radius: 20px;
}
.pers-req {
    color: #ff6b6b;
    font-weight: 800;
    margin-left: 2px;
}
.detail-pers-block--open .detail-pers-field {
    padding: 13px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.detail-pers-block--open .detail-pers-field:last-child { border-bottom: none; }
.pers-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 10px 13px;
    color: var(--text);
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    -webkit-appearance: none;
}
.pers-input:focus {
    border-color: var(--accent);
    background: rgba(200,255,0,0.04);
    box-shadow: 0 0 0 3px rgba(200,255,0,0.1);
}
.pers-input.input-error {
    border-color: #ff5555 !important;
    background: rgba(255,85,85,0.06) !important;
    box-shadow: 0 0 0 3px rgba(255,85,85,0.12) !important;
}
.input-error { border-color: #ff5555 !important; }
.detail-pers-error {
    font-size: 11px;
    color: #ff5555;
    font-weight: 600;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.field-error .detail-label { color: #ff5555 !important; }
.field-error .detail-size-chips {
    border-radius: 8px;
    box-shadow: 0 0 0 2px rgba(255,85,85,0.4);
}
.detail-messages {
    margin-bottom: 16px;
}
.detail-messages .order-success-msg {
    font-size: 13px;
    padding: 11px 14px;
}

/* ═══════════════════════════════════════════════
   WARENKORB PAGE
   ═══════════════════════════════════════════════ */
.cart-page { padding: 56px 0 80px; }
.cart-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.cart-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    letter-spacing: 0.04em;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 14px;
}
.cart-count-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    background: var(--accent);
    color: #000;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 900;
    border-radius: 20px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 12px;
    transition: border-color var(--transition);
}
.cart-item:hover { border-color: rgba(255,255,255,0.14); }
.cart-item-img-link { flex-shrink: 0; }
.cart-item-img {
    width: 88px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.cart-item-img-empty {
    width: 88px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-3);
    border-radius: 8px;
    font-size: 2rem;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.cart-item-cat {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.cart-item-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    transition: color var(--transition);
}
.cart-item-name:hover { color: var(--accent); }
.cart-item-size {
    display: inline-block;
    font-size: 11px;
    color: var(--text-muted);
    background: var(--bg-3);
    padding: 3px 8px;
    border-radius: 4px;
}
.cart-item-pers {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--accent);
    font-weight: 600;
    margin-top: 5px;
}
.cart-item-price-col {
    text-align: right;
    flex-shrink: 0;
}
.cart-item-price { font-size: 16px; font-weight: 800; color: var(--text); display: block; }
.cart-item-qty { font-size: 11px; color: var(--text-muted); display: block; }
.cart-item-subtotal { font-size: 12px; font-weight: 700; color: var(--accent); display: block; }
.cart-item-actions { display: flex; align-items: center; gap: 12px; }
.cart-remove-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 0;
    transition: color var(--transition);
}
.cart-remove-btn:hover { color: #ff4d4d; }
.cart-clear-row {
    margin-top: 8px;
    display: flex;
    justify-content: flex-end;
}
.cart-clear-btn {
    font-size: 11px;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 0;
    letter-spacing: 0.04em;
    transition: color var(--transition);
}
.cart-clear-btn:hover { color: #ff4d4d; }

/* Cart Summary Card */
.cart-summary-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    position: sticky;
    top: 90px;
}
.cart-summary-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.cart-summary-lines { display: flex; flex-direction: column; gap: 10px; }
.cart-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}
.cart-sl-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px; }
.cart-sl-price { font-weight: 600; color: var(--text); flex-shrink: 0; }
.cart-summary-shipping { border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px; }
.cart-free { color: var(--accent); font-weight: 700; }
.cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 14px;
    font-weight: 700;
    font-size: 15px;
}
.cart-total-price { font-size: 22px; font-weight: 900; color: var(--accent); }
.cart-checkout-btn {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 18px;
    padding: 15px;
    font-size: 1rem;
}
.cart-summary-hint {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 10px;
    letter-spacing: 0.04em;
}

/* Empty Cart */
.cart-empty {
    max-width: 480px;
    margin: 60px auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
}
.cart-empty-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: rgba(200,255,0,0.07);
    border: 1px solid rgba(200,255,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}
.cart-empty h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}
.cart-empty p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════
   CHECKOUT PAGE
   ═══════════════════════════════════════════════ */
.checkout-page { padding: 56px 0 80px; }
.checkout-header {
    max-width: 560px;
    margin-bottom: 40px;
}
.checkout-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}
.checkout-sub { font-size: 14px; color: var(--text-muted); }
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: start;
}
.checkout-form-col {}
.checkout-section { margin-bottom: 32px; }
.checkout-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.checkout-step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: #000;
    font-size: 11px;
    font-weight: 900;
    border-radius: 50%;
    flex-shrink: 0;
}
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.checkout-field { display: flex; flex-direction: column; gap: 7px; }
.checkout-field label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.checkout-field--full { grid-column: 1 / -1; }
.checkout-submit {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    letter-spacing: 0.06em;
}

/* Checkout item list in summary */
.checkout-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 4px;
}
.checkout-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.checkout-item-img {
    width: 52px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.checkout-item-img--empty {
    width: 52px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-3);
    border-radius: 6px;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.checkout-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.checkout-item-name {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.checkout-item-meta {
    font-size: 11px;
    color: var(--text-muted);
}
.checkout-item-pers { color: var(--accent); font-weight: 600; }
.checkout-item-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   CHECKOUT SUCCESS PAGE
   ═══════════════════════════════════════════════ */
.success-page { padding: 80px 0; }
.success-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 56px 48px;
}
.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(200,255,0,0.1);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes successPop {
    from { transform: scale(0) rotate(-45deg); opacity: 0; }
    to   { transform: scale(1) rotate(0deg); opacity: 1; }
}
.success-title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    margin: 12px 0;
}
.success-msg {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 36px;
}
.success-steps {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 36px;
}
.success-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.success-step-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    flex-shrink: 0;
}
.success-step--done .success-step-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}
.success-step strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.success-step p { font-size: 12px; color: var(--text-muted); }
.success-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── Responsive ── */
@media (max-width: 900px) {
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary-card { position: static; }
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-summary-col { order: -1; }
}
@media (max-width: 600px) {
    .cart-item { flex-direction: row; gap: 14px; }
    .cart-item-img, .cart-item-img-empty { width: 70px; height: 88px; }
    .cart-title { font-size: 2rem; }
    .checkout-grid { grid-template-columns: 1fr; }
    .success-card { padding: 36px 24px; }
    .success-ctas { flex-direction: column; }
}

/* ═══════════════════════════════════════════════
   MOBILE CART IN HAMBURGER MENU
   ═══════════════════════════════════════════════ */
.mobile-cart-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent) !important;
    font-weight: 600 !important;
}
.mobile-cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: var(--accent);
    color: #000;
    font-size: 10px;
    font-weight: 900;
    border-radius: 20px;
}

/* ═══════════════════════════════════════════════
   ACCOUNT PAGE — ORDERS
   ═══════════════════════════════════════════════ */
.account-orders-section {
    max-width: 800px;
    margin: 0 auto 48px;
}
.account-section-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    color: var(--white);
}
.account-orders-list { display: flex; flex-direction: column; gap: 12px; }
.account-order-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color var(--transition);
}
.account-order-card:hover { border-color: rgba(255,255,255,0.14); }
.account-order-img {
    width: 56px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.account-order-img img { width: 100%; height: 100%; object-fit: cover; }
.account-order-info { flex: 1; min-width: 0; }
.account-order-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.account-order-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
    color: var(--text-muted);
}
.account-order-pers { color: var(--accent); font-weight: 600; }
.account-order-right {
    text-align: right;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}
.account-order-price { font-size: 15px; font-weight: 800; color: var(--white); }
.account-order-status {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid;
}
.account-order-status--neu { color: var(--accent); border-color: rgba(200,255,0,0.3); background: rgba(200,255,0,0.06); }
.account-order-status--bestaetigt { color: #60cdff; border-color: rgba(96,205,255,0.3); background: rgba(96,205,255,0.06); }
.account-order-status--versendet { color: #a78bfa; border-color: rgba(167,139,250,0.3); background: rgba(167,139,250,0.06); }
.account-order-status--abgeschlossen { color: #4ade80; border-color: rgba(74,222,128,0.3); background: rgba(74,222,128,0.06); }
.account-order-status--storniert { color: #f87171; border-color: rgba(248,113,113,0.3); background: rgba(248,113,113,0.06); }
.account-empty {
    padding: 40px;
    text-align: center;
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 14px;
}
.account-empty p { margin-bottom: 20px; }

/* ═══════════════════════════════════════════════
   GLOBAL MOBILE FIXES
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* iOS Safari: prevent zoom on input focus (requires font-size >= 16px) */
    input, textarea, select {
        font-size: 16px !important;
    }

    /* Minimum touch targets */
    .btn, .filter-btn, .size-chip-btn, .nav-cart,
    .cart-remove-btn, .hamburger, .detail-thumb,
    .mobile-auth-btn, .account-logout-btn {
        min-height: 44px;
    }
    .nav-cart { min-width: 44px; }
    .hamburger { min-width: 44px; }

    /* Cart page mobile */
    .cart-page { padding: 32px 0 100px; }
    .cart-header { margin-bottom: 24px; }
    .cart-item-top { flex-wrap: wrap; }

    /* Checkout mobile */
    .checkout-page { padding: 32px 0 100px; }
    .checkout-header { margin-bottom: 24px; }

    /* Detail cart actions stack */
    .detail-cart-actions { flex-direction: column; }
    .detail-cart-btn, .detail-cart-view { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    /* Account orders stacked */
    .account-order-card { flex-wrap: wrap; }
    .account-order-right { flex-direction: row; align-items: center; gap: 10px; }

    /* Cart summary compact */
    .cart-summary-card { padding: 20px; }
    .success-card { padding: 28px 16px; }
}

/* ═══════════════════════════════════════════════
   MOBILE TOUCH EFFECTS & MICRO-INTERACTIONS
   ═══════════════════════════════════════════════ */

/* Fast tap: no 300ms delay */
a, button, .btn, .filter-btn, .size-chip-btn,
.detail-thumb, .nav-cart, .hamburger,
.mobile-auth-btn, .account-logout-btn,
.cart-remove-btn, .pers-input {
    touch-action: manipulation;
}

/* Touch-device tap active states (no hover) */
@media (hover: none) {
    .btn:active {
        transform: scale(0.96);
        opacity: 0.88;
        transition: transform 0.08s, opacity 0.08s;
    }
    .btn-primary:active {
        background: rgba(200,255,0,0.82);
        box-shadow: 0 0 18px rgba(200,255,0,0.45);
        transform: scale(0.95);
    }
    .btn-ghost:active {
        background: rgba(255,255,255,0.1);
        transform: scale(0.95);
    }

    /* Product cards */
    .product-card:active {
        transform: translateY(-2px) scale(0.98);
        box-shadow: 0 8px 28px rgba(0,0,0,0.4);
        transition: transform 0.1s, box-shadow 0.1s;
    }

    /* Size chips */
    .size-chip-btn:active {
        transform: scale(0.9);
        border-color: var(--accent);
        transition: transform 0.08s;
    }

    /* Detail thumbs */
    .detail-thumb:active {
        transform: scale(0.92);
        transition: transform 0.08s;
    }

    /* Nav items */
    .mobile-menu li a:active {
        background: rgba(200,255,0,0.07);
        color: var(--accent);
        transition: background 0.1s, color 0.1s;
    }

    /* Cart remove */
    .cart-remove-btn:active {
        transform: scale(0.88);
        color: #ff5555;
        transition: transform 0.08s, color 0.08s;
    }

    /* Hamburger */
    .hamburger:active {
        opacity: 0.6;
        transform: scale(0.9);
        transition: transform 0.08s, opacity 0.08s;
    }

    /* Nav cart */
    .nav-cart:active {
        transform: scale(0.88);
        transition: transform 0.08s;
    }

    /* Filter buttons */
    .filter-btn:active {
        transform: scale(0.93);
        transition: transform 0.08s;
    }

    /* Sticky bar CTA */
    .detail-sticky-btn:active {
        transform: scale(0.95);
        box-shadow: 0 0 22px rgba(200,255,0,0.5);
        transition: transform 0.08s, box-shadow 0.08s;
    }

    /* Account/auth buttons */
    .mobile-auth-btn:active {
        opacity: 0.7;
        transform: scale(0.97);
        transition: transform 0.08s, opacity 0.08s;
    }

    /* Form inputs: glow on focus/touch */
    .pers-input:focus {
        box-shadow: 0 0 0 3px rgba(200,255,0,0.18), 0 0 20px rgba(200,255,0,0.08);
    }
}

/* Scroll-triggered card entrance (CSS-only, no JS) */
@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Pulse on lime accent elements */
@keyframes accentPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200,255,0,0.4); }
    50%       { box-shadow: 0 0 0 8px rgba(200,255,0,0); }
}

/* Cart badge pop animation */
@keyframes badgePop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.4); }
    70%  { transform: scale(0.9); }
    100% { transform: scale(1); }
}
.nav-cart-badge { animation: badgePop 0.35s cubic-bezier(0.36,0.07,0.19,0.97) both; }

/* Mobile: sticky detail bar glow */
@media (max-width: 768px) {
    .detail-sticky-bar.visible {
        box-shadow: 0 -4px 30px rgba(0,0,0,0.6), 0 -1px 0 rgba(200,255,0,0.12);
    }
    .detail-sticky-btn {
        animation: none;
        position: relative;
        overflow: hidden;
    }
    .detail-sticky-btn::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
        transform: translateX(-100%);
        animation: shimmerSlide 2.4s ease-in-out infinite;
    }
    @keyframes shimmerSlide {
        0%   { transform: translateX(-100%); }
        60%  { transform: translateX(100%); }
        100% { transform: translateX(100%); }
    }

    /* Product cards stagger-in on mobile */
    .products-grid .product-card:nth-child(1) { animation: slideUpFade 0.4s 0.05s both; }
    .products-grid .product-card:nth-child(2) { animation: slideUpFade 0.4s 0.10s both; }
    .products-grid .product-card:nth-child(3) { animation: slideUpFade 0.4s 0.15s both; }
    .products-grid .product-card:nth-child(4) { animation: slideUpFade 0.4s 0.20s both; }
    .products-grid .product-card:nth-child(5) { animation: slideUpFade 0.4s 0.25s both; }
    .products-grid .product-card:nth-child(6) { animation: slideUpFade 0.4s 0.30s both; }

    /* Hero title swipe-in */
    .hero-title { animation: slideUpFade 0.55s 0.1s both; }
    .hero-subtitle { animation: slideUpFade 0.55s 0.2s both; }
    .hero-cta { animation: slideUpFade 0.55s 0.3s both; }
}

/* ── CHECKOUT 2-STEP ── */
.checkout-page, .bestaetigen-page { padding: 40px 0 80px; min-height: 60vh; }

/* Step indicator */
.co-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 36px;
}
.co-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.03em;
}
.co-step--active { color: var(--accent); }
.co-step--done { color: rgba(255,255,255,0.55); }
.co-step-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem; font-weight: 700;
    flex-shrink: 0;
}
.co-step--active .co-step-num { background: var(--accent); color: #000; border-color: var(--accent); }
.co-step--done .co-step-num { background: rgba(255,255,255,0.08); }
.co-step-line {
    width: 60px; height: 2px;
    background: rgba(255,255,255,0.12);
    margin: 0 10px;
    border-radius: 2px;
}
.co-step-line--done { background: rgba(255,255,255,0.35); }

/* Layout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}
.bestaetigen-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}
.bestaetigen-main, .checkout-form-col { min-width: 0; }
.bestaetigen-sidebar, .checkout-summary-col { position: sticky; top: 100px; }

/* Confirmation cards */
.bestaetigen-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
}
.bestaetigen-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted, #888);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

/* Total rows in bestaetigen */
.bestaetigen-total {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.bestaetigen-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    margin-bottom: 8px;
    color: var(--text-muted, #888);
}
.bestaetigen-total-final {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text, #fff);
    margin-top: 6px;
}

/* Info grid */
.bestaetigen-info-grid { display: flex; flex-direction: column; gap: 12px; }
.bestaetigen-info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 20px;
}
.bestaetigen-info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.bestaetigen-info-card strong { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.bestaetigen-info-card p { font-size: 0.82rem; color: var(--text-muted, #888); line-height: 1.5; margin: 0; }

/* Contact data summary */
.bestaetigen-data { display: flex; flex-direction: column; gap: 10px; }
.bestaetigen-data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.bestaetigen-data-row > span:first-child { color: var(--text-muted, #888); }
.bestaetigen-back-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted, #888);
    opacity: 0.7;
    transition: opacity 0.2s;
}
.bestaetigen-back-link:hover { opacity: 1; color: var(--accent); }

/* Optional account creation section */
.co-account-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-top: 12px;
    overflow: hidden;
}
.co-account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
}
.co-account-header:hover { background: rgba(255,255,255,0.02); }
.co-account-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}
.co-account-opt { font-weight: 400; font-size: 0.78rem; color: var(--text-muted, #888); }
.co-account-sub { font-size: 0.78rem; color: var(--text-muted, #888); margin-top: 3px; }
.co-account-fields {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}
.co-account-fields .checkout-grid { padding-bottom: 20px; }

/* Toggle switch */
.co-acc-toggle { flex-shrink: 0; }
.co-acc-track {
    display: block;
    width: 40px; height: 22px;
    background: rgba(255,255,255,0.1);
    border-radius: 11px;
    position: relative;
    transition: background 0.25s;
}
.co-acc-thumb {
    position: absolute;
    top: 3px; left: 3px;
    width: 16px; height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s;
}
.co-acc-toggle--on .co-acc-track { background: var(--accent); }
.co-acc-toggle--on .co-acc-thumb { transform: translateX(18px); background: #000; }

/* ── THANK-YOU OVERLAY ── */
.thankyou-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: tyFadeIn 0.35s ease both;
}
.thankyou-overlay--out {
    animation: tyFadeOut 0.42s ease both;
}
@keyframes tyFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes tyFadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}
.thankyou-card {
    background: var(--surface, #111);
    border: 1px solid rgba(200,255,0,0.2);
    border-radius: 20px;
    padding: 48px 40px 40px;
    max-width: 420px;
    width: calc(100% - 32px);
    text-align: center;
    position: relative;
    box-shadow: 0 0 60px rgba(200,255,0,0.08), 0 24px 80px rgba(0,0,0,0.6);
    animation: tySlideUp 0.42s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes tySlideUp {
    from { opacity: 0; transform: translateY(32px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.thankyou-close {
    position: absolute;
    top: 14px; right: 16px;
    background: none; border: none;
    color: rgba(255,255,255,0.4);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.2s;
}
.thankyou-close:hover { color: rgba(255,255,255,0.8); }
.thankyou-check-wrap {
    width: 68px; height: 68px;
    margin: 0 auto 24px;
}
.thankyou-svg {
    width: 68px; height: 68px;
}
.thankyou-circle {
    stroke: var(--accent);
    stroke-width: 2;
    stroke-dasharray: 151;
    stroke-dashoffset: 151;
    animation: tyCircle 0.7s 0.15s cubic-bezier(0.65,0,0.45,1) forwards;
}
.thankyou-path {
    stroke: var(--accent);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: tyCheck 0.4s 0.75s cubic-bezier(0.65,0,0.45,1) forwards;
}
@keyframes tyCircle {
    to { stroke-dashoffset: 0; }
}
@keyframes tyCheck {
    to { stroke-dashoffset: 0; }
}
.thankyou-title {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    margin-bottom: 10px;
}
.thankyou-sub {
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
}
.thankyou-info {
    font-size: 0.83rem;
    color: var(--text-muted, #888);
    line-height: 1.6;
    margin-bottom: 24px;
}
.thankyou-btn { width: 100%; }

/* Checkout rabatt hint */
.checkout-rabatt-line { color: var(--accent); }
.checkout-rabatt-value { color: var(--accent); font-weight: 700; }
.checkout-rabatt-hint {
    font-size: 0.78rem;
    color: var(--accent);
    opacity: 0.75;
    text-align: right;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .checkout-layout, .bestaetigen-layout {
        grid-template-columns: 1fr;
    }
    .bestaetigen-sidebar, .checkout-summary-col {
        position: static;
        order: -1;
    }
    .co-step-label { display: none; }
    .co-step-line { width: 32px; }
    .thankyou-card { padding: 36px 24px 28px; }
}
