@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ===== VARIABLES ===== */
:root {
    --bg:          #090910;
    --surface:     #0f0f1a;
    --text:        #f0f0f5;
    --text-muted:  #7a7a94;
    --text-dim:    #3d3d55;
    --primary:     #7c3aed;
    --primary-glow:rgba(124,58,237,0.35);
    --pink:        #ec4899;
    --gradient:    linear-gradient(135deg, #ec4899 0%, #7c3aed 100%);
    --gradient-r:  linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    --glass-bg:    rgba(255,255,255,0.03);
    --glass-hover: rgba(255,255,255,0.055);
    --glass-border:rgba(255,255,255,0.07);
    --glass-border-active: rgba(124,58,237,0.5);
    --radius-sm:   10px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --radius-xl:   32px;
    --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 40px rgba(124,58,237,0.2);
    --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
    --font-head:   'Syne', sans-serif;
    --font-body:   'DM Sans', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background ambient */
body::before {
    content: '';
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse 80% 60% at 20% -10%, rgba(124,58,237,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(236,72,153,0.1) 0%, transparent 50%);
    pointer-events: none; z-index: 0;
}

body > * { position: relative; z-index: 1; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.3rem; }

a { color: inherit; text-decoration: none; transition: var(--transition); }

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== GLASS CARD ===== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: var(--gradient);
    text-align: center;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative; z-index: 1001;
}
.announcement-bar a { color: #fff; text-decoration: underline; margin-left: 8px; }

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2.5rem;
    position: fixed;
    top: 38px; /* Fallback – wird per JS dynamisch überschrieben */
    left: 50%;
    transform: translateX(-50%);
    width: 92%; max-width: 1280px;
    z-index: 1000;
    transition: top 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled { top: 10px; box-shadow: 0 8px 40px rgba(0,0,0,0.5); }
.no-announce .navbar { top: 20px; }
.no-announce .navbar.scrolled { top: 10px; }

.logo {
    font-family: var(--font-head);
    font-size: 1.55rem;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: -0.5px;
}
.logo span { color: var(--primary); }

.nav-links { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
.nav-links > li > a,
.dropbtn {
    color: var(--text-muted);
    padding: 9px 16px;
    display: block;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 400;
    font-size: 0.92rem;
    border-radius: var(--radius-sm);
}
.nav-links > li > a:hover,
.dropdown:hover .dropbtn { color: var(--text); background: var(--glass-bg); }
.nav-links > li > a.active { color: var(--text); }

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

.cart-btn {
    background: var(--glass-bg);
    color: var(--text);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: flex; align-items: center; gap: 8px;
    font-size: 0.88rem;
    font-family: var(--font-body);
    font-weight: 500;
}
.cart-btn:hover { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 20px var(--primary-glow); }
#cart-count {
    background: var(--gradient);
    color: #fff;
    border-radius: 50px;
    padding: 1px 7px;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
#cart-count.bump { transform: scale(1.5); }

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
.hamburger:hover { background: rgba(255,255,255,0.07); }
.hamburger span {
    display: block;
    width: 18px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(9,9,16,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    display: flex;
}
.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}
.mobile-menu-nav {
    width: 100%;
    max-width: 360px;
}
.mobile-menu-links {
    list-style: none;
    text-align: center;
    width: 100%;
}
.mobile-menu-links li { border-bottom: 1px solid var(--glass-border); }
.mobile-menu-links li:last-child { border-bottom: none; }
.mobile-menu-links > li > a,
.mobile-menu-links > li > button {
    display: block;
    padding: 1.1rem 1rem;
    color: var(--text-muted);
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: center;
    transition: color 0.2s;
}
.mobile-menu-links > li > a:hover,
.mobile-menu-links > li > button:hover { color: var(--text); }
.mobile-sub-links {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--glass-border);
    display: none;
}
.mobile-sub-links.open { display: block; }
.mobile-sub-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.85rem 2rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.2s;
}
.mobile-sub-links a:hover { color: var(--text); }
.mobile-menu-cta {
    margin-top: 2rem;
    width: 100%;
    max-width: 360px;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-content {
    display: none; 
    opacity: 0;
    position: absolute; 
    min-width: 220px;
    top: 100%;
    padding-top: 8px;
    left: 0;
    z-index: 1001;
    transition: opacity 0.2s ease;
}
.dropdown-inner {
    background: #13131f;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.dropdown-content a {
    color: var(--text-muted);
    padding: 10px 14px;
    text-decoration: none;
    display: flex; align-items: center; gap: 10px;
    font-size: 0.88rem;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}
.dropdown-content a:hover { color: var(--text); background: var(--glass-bg); }
.dropdown-content a .icon { font-size: 1rem; opacity: 0.7; }
.dropdown:hover .dropdown-content { display: block; opacity: 1; }

/* ===== HERO ===== */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    padding: 100px 10% 5rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content { max-width: 52%; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(124,58,237,0.12);
    border: 1px solid rgba(124,58,237,0.25);
    color: #b78bfa;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}
.hero-eyebrow::before { content: '◆'; font-size: 0.6rem; }

.hero h1 { letter-spacing: -1.5px; margin-bottom: 1.5rem; }
.hero h1 .line { display: block; }
.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex; align-items: center; gap: 6px;
    transition: var(--transition);
}
.hero-link:hover { color: var(--text); gap: 10px; }

.hero-trust {
    display: flex; align-items: center; gap: 0.9rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--glass-border);
    flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; }
.trust-num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; line-height: 1; }
.trust-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 3px; }
.trust-divider { width: 1px; height: 36px; background: var(--glass-border); }

/* Hero visual */
.hero-visual {
    flex: 1;
    display: flex; justify-content: center; align-items: center;
    position: relative;
}
.hero-img-box {
    width: 100%; max-width: 520px;
    aspect-ratio: 1 / 1;
    border-radius: 36px;
    background: linear-gradient(135deg, #12121e 0%, #1e1e2e 100%);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(124,58,237,0.1);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.hero-img-box:hover {
    box-shadow: 0 36px 90px rgba(0,0,0,0.7), 0 0 80px rgba(124,58,237,0.25);
    transform: scale(1.015);
}
.hero-img-box::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 60% 40%, rgba(124,58,237,0.15), transparent 70%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
/* Click-me overlay */
.hero-img-box::after {
    content: 'Produkt ansehen →';
    position: absolute; inset: 0;
    background: rgba(9,9,16,0.5);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    border-radius: 36px;
}
.hero-img-box:hover::after { opacity: 1; }

/* Auf Touch/Mobile: Overlay dauerhaft sichtbar, etwas dezenter */
@media (hover: none) {
    .hero-img-box::after {
        opacity: 0.75;
        background: rgba(9,9,16,0.35);
        font-size: 0.88rem;
    }
}

.hero-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
    overflow: hidden;
}
.hero-img-placeholder img {
    width: 102%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
    transition: transform 0.5s ease;
}
.hero-img-box:hover .hero-img-placeholder img { transform: scale(1.04); }

/* Hero floating badges */
.hero-badge {
    position: absolute;
    background: #13131f;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: var(--shadow-card);
    animation: float 6s ease-in-out infinite;
    white-space: nowrap;
}
.hero-badge:nth-child(2) { bottom: 15%; right: -5%; animation-delay: -3s; }
.hero-badge:nth-child(3) { top: 15%; left: -5%; animation-delay: -1.5s; }
.hero-badge .badge-icon { font-size: 1.4rem; }
.hero-badge .badge-text { font-size: 0.8rem; font-weight: 600; }
.hero-badge .badge-sub { font-size: 0.7rem; color: var(--text-muted); }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* ===== USP STRIP ===== */
.usp-strip {
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.015);
}
.usp-item { display: flex; align-items: center; gap: 12px; }
.usp-icon { font-size: 1.3rem; }
.usp-text { font-size: 0.85rem; }
.usp-text strong { display: block; font-weight: 600; color: var(--text); font-size: 0.88rem; }
.usp-text span { color: var(--text-muted); }

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header .eyebrow {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.section-header h2 { letter-spacing: -0.5px; }
.section-header p { color: var(--text-muted); margin-top: 0.75rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.category-card {
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease;
    min-height: 240px;
    display: flex; flex-direction: column; justify-content: flex-end;
    text-decoration: none; color: var(--text);
}
.category-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(9,9,16,0.9) 30%, transparent 100%);
    z-index: 1;
}
.category-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.category-card-bg {
    position: absolute; inset: 0;
    transition: transform 0.6s ease;
}
.category-card:hover .category-card-bg { transform: scale(1.08); }
.cat-mauspads .category-card-bg { background: linear-gradient(135deg, #1a1030 0%, #2d1b6b 100%); }
.cat-halterungen .category-card-bg { background: linear-gradient(135deg, #0d1f1a 0%, #1a4a35 100%); }
.cat-kabel .category-card-bg { background: linear-gradient(135deg, #1f0d1a 0%, #4a1a35 100%); }

.category-card-content { position: relative; z-index: 2; }
.category-card-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.category-card h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.category-card p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }
.cat-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--text);
    font-size: 0.82rem; font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 2px;
    transition: var(--transition);
}
.category-card:hover .cat-link { gap: 10px; border-color: var(--text); }

/* ===== SHOP / PRODUCT GRID ===== */
.shop-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.product-card {
    padding: 0;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease, border-color 0.3s;
    overflow: hidden;
    position: relative;
    display: flex; flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 30px var(--primary-glow);
    border-color: var(--glass-border-active);
}
.img-mockup {
    width: 100%;
    height: 240px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s ease;
}

.img-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.product-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--gradient);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 2;
}
.product-badge.oos { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }

.product-info { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.rating { margin-bottom: 0.5rem; display: flex; align-items: center; gap: 8px; }
.stars { color: #f59e0b; letter-spacing: 2px; font-size: 0.85rem; }
.rating-count { color: var(--text-muted); font-size: 0.78rem; }
.product-info h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.product-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 1rem; }
.price { font-family: var(--font-head); font-weight: 700; color: var(--text); font-size: 1.2rem; }
.buy-btn {
    padding: 0.7rem 1.4rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.82rem;
    font-weight: 500;
    font-family: var(--font-body);
    white-space: nowrap;
}
.buy-btn:hover { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 16px var(--primary-glow); }

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 6rem 10%;
    max-width: 1400px;
    margin: 0 auto;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
}
.review-card {
    padding: 2rem;
}
.review-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 1rem; }
.review-text { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; font-weight: 700;
    font-family: var(--font-head);
    flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.88rem; }
.reviewer-meta { font-size: 0.75rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-section {
    padding: 2rem 10%;
    max-width: 860px;
    margin: 0 auto;
}
.faq-container.glass { padding: 0.5rem 0; }
.faq-item { border-bottom: 1px solid var(--glass-border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
    font-weight: 600;
    font-family: var(--font-head);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 1rem;
    padding: 1.4rem 2rem;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-toggle {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--text-muted);
    line-height: 1;
}
.faq-item.active .faq-toggle { background: var(--primary); border-color: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-answer { display: none; color: var(--text-muted); padding: 0 2rem 1.5rem; font-size: 0.92rem; }
.faq-item.active .faq-answer { display: block; }

/* ===== FOOTER ===== */
footer {
    padding: 5rem 10% 2.5rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 6rem;
    background: rgba(0,0,0,0.3);
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; margin-top: 1rem; max-width: 260px; line-height: 1.7; }
.footer-col h4 {
    color: var(--text);
    font-family: var(--font-head);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { color: var(--text-muted); font-size: 0.88rem; transition: var(--transition); }
.footer-col a:hover { color: var(--text); padding-left: 4px; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    color: var(--text-dim);
    font-size: 0.78rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 2rem;
    flex-wrap: wrap; gap: 1rem;
}
.footer-badges { display: flex; gap: 1rem; }
.footer-badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 0.72rem;
    color: var(--text-muted);
}
.footer-logo { margin-bottom: 0.5rem; }

/* ===== BUTTONS ===== */
.cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gradient);
    color: #fff; border: none;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
    position: relative; overflow: hidden;
}
.cta-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.3s ease;
}
.cta-btn:hover { transform: scale(1.04); box-shadow: 0 12px 30px rgba(124,58,237,0.45); }
.cta-btn:hover::before { background: rgba(255,255,255,0.08); }
.cta-btn.full-width { width: 100%; justify-content: center; }

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--glass-border);
    padding: 1rem 2.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}
.btn-outline:hover { border-color: var(--text-muted); background: var(--glass-bg); }

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(5,5,12,0.93);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    padding: 2rem;
    opacity: 1; transition: opacity 0.25s ease;
}
.modal-overlay.hidden { display: none; }
.modal-overlay.closing { opacity: 0; }

.modal-content {
    padding: 3rem 3.5rem;
    max-width: 480px; width: 100%;
    text-align: center;
    position: relative;
    animation: modalIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalIn {
    from { transform: scale(0.88) translateY(20px); opacity: 0; }
    to   { transform: scale(1) translateY(0); opacity: 1; }
}
.modal-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.modal-content h2 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.modal-content .modal-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; line-height: 1.7; }
.close-modal {
    position: absolute; top: 20px; right: 20px;
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    color: var(--text-muted); font-size: 1.1rem; cursor: pointer;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.close-modal:hover { color: var(--text); background: rgba(255,255,255,0.08); }
.glass-input {
    width: 100%; padding: 1rem 1.2rem;
    margin-bottom: 0.75rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text); outline: none;
    font-family: var(--font-body); font-size: 0.9rem;
    transition: border-color 0.2s;
}
.glass-input:focus { border-color: var(--primary); }
.glass-input::placeholder { color: var(--text-muted); }
.modal-disclaimer { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ===== PDP (Product Detail Page) ===== */
.pdp-page { padding: 120px 10% 5rem; max-width: 1400px; margin: 0 auto; }
.back-link {
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    margin-bottom: 2.5rem;
    font-size: 0.88rem;
    transition: var(--transition);
}
.back-link:hover { color: var(--text); gap: 10px; }

.pdp-container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 6rem; align-items: start; }
.pdp-gallery { display: flex; flex-direction: column; gap: 1.5rem; }
.pdp-main-img {
    height: 520px;
    border-radius: var(--radius-xl);
    cursor: zoom-in;
}
.pdp-thumbnails { display: flex; gap: 1rem; }
.thumb {
    height: 88px; flex: 1;
    cursor: pointer; opacity: 0.45;
    transition: var(--transition);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
}
.thumb:hover { opacity: 0.8; }
.thumb.active { opacity: 1; border-color: var(--primary); }

.pdp-info { padding: 3rem; }
.category-tag {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
}
.pdp-info h1 { font-size: 2.5rem; margin: 10px 0 0.5rem; letter-spacing: -0.5px; }
.pdp-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; }
.pdp-price { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; margin-bottom: 1.5rem; }
.pdp-price .old-price { font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; margin-left: 0.75rem; font-weight: 400; }
.pdp-desc { color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; margin-bottom: 2rem; }

.pdp-benefits { list-style: none; margin-bottom: 2rem; }
.pdp-benefits li {
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex; align-items: center; gap: 12px;
    color: var(--text-muted); font-size: 0.9rem;
}
.pdp-benefits li:last-child { border-bottom: none; }
.pdp-benefits li::before { content: '✓'; color: var(--primary); font-weight: 800; font-size: 0.85rem; }

.pdp-cta-group { display: flex; flex-direction: column; gap: 0.75rem; }
.shipping-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); }

.pdp-specs {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin: 2rem 0;
}
.spec-item {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 1rem;
}
.spec-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.spec-value { font-weight: 600; font-size: 0.9rem; margin-top: 2px; }

/* ===== CONTENT PAGES (About, Impressum, Datenschutz, Kontakt) ===== */
.content-page {
    padding: 120px 10% 6rem;
    max-width: 900px;
    margin: 0 auto;
}
.content-page.wide { max-width: 1100px; }
.page-hero {
    margin-bottom: 4rem;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; letter-spacing: -0.5px; hyphens: auto;}
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; }

.content-block {
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}
.content-block h2 { font-size: 1.3rem; margin-bottom: 1rem; }
.content-block p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; margin-bottom: 1rem; }
.content-block p:last-child { margin-bottom: 0; }
.content-block ul { list-style: none; }
.content-block ul li { color: var(--text-muted); font-size: 0.92rem; padding: 6px 0; border-bottom: 1px solid var(--glass-border); }
.content-block ul li:last-child { border-bottom: none; }
.content-block strong { color: var(--text); }

/* Values grid for About */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.value-card { padding: 2rem; text-align: center; }
.value-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.value-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--text-muted); font-size: 0.82rem; }

/* Team section */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.team-card { padding: 2rem; text-align: center; }
.team-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 1.4rem; font-weight: 800;
    margin: 0 auto 1rem;
}
.team-card h3 { font-size: 1rem; }
.team-card span { color: var(--text-muted); font-size: 0.8rem; }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.5rem; }
.contact-item-icon { font-size: 1.2rem; margin-top: 3px; }
.contact-item-text strong { display: block; font-size: 0.85rem; margin-bottom: 2px; }
.contact-item-text span { color: var(--text-muted); font-size: 0.85rem; }
.contact-form { padding: 2.5rem; }
.contact-form h2 { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; }
.form-group textarea.glass-input { height: 120px; resize: vertical; }
.form-success { text-align: center; padding: 2rem; }
.form-success .success-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--text-muted); font-size: 0.88rem; }

/* ===== CATEGORY PAGE ===== */
.category-page { padding: 120px 10% 6rem; max-width: 1400px; margin: 0 auto; }
.category-header { margin-bottom: 4rem; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; }
.category-header h1 { letter-spacing: -1px; }
.category-header p { color: var(--text-muted); font-size: 1rem; max-width: 400px; margin-top: 0.5rem; }
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.82rem;
    font-family: var(--font-body);
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { color: var(--text-dim); }

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Staggered delays for grids */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

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

/* Pulse ring animation for CTA */
.cta-btn.pulse-ring {
    animation: pulseRing 2.5s ease-in-out infinite;
}
@keyframes pulseRing {
    0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(124,58,237,0); }
}

/* Page transition overlay */
.page-transition {
    position: fixed; inset: 0;
    background: var(--bg);
    z-index: 9999;
    transform: scaleY(0);
    transform-origin: bottom;
    pointer-events: none;
}
.page-transition.active { transform: scaleY(1); transform-origin: top; transition: transform 0.4s cubic-bezier(0.76,0,0.24,1); }

/* ===== SCROLL INDICATOR ===== */
.scroll-progress {
    position: fixed; top: 0; left: 0;
    height: 2px;
    background: var(--gradient);
    z-index: 9998;
    transition: width 0.1s linear;
    width: 0%;
}

/* ===== OOS BADGE ===== */
.oos-banner {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}
.oos-banner .oos-dot { width: 8px; height: 8px; background: #f59e0b; border-radius: 50%; flex-shrink: 0; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }


/* ===== FOOTER METHODS (Payment & Shipping) ===== */
.footer-methods {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.5rem 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.method-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.method-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    font-weight: 700;
}

.method-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Styling der Logos */
.method-icons img {
    height: 20px; /* Einheitliche Höhe für Zahlungsmethoden */
    width: auto;
    transition: var(--transition);
}

/* DHL braucht oft etwas mehr Breite/Höhe um lesbar zu sein */
.method-icons img.shipping-logo {
    height: 16px;
}

/* Hover-Effekt: Logos werden farbig/sichtbar */
.method-icons img:hover {
    transform: translateY(-2px);
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .footer-methods {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .method-icons {
        gap: 1.25rem;
        justify-content: unset !important;
    }
}

/* ===== TABLET (≤1100px) ===== */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .footer-brand { grid-column: 1 / -1; }
    .categories-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .category-card { min-height: 200px; }
    .pdp-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .pdp-info { padding: 2rem; }
    .pdp-main-img { height: 380px; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero { padding: 120px 6% 5rem; gap: 3rem; }
    .usp-strip { gap: 2rem; padding: 1.5rem 6%; }
}

@media (max-width: 501px) {
    .navbar.scrolled { top: 15px !important; }

}

/* ===== MOBILE (≤768px) ===== */
@media (max-width: 768px) {
    /* Announcement bar */
   /* .announcement-bar { font-size: 0.72rem; padding: 9px 1rem; display: none;} */

    /* Navbar */
    /*.navbar {
        padding: 0.65rem 1.1rem;
        width: calc(100% - 2rem);
        top: 8px;
    }*/
    .navbar.scrolled { top: 8px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    /* Collapse cart label on mobile */
    .cart-btn .cart-label { display: none; }
    .cart-btn { padding: 0.55rem 0.85rem; gap: 5px; }

    /* ── HERO: kompakt, fokussiert ── */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 5% 2.5rem;
        gap: 0;
        min-height: auto;
    }
    .hero-content { max-width: 100%; }
    .hero-eyebrow { display: none; }
    .hero-sub { display: none; }
    .hero-trust { display: none; }
    .hero-visual { display: none; }
    .hero-badge { display: none; }
    .hero h1 {
        font-size: clamp(2.2rem, 9vw, 3rem);
        letter-spacing: -1.5px;
        margin-bottom: 1.25rem;
        line-height: 1.1;
    }
    .hero-actions {
        justify-content: center;
        gap: 0.75rem;
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions .cta-btn { width: 100%; justify-content: center; font-size: 1rem; }
    .hero-link { justify-content: center; font-size: 0.88rem; }

    /* ── KATEGORIE-CHIPS: scrollbare Leiste direkt unter dem Hero ── */
    .categories-section { display: none; }
    .usp-strip { display: none; }

    /* ── PRODUKTE ── */
    .shop-section { padding: 0 5% 3rem; }
    .section-header { margin-bottom: 1.5rem; }
    .section-header h2 { font-size: 1.5rem; }

    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
    .img-mockup { height: 160px; }
    .product-info { padding: 0.85rem; }
    .product-info h3 { font-size: 0.88rem; }
    .product-desc { font-size: 0.76rem; margin-bottom: 0.65rem; }
    .price { font-size: 0.95rem; }
    .buy-btn { padding: 0.45rem 0.75rem; font-size: 0.72rem; }

    /* FAQ */
    .faq-question { padding: 1.1rem 1.5rem; font-size: 0.92rem; }
    .faq-answer { padding: 0 1.5rem 1.2rem; }

    /* Footer */
    footer { padding: 3.5rem 5% 2rem; margin-top: 4rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-brand p { max-width: 100%; }

    /* PDP */
    .pdp-page { padding: 88px 5% 4rem; overflow-x: hidden; }
    .pdp-main-img { height: 280px; border-radius: var(--radius-lg); }
    .pdp-info { padding: 1.5rem; min-width: 0; }
    .pdp-info h1 { font-size: 1.65rem; }
    .pdp-price { font-size: 1.7rem; }
    .pdp-specs { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

    /* Content pages */
    .content-page { padding: 88px 5% 4rem; }
    .category-page { padding: 88px 5% 4rem; }
    .content-block { padding: 1.75rem; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
    .team-card { padding: 1.25rem 0.75rem; }
    .team-avatar { width: 52px; height: 52px; font-size: 1rem; }
    .contact-form { padding: 1.75rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    /* Modal */
    .modal-content { padding: 2rem 1.75rem; }
    .modal-content h2 { font-size: 1.5rem; }
}

/* ===== RESPONSIVE LÜCKE (321px–768px): PDP-spezifische Fixes ===== */
@media (max-width: 768px) and (min-width: 321px) {
    /* pdp-info: padding reduzieren damit nichts überläuft */
    .pdp-info { padding: 1.5rem; }

    /* Breadcrumb umbrechen statt überlaufen */
    .breadcrumb { flex-wrap: wrap; gap: 4px 6px; }

    /* Spec-Grid auf schmalen Bildschirmen: 1 Spalte ab 420px abwärts */
    @media (max-width: 420px) {
        .pdp-specs { grid-template-columns: 1fr; }
    }

    /* Verhindert horizontalen Scroll durch breite Elemente */
    .pdp-page { overflow-x: hidden; }
    .pdp-container { min-width: 0; }
    .pdp-info { min-width: 0; word-break: break-word; }

    /* Footer-Badges umbrechen */
    .footer-badges { flex-wrap: wrap; gap: 0.5rem; }

    /* Announcement-Bar kürzen bei engen Breiten */
    @media (max-width: 420px) {
        .announcement-bar {
            font-size: 0.7rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding: 7px 0.75rem;
        }
    }
}

/* ===== SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {
    /* .announcement-bar { font-size: 0.67rem; letter-spacing: 0; display: none;} */

    .navbar { width: calc(100% - 1.5rem); padding: 0.6rem 0.9rem; }

    .hero { padding: 85px 4% 3.5rem; }
    .hero-trust { gap: 1rem; }
    .trust-divider { display: none; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .cta-btn { width: 100%; justify-content: center; }
    .hero-actions .hero-link { justify-content: center; }

    /* Products: single column below 480 */
    .product-grid { grid-template-columns: 1fr; }
    .img-mockup { height: 200px; }

    .usp-item { flex: 1 1 100%; }
    .usp-strip { gap: 1.25rem; }

    .categories-grid { gap: 0.85rem; }
    .category-card { min-height: 140px; padding: 1.5rem; }

    .pdp-main-img { height: 230px; }
    .pdp-price { font-size: 1.55rem; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

    .faq-question { padding: 1rem 1.25rem; font-size: 0.88rem; }
    .faq-answer { padding: 0 1.25rem 1rem; font-size: 0.88rem; }

    .modal-content { padding: 1.75rem 1.5rem; }
    .modal-icon { font-size: 2rem; }
    .modal-content h2 { font-size: 1.4rem; }

    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .team-card { padding: 1.5rem; }
    .team-avatar { width: 60px; height: 60px; }

    .content-block { padding: 1.5rem; }
    .content-block h2 { font-size: 1.15rem; }
}

/* ===== PDP THUMBNAIL SLIDER ===== */
.pdp-thumb-slider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.thumb-track-wrapper {
    flex: 1;
    overflow: hidden;
}

.thumb-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Thumbs erben die bestehende .thumb-Klasse, nur img-Anpassung */
.thumb-track .thumb {
    flex: 0 0 calc((100% - 2rem) / 3); /* 3 sichtbar */
    height: 88px;
    cursor: pointer;
    opacity: 0.45;
    transition: var(--transition);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}
.thumb-track .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.thumb-track .thumb:hover { opacity: 0.8; }
.thumb-track .thumb.active {
    opacity: 1;
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
}

.thumb-arrow {
    flex-shrink: 0;
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    padding: 0 0 2px 0; /* leichter optischer Ausgleich für ‹ › Glyphe */
}
.thumb-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 14px var(--primary-glow);
}
.thumb-arrow:disabled {
    opacity: 0.2;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 768px) {
    .thumb-track .thumb { flex: 0 0 calc((100% - 1rem) / 2); } /* 2 sichtbar auf Mobile */
}

/* ===== IMAGE ZOOM OVERLAY ===== */
.img-zoom-overlay {
    position: fixed; inset: 0;
    background: rgba(5, 5, 12, 0.92);
    backdrop-filter: blur(16px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;               /* unsichtbar und nicht interaktiv */
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
    pointer-events: none;             /* lässt Klicks durch, wenn unsichtbar */
}
.img-zoom-overlay.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;             /* fängt Klicks ab, wenn sichtbar */
}
.img-zoom-overlay img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: var(--radius-xl);
    object-fit: contain;
    transform: scale(0.88);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px var(--primary-glow);
    pointer-events: none;
}
.img-zoom-overlay.visible img { transform: scale(1); }

.img-zoom-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.img-zoom-close:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ===== ZOOM CURSOR ===== */
.pdp-main-img,
.pdp-main-img img {
    cursor: zoom-in;
}

.img-zoom-overlay {
    cursor: zoom-out;
}

.img-zoom-overlay img {
    cursor: default;
}

/* Responsive Bild in der PDP-Galerie */
.pdp-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Bild füllt den Container aus, ohne zu verzerren */
    display: block;
    border-radius: inherit; /* übernimmt den Border-Radius des Containers */
}

/* ===== MINI MOBILE (≤ 320px) ===== */
@media (max-width: 320px) {

    /* Announcement bar: Text kürzer + kein Überlauf */
    .announcement-bar {
        font-size: 0.62rem;
        letter-spacing: 0;
        padding: 6px 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Navbar: volle Breite, minimales Padding */
    .navbar {
        width: calc(100% - 0.75rem);
        padding: 0.5rem 0.65rem;
        border-radius: var(--radius-md);
    }

    .logo { font-size: 1.2rem; }

    /* Cart-Button: nur Icon, kein Text, kein Count-Badge */
    .cart-btn {
        padding: 0.45rem 0.65rem;
        font-size: 0.78rem;
        gap: 4px;
    }

    /* PDP-Seite: weniger Außenabstand */
    .pdp-page {
        padding: 80px 3.5% 3rem;
    }

    /* Breadcrumb: kein Zeilenumbruch durch overflow */
    .breadcrumb {
        font-size: 0.7rem;
        gap: 4px;
        flex-wrap: wrap;
    }

    /* Hauptbild kleiner */
    .pdp-main-img {
        height: 200px;
        border-radius: var(--radius-md);
    }

    /* Thumb-Slider: Pfeile kleiner, Thumbs höher */
    .thumb-arrow {
        width: 26px;
        height: 26px;
        font-size: 1rem;
        padding: 0 0 1px 0; /* proportional reduziert für 26px Kreis */
    }
    .thumb-track .thumb {
        height: 64px;
    }

    /* PDP Info-Box: weniger Innenabstand */
    .pdp-info {
        padding: 1.25rem;
    }
    .pdp-info h1 {
        font-size: 1.35rem;
    }
    .pdp-price {
        font-size: 1.35rem;
    }

    /* Specs: einspaltiges Layout statt 2x2 */
    .pdp-specs {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        margin: 1.25rem 0;
    }
    .spec-item {
        padding: 0.75rem;
    }

    /* Benefits-Liste: etwas kompakter */
    .pdp-benefits li {
        font-size: 0.82rem;
        padding: 8px 0;
        gap: 8px;
    }

    /* OOS-Banner */
    .oos-banner {
        padding: 0.9rem 1rem;
        font-size: 0.78rem;
        gap: 8px;
    }

    /* CTA-Button */
    .cta-btn {
        font-size: 0.82rem;
        padding: 0.85rem 1.2rem;
    }

    /* Produktgrid: immer einspaltig */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    .img-mockup { height: 180px; }
    .product-info { padding: 0.85rem; }
    .product-info h3 { font-size: 0.85rem; }
    .price { font-size: 0.95rem; }
    .buy-btn {
        padding: 0.45rem 0.7rem;
        font-size: 0.72rem;
    }

    /* Footer-Grid: zwei Spalten → eine Spalte */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .footer-brand { grid-column: unset; }

    /* Footer-Badges: umbrechen statt scrollen */
    .footer-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .footer-badge {
        font-size: 0.62rem;
        padding: 4px 8px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        font-size: 0.7rem;
    }

    /* Zahlungs- & Versandlogos: etwas kleiner */
    .method-icons img {
        height: 16px;
    }
    .method-icons img.shipping-logo {
        height: 13px;
    }
    .method-icons {
        gap: 1rem;
    }

    /* Modal: kein horizontaler Überlauf */
    .modal-overlay {
        padding: 1rem 0.75rem;
    }
    .modal-content {
        padding: 1.5rem 1.1rem;
    }
    .modal-content h2 { font-size: 1.2rem; }
    .modal-icon { font-size: 1.75rem; }
    .modal-content .modal-sub { font-size: 0.8rem; }
}

/* ===== MOBILE CATEGORY NAV ===== */
.mobile-cat-chips {
    display: none;
}

@media (max-width: 768px) {

    /* ── Kategorien: 3 gleichbreite Karten, kein Scrollen ── */
    .mobile-cat-chips {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
        padding: 0 5% 1.75rem;
        overflow: visible;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .cat-chip {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        padding: 1rem 0.5rem 0.85rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--glass-border);
        text-decoration: none;
        position: relative;
        overflow: hidden;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        white-space: normal;
        text-align: center;
    }

    /* Subtile Gradient-Hintergründe je Kategorie */
    .cat-chip:nth-child(1) {
        background: linear-gradient(145deg, rgba(124,58,237,0.18) 0%, rgba(124,58,237,0.04) 100%);
        border-color: rgba(124,58,237,0.25);
    }
    .cat-chip:nth-child(2) {
        background: linear-gradient(145deg, rgba(16,185,129,0.15) 0%, rgba(16,185,129,0.03) 100%);
        border-color: rgba(16,185,129,0.2);
    }
    .cat-chip:nth-child(3) {
        background: linear-gradient(145deg, rgba(236,72,153,0.15) 0%, rgba(236,72,153,0.03) 100%);
        border-color: rgba(236,72,153,0.2);
    }

    .cat-chip:active { transform: scale(0.96); }

    /* Emoji groß, Label klein darunter */
    .cat-chip-icon {
        font-size: 1.5rem;
        line-height: 1;
        display: block;
    }
    .cat-chip-label {
        font-size: 0.7rem;
        font-weight: 600;
        font-family: var(--font-head);
        letter-spacing: 0.3px;
        color: var(--text);
        display: block;
        line-height: 1.2;
    }

    /* ── Trust Strip: Glasmorphism-Karte, vertikal gestapelt ── */
    .mobile-trust-strip {
        margin: 0 5% 2.5rem;
        padding: 0;
        border: 1px solid var(--glass-border);
        border-radius: var(--radius-md);
        background: var(--glass-bg);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        gap: 0;
    }

    .mobile-trust-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.9rem;
        padding: 1rem 1.25rem;
        border-bottom: 1px solid var(--glass-border);
        line-height: 1.3;
    }
    .mobile-trust-item:last-child { border-bottom: none; }

    .mobile-trust-item .trust-emoji {
        font-size: 1.35rem;
        flex-shrink: 0;
    }
    .mobile-trust-text {
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
    }
    .mobile-trust-item strong {
        display: block;
        color: var(--text);
        font-size: 0.88rem;
        font-weight: 600;
        font-family: var(--font-head);
    }
    .mobile-trust-item span:not(.trust-emoji) {
        color: var(--text-muted);
        font-size: 0.8rem;
    }
}