/* === KLANGRAUM 33 1/3 - PREMIUM VINYL STORE === */

/* Modern CSS Variables */
:root {
    /* Core Brand Colors – aus dem offiziellen Logo (Creme/Olive/Mustard/Orange/Rost/Schwarz) */
    --color-primary: #F2E3BE;        /* Creme hell */
    --color-secondary: #E8D488;      /* Mustard hell */
    --color-accent: #D66E2E;         /* Orange Hauptakzent */
    --color-accent-light: #E78B47;   /* Helleres Orange */
    --color-accent-purple: #8C392A;  /* Rostrot als Zweitakzent */
    --color-accent-green: #6E7B3B;   /* Olivgrün */
    --color-background: #F6E9C8;     /* Creme Hintergrund */
    --color-surface: #ffffff;        /* Weiß für Karten/Boxen */
    --color-text: #121212;           /* Sehr dunkles Grau/nahe Schwarz */
    --color-text-muted: #3B3B3B;     /* Für Fließtext */
    --color-border: #D9C5A5;         /* Warmer Randton */
    --color-primary-rgb: 242, 227, 190; /* Für rgba() Verwendungen */
    
    /* Modern Typography */
    --font-primary: 'Inter', 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Modern Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 4px 20px rgba(245, 158, 11, 0.35);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0)) no-repeat fixed, var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    position: relative;
    padding-top: 80px;
}

body::before {
    display: none;
}

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'EB Garamond', 'Garamond', 'Times New Roman', serif;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.01em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p {
    font-family: 'EB Garamond', 'Garamond', 'Times New Roman', serif;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    max-width: 65ch;
    line-height: 1.7;
}

/* FAQ paragraphs should use full width */
.faq-item p {
    max-width: 100% !important;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
}

a:hover {
    color: var(--color-accent-light);
    transform: translateY(-1px);
}

/* Modern Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* === ENHANCED IMAGE SYSTEM === */

/* Base image styling */
img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
}

/* Override for vinyl carousel images */
.vinyl-carousel-item img {
    max-width: none !important;
    height: unset !important;
    border-radius: 50% !important;
}

/* Professional placeholder enhancement */
.gallery-img,
.new-arrival-item img,
.ankauf-images-new img,
.owner-image,
.social-media-icons img {
    position: relative;
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-secondary) 100%);
    border: 2px solid var(--color-border);
    overflow: hidden;
}

/* Image overlay system for different types */
.gallery-img::before,
.new-arrival-item img::before,
.ankauf-images-new img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(245, 158, 11, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.gallery-img:hover::before,
.new-arrival-item img:hover::before,
.ankauf-images-new img:hover::before {
    opacity: 1;
}

/* Note: Image labels removed - now using realistic CSS-based images */

/* Ankauf images with different themes - Filter entfernt */

/* New arrivals with album cover styling */
.new-arrival-item img {
    aspect-ratio: 1;
    object-fit: cover;
    position: relative;
}

/* Note: Vinyl icon removed - now using realistic album backgrounds */

/* Social media icons enhancement */
.social-media-icons img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 8px;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
}

.social-media-icons a:nth-child(1) img {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 100%);
}

.social-media-icons a:nth-child(2) img {
    background: linear-gradient(135deg, #1877F2 0%, #42A5F5 100%);
}

.social-media-icons a:nth-child(3) img {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

/* === ENHANCED REALISTIC IMAGE PLACEHOLDERS === */

/* Base Gallery Image Styling */
.gallery-img {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border);
    transition: transform var(--transition-smooth), filter var(--transition-smooth);
    filter: grayscale(20%);
    position: relative;
    overflow: hidden;
}

.gallery-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-gold) !important;
    border-color: var(--color-accent) !important;
    filter: grayscale(0%);
    transition: transform var(--transition-smooth), filter var(--transition-smooth);
    /* Border und Shadow SOFORT - nur Transform und Filter animiert */
}

/* Note: Gallery Image 1 now uses real laden.jpg image */

/* Note: Gallery Image 2 now uses real vinyl.jpg image */

/* Real Images get hover overlay */
.gallery-img img {
    position: relative;
}

.gallery-img img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(245, 158, 11, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
}

.gallery-img img:hover::after {
    opacity: 1;
}

/* Ankauf Images - Real Photos */
.ankauf-img {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border);
    transition: all var(--transition-smooth);
    /* filter: grayscale(30%); - Filter entfernt */
    position: relative;
}

.ankauf-img:hover {
    transform: scale(1.05);
    border-color: var(--color-accent);
    /* filter: grayscale(0%); - Filter entfernt */
    box-shadow: var(--shadow-gold);
}

/* New Arrivals - Album Cover Simulation */
.new-arrival-item img {
    background: 
        linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%),
        repeating-linear-gradient(45deg, 
            transparent 0px, 
            transparent 2px,
            rgba(245, 158, 11, 0.1) 2px,
            rgba(245, 158, 11, 0.1) 4px);
}

.new-arrival-item:nth-child(1) img {
    background: 
        linear-gradient(135deg, #8B0000 0%, #4A0000 100%),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.new-arrival-item:nth-child(2) img {
    background: 
        linear-gradient(135deg, #000080 0%, #000040 100%),
        linear-gradient(45deg, transparent 40%, rgba(245, 158, 11, 0.3) 50%, transparent 60%);
}

.new-arrival-item:nth-child(3) img {
    background: 
        linear-gradient(135deg, #2F4F2F 0%, #1F3F1F 100%),
        repeating-conic-gradient(from 45deg at 50% 50%, transparent 0deg, rgba(245, 158, 11, 0.2) 30deg, transparent 60deg);
}

/* Owner Image - Real Photo */
.owner-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--color-accent);
    margin: 0 auto;
    display: block;
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-smooth);
}

.owner-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 
        0 10px 30px rgba(245, 158, 11, 0.4),
        0 0 50px rgba(245, 158, 11, 0.2);
}

/* Social Media Icons */
.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    padding: 8px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.social-icon:hover {
    border-color: var(--color-accent);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-gold);
}

/* Facebook */
.social-facebook {
    background: 
        radial-gradient(circle at 30% 30%, #1877F2 0%, #4267B2 100%),
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
}

.social-facebook::before {
    content: 'f';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    z-index: 2;
    font-family: Arial, sans-serif;
}

/* Instagram */
.social-instagram {
    background: 
        linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
    position: relative;
}

.social-instagram::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border: 2px solid white;
    border-radius: 4px;
    z-index: 2;
}

.social-instagram::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    border: 2px solid white;
    border-radius: 50%;
    z-index: 3;
}

/* TikTok */
.social-tiktok {
    background: 
        linear-gradient(135deg, #000000 0%, #1a1a1a 100%),
        radial-gradient(circle at 70% 30%, #FF0050 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, #00F2EA 0%, transparent 50%);
}

.social-tiktok::before {
    content: '♪';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    z-index: 2;
    text-shadow: 
        2px 0 0 #FF0050,
        -2px 0 0 #00F2EA;
}

/* === HEADER & NAVIGATION === */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    backdrop-filter: none;
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: all var(--transition-smooth);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.96);
    box-shadow: var(--shadow-lg);
}

header.scrolled .logo-placeholder h1 {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

    nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
        padding: var(--space-sm) 0;
    max-width: 1200px;
    margin: 0 auto;
        padding-left: var(--space-md);
        padding-right: var(--space-md);
        height: 70px;
        margin-top: 0;
    background: transparent;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-logo-img {
    height: 42px;
    width: auto;
    flex-shrink: 0;
    display: block;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    object-fit: contain;
    background: #fff;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.site-logo-link:hover .site-logo-img,
.site-logo-link:focus .site-logo-img {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Logo Modal */
.logo-content {
    max-width: 900px;
    width: 95%;
    background: var(--color-primary);
}

.logo-modal-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

header.scrolled .site-logo-img {
    border-color: rgba(255,255,255,0.35);
    box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.site-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    transform-origin: center;
}

/* Vinyl Spinning Animation */
.vinyl-spinning {
    animation: vinylSpin 3s linear infinite;
    transform-origin: center;
}

@keyframes vinylSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.site-logo:hover {
    animation: vinylSpinFast 1s linear infinite;
    box-shadow: var(--shadow-gold);
    border-color: var(--color-accent-light);
    transform-origin: center;
}

@keyframes vinylSpinFast {
    from {
        transform: rotate(0deg) scale(1.05);
    }
    to {
        transform: rotate(360deg) scale(1.05);
    }
}

.logo-placeholder h1 {
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    color: #000;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-family: 'EB Garamond', 'Garamond', 'Times New Roman', serif;
    text-shadow: 0 1px 4px rgba(255,255,255,0.2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobile logo and title tuning */
@media (max-width: 480px) {
    .site-logo-img {
        height: 36px;
        width: auto;
    }
    .logo-placeholder {
        gap: var(--space-xs);
    }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-xs);
    align-items: center;
}

.nav-list a,
.nav-list a:visited {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: #000;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    background: rgba(255, 255, 255, 0.98);
    text-shadow: 0 1px 4px rgba(255,255,255,0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.nav-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-purple) 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: -1;
}

.nav-list a:hover,
.nav-list a:active {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.nav-list a:hover::before {
    opacity: 1;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid transparent;
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--color-accent);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.nav-toggle:hover::before {
    opacity: 1;
}

.nav-toggle.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.nav-toggle.active .nav-toggle-bar {
    background: #222;
}

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: #666;
    box-shadow: 0 1px 3px rgba(255, 255, 255, 0.3);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Hamburger Animation */
.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === HERO SECTION === */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-section p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: var(--space-2xl);
    color: var(--color-text-muted);
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
    background: rgba(var(--color-primary-rgb), 0.85);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

/* Image Gallery - Standard für Mobile (1 Bild) */
.image-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.gallery-img {
    height: 300px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border);
    transition: transform var(--transition-smooth);
    background: var(--color-surface);
    /* filter: grayscale(20%); - Filter entfernt */
    position: relative;
}

.gallery-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 28px rgba(0,0,0,0.18) !important;
    border-color: var(--color-accent) !important;
    /* filter: grayscale(0%); - Filter entfernt */
    transition: transform var(--transition-smooth);
    /* Border und Shadow SOFORT - nur Transform animiert */
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-smooth);
}

.btn:hover::before {
    left: 100%;
}

.primary-btn {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-purple) 100%);
    color: var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(138, 138, 138, 0.4);
    background: linear-gradient(135deg, var(--color-accent-purple) 0%, var(--color-accent) 100%);
}

.secondary-btn {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    box-shadow: 0 2px 8px rgba(138, 138, 138, 0.1);
}

.secondary-btn:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(138, 138, 138, 0.3);
}

/* === SECTIONS === */
.section {
    padding: var(--space-2xl) 0;
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.section:nth-child(even) {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    box-shadow: inset 0 1px 0 rgba(0,0,0,0.04);
}

.section h2 {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.2;
}

.section h2::before {
    content: '';
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space-sm);
    opacity: 0.7;
}

/* === ANKAUF SECTION === */
#ankauf {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}

.ankauf-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(5px);
}

.ankauf-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.ankauf-badge {
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-accent);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.2);
    transition: all var(--transition-fast);
}

.ankauf-badge:hover {
    transform: translateY(-2px);
}

.ankauf-intro {
    font-size: 1rem;
    max-width: 70ch;
    margin: 0 auto var(--space-lg);
    color: var(--color-text-muted);
}



/* Timeline-Styles entfernt für dezenteres Design */

.ankauf-images-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    justify-items: center;
    background: transparent;
}

.ankauf-images-new img {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border);
    transition: all var(--transition-smooth);
    filter: grayscale(30%);
    position: relative;
}

.ankauf-images-new img:hover {
    transform: scale(1.05);
    border-color: var(--color-accent);
    filter: grayscale(0%);
    box-shadow: var(--shadow-gold);
}

/* === ÜBER UNS SECTION === */
#ueber-uns {
    text-align: center;
}

#ueber-uns p {
    font-size: 1.1rem;
    max-width: 80ch;
    margin: 0 auto var(--space-xl);
    background: rgba(255, 255, 255, 0.8);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.owner-image {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    border: 4px solid var(--color-accent);
    object-fit: cover;
    margin: 0 auto;
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-smooth);
    position: relative;
}

.owner-image:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Note: Owner styling now complete with portrait background and label */

/* === NEUZUGÄNGE SECTION === */
#neuzugaenge {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

#neuzugaenge p {
    text-align: center;
    max-width: 80ch;
    margin: 0 auto var(--space-xl);
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.7);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(5px);
}

/* === SIMPLE VINYL SLIDESHOW === */
.slideshow-container {
    position: relative;
    width: 100%;
    margin: var(--space-xl) 0;
    background: rgba(var(--color-primary-rgb), 0.92);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    height: 450px;
    padding: var(--space-lg);
}

#new-arrivals-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
        align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    overflow: hidden;
}

/* === ABSOLUTELY STABLE 3-SLOT CAROUSEL === */
#new-arrivals-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}

/* Fixed slot containers - NEVER change position or size */
.vinyl-slot {
    width: 200px;
    height: 320px;
    position: relative;
    display: flex;
        align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vinyl-slot.slot-left {
    order: 1;
}

.vinyl-slot.slot-center {
    order: 2;
    width: 250px;
    height: 360px;
}

.vinyl-slot.slot-right {
    order: 3;
}

/* Vinyl items - only content changes, never position */
.vinyl-carousel-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, transform 0.6s ease;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
}

.vinyl-carousel-item.visible {
    opacity: 1;
    pointer-events: auto;
}

/* Side slots have smaller scale */
.vinyl-slot.slot-left .vinyl-carousel-item.visible,
.vinyl-slot.slot-right .vinyl-carousel-item.visible {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.8;
}

/* Center slot has full scale and glow */
.vinyl-slot.slot-center .vinyl-carousel-item.visible {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.3));
}

/* === ENHANCED HOVER EFFECTS === */
.vinyl-slot.slot-left .vinyl-carousel-item.visible:hover,
.vinyl-slot.slot-right .vinyl-carousel-item.visible:hover {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 1;
}

.vinyl-slot.slot-left .vinyl-carousel-item.visible:hover .new-arrival-image,
.vinyl-slot.slot-right .vinyl-carousel-item.visible:hover .new-arrival-image {
    animation-duration: 6s;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(245, 158, 11, 0.3);
}

.vinyl-slot.slot-center .vinyl-carousel-item.visible:hover {
    transform: translate(-50%, -50%) scale(1.08);
    filter: brightness(1.15) drop-shadow(0 0 30px rgba(245, 158, 11, 0.5));
}

.vinyl-slot.slot-center .vinyl-carousel-item.visible:hover .new-arrival-image {
    animation-duration: 4s;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(245, 158, 11, 0.6),
        inset 0 0 0 4px rgba(245, 158, 11, 0.3);
}

/* No hover effects on touch devices */
@media (hover: none) {
    .vinyl-carousel-item:hover {
        transform: none !important;
        filter: none !important;
        opacity: initial !important;
    }
}

/* === ENHANCED VINYL RECORDS STYLING === */
.vinyl-carousel-item .new-arrival-image {
    width: 180px !important;
    height: 180px !important;
    min-width: 180px;
    min-height: 180px;
    max-width: 180px;
    max-height: 180px;
    border-radius: 50% !important;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.4),
        0 6px 12px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px rgba(245, 158, 11, 0.1);
    position: relative;
    background: 
        radial-gradient(circle at 30% 30%, #333 0%, #1a1a1a 70%, #000 100%),
        linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #0f0f0f 100%);
    animation: vinylSpin 12s linear infinite;
    border: none !important;
    display: block;
    flex-shrink: 0;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

/* Center vinyl is larger with enhanced effects */
.vinyl-slot.slot-center .vinyl-carousel-item.visible .new-arrival-image {
    width: 220px !important;
    height: 220px !important;
    min-width: 220px;
    min-height: 220px;
    max-width: 220px;
    max-height: 220px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 15px 30px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(245, 158, 11, 0.4),
        inset 0 0 0 3px rgba(245, 158, 11, 0.2);
    animation-duration: 8s;
}

/* Vinyl spinning only when visible and not paused */
.vinyl-carousel-item.visible .new-arrival-image {
    animation-play-state: running;
}

.slideshow-container.paused .vinyl-carousel-item .new-arrival-image {
    animation-play-state: paused;
}

@keyframes vinylSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Only center vinyl spins */
.vinyl-carousel-item:not(.center) .new-arrival-image {
    animation-play-state: paused;
}

/* === ENHANCED VINYL DETAILS === */
/* Center hole with metallic effect */
.vinyl-carousel-item .new-arrival-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: 
        radial-gradient(circle at 30% 30%, var(--color-accent) 0%, #8b7355 40%, #4a3f1b 80%, #000 100%);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 
        inset 0 0 8px rgba(0, 0, 0, 0.9),
        0 0 6px rgba(245, 158, 11, 0.7),
        0 2px 4px rgba(0, 0, 0, 0.8);
}

.vinyl-slot.slot-center .vinyl-carousel-item.visible .new-arrival-image::before {
    width: 26px;
    height: 26px;
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.9),
        0 0 8px rgba(245, 158, 11, 0.8),
        0 3px 6px rgba(0, 0, 0, 0.8);
}

/* Vinyl grooves */
.vinyl-carousel-item .new-arrival-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: 
        repeating-radial-gradient(circle at 50% 50%, 
            transparent 0px, 
            transparent 2px,
            rgba(0, 0, 0, 0.15) 3px,
            rgba(0, 0, 0, 0.15) 4px);
    z-index: 1;
}

/* === VINYL TITLES === */
.vinyl-carousel-item .new-arrival-content {
    margin-top: 12px;
    text-align: center;
    background: none;
    border: none;
    padding: 0;
    width: 100%;
    max-width: 200px;
}

.vinyl-carousel-item .new-arrival-content h3 {
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0.8;
    transition: all var(--transition-smooth);
    line-height: 1.3;
    word-wrap: break-word;
}

.vinyl-carousel-item.center .new-arrival-content h3 {
    color: var(--color-accent);
    font-size: 1.1rem;
    opacity: 1;
    text-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
    font-weight: 700;
    max-width: 240px;
}

/* Hide genre badge and description for cleaner look */
.vinyl-carousel-item .genre-badge,
.vinyl-carousel-item .new-arrival-content p {
    display: none;
}

/* Hidden items */
.vinyl-carousel-item.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(600px) translateZ(-300px) rotateY(-60deg) scale(0.4);
}

/* Enhanced Progress Bar */
.slideshow-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--color-accent) 0%, 
        var(--color-secondary) 50%, 
        var(--color-accent) 100%);
    z-index: 20;
    animation: carouselProgress 4s linear infinite;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.slideshow-container.paused::before {
    animation-play-state: paused;
}

/* Progress bar syncs with carousel rotation */
.slideshow-container.rotating::before {
    animation-duration: 4s;
}

@keyframes carouselProgress {
    0% { 
        width: 0%; 
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% { 
        width: 100%;
        opacity: 0.7;
    }
}

/* === NAVIGATION - FIXED === */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    color: var(--color-accent);
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 15;
    transition: all var(--transition-smooth);
    backdrop-filter: blur(10px);
    display: flex;
        align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-nav:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

.carousel-prev {
    left: 16px;
}

.carousel-next {
    right: 16px;
}

/* Controls */
.slideshow-controls {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 15;
}

.slideshow-pause-btn {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--color-accent);
    transition: all var(--transition-smooth);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.slideshow-pause-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.slideshow-pause-btn:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.7);
}

.slideshow-pause-btn:hover::before {
    opacity: 1;
}

/* === DOTS NAVIGATION - FIXED === */
.slideshow-dots {
    display: flex;
        justify-content: center;
    gap: 16px;
    margin-top: 28px;
    padding: 20px;
}

.slideshow-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    /* Enhanced touch targets */
    padding: 10px;
    margin: -10px;
    border: 2px solid transparent;
}

.slideshow-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: -1;
}

.slideshow-dot:hover {
    background: var(--color-accent);
    transform: scale(1.3);
    border-color: rgba(245, 158, 11, 0.3);
}

.slideshow-dot:hover::after {
    opacity: 0.2;
}

.slideshow-dot.active {
    background: var(--color-accent);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.7);
    border-color: rgba(245, 158, 11, 0.5);
}

.slideshow-dot.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    opacity: 0.6;
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
}

.new-arrival-item {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition-smooth);
    position: relative;
}

.new-arrival-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-accent) 0%, transparent 50%, var(--color-accent) 100%);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.new-arrival-item:hover::before {
    opacity: 1;
}

.new-arrival-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Note: New arrival images now handled by .new-arrival-image class */

.new-arrival-item h3 {
    padding: var(--space-md);
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-text);
}

.new-arrival-item p {
    padding: 0 var(--space-md) var(--space-md);
    margin: 0;
    color: var(--color-text-muted);
}

/* === KONTAKT SECTION FIXED === */
#kontakt p {
    text-align: center;
    max-width: 80ch;
    margin: 0 auto var(--space-xl);
    font-size: 1.1rem;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.kontakt-tile {
    background: transparent;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid #cfcfcf;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.kontakt-tile::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-accent) 0%, transparent 50%, var(--color-accent) 100%);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.kontakt-tile:hover::before {
    opacity: 1;
}

.kontakt-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* First row: Contact Details + Opening Hours */
.kontakt-tile:nth-child(1),
.kontakt-tile:nth-child(2) {
    grid-row: 1;
}

/* Second row: Map + Contact Form */
.kontakt-tile:nth-child(3),
.kontakt-tile:nth-child(4) {
    grid-row: 2;
}

.contact-details-box, .opening-hours-box {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--space-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    color: var(--color-text-muted);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.opening-hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--space-sm);
}

.opening-hours-table td {
    padding: var(--space-xs) 0;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
}

.opening-hours-table .day {
    font-weight: 600;
    color: var(--color-text);
}

.opening-hours-table .time {
    text-align: right;
    font-family: var(--font-mono);
    color: var(--color-accent);
    font-weight: 500;
}

/* Contact Form */
.contact-form-highlight {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--space-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-form input,
.contact-form textarea {
    padding: var(--space-sm);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-primary);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* Map */
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    height: 100%;
    min-height: 250px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border: none;
    filter: grayscale(50%) contrast(1.2);
    transition: filter var(--transition-smooth);
}

.contact-map:hover iframe {
    filter: grayscale(20%) contrast(1);
}

/* Social Media */
.social-media-icons {
    text-align: center;
    margin-top: var(--space-xl);
}

.social-media-icons a {
    display: inline-block;
    margin: 0 var(--space-sm);
    transition: all var(--transition-fast);
}

/* Note: Social media hover effects now handled by .social-icon class */

/* === FAQ SECTION ENHANCED === */
#faq {
    padding: var(--space-2xl) 0;
}

#faq .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

#faq h2 {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.2;
}

#faq > .container > p {
    text-align: center;
    max-width: 80ch;
    margin: 0 auto var(--space-xl);
    font-size: 1.1rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: all var(--transition-smooth);
    width: 100%;
    max-width: 100%;
}

.faq-item:hover {
    border-color: var(--color-accent);
}

.faq-item h3 {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-surface) 100%);
    padding: var(--space-md);
    margin: 0;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: var(--color-text);
    width: 100%;
    max-width: 100%;
}

.faq-item h3:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-purple) 100%);
    color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(138, 138, 138, 0.2);
}

.faq-item h3::before {
    content: '';
    margin-right: var(--space-sm);
    font-size: 1.2rem;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform var(--transition-fast);
}

.faq-item.active h3::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: var(--space-md);
    margin: 0;
    display: none;
    background: var(--color-primary);
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
    max-width: 100% !important;
    width: 100%;
    line-height: 1.7;
    font-size: 1rem;
    box-sizing: border-box;
}

.faq-item.active p {
        display: block;
}

/* === FOOTER === */
footer {
    background: #111111;
    padding: var(--space-xl) var(--space-md);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: var(--space-2xl);
    display: flex;
        flex-direction: column;
        align-items: center;
    justify-content: center;
}

footer p {
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    text-align: center;
} 

.footer-links {
    text-align: center;
    width: 100%;
}

.footer-links a {
    color: var(--color-accent);
    margin: 0 var(--space-sm);
    transition: all var(--transition-fast);
}

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

/* === MODALS === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-smooth);
}

.modal-overlay[style*="flex"] {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    max-width: 600px;
    width: 90%;
    position: relative;
    transform: translateY(50px) scale(0.9);
    transition: all var(--transition-smooth);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.modal-overlay[style*="flex"] .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-accent);
    transform: scale(1.1);
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: var(--space-md);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
        max-width: 100%;
}

.modal-content p {
    line-height: 1.6;
    color: var(--color-text);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        padding: var(--space-lg);
        margin: var(--space-md);
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
}

/* === MUSIC PLAYER === */
.music-player {
    position: fixed;
    bottom: var(--space-lg);
    left: var(--space-lg);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    pointer-events: auto;
}

.music-toggle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-purple) 100%);
    color: #fff;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(138, 138, 138, 0.3);
    transition: all var(--transition-smooth);
    opacity: 0.8;
    pointer-events: auto;
    user-select: none;
    z-index: 10000;
}

.music-toggle:hover {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 6px 20px rgba(138, 138, 138, 0.4);
}

.music-toggle.playing {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-purple) 100%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.music-controls {
    background: rgba(var(--color-primary-rgb), 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
}

.music-title {
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.volume-slider {
    width: 80px;
    height: 4px;
    background: var(--color-border);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--color-accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(138, 138, 138, 0.3);
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--color-accent);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(138, 138, 138, 0.3);
}

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

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-purple) 100%);
    color: var(--color-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
        font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(138, 138, 138, 0.3);
    transition: all var(--transition-smooth);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.back-to-top[style*="flex"] {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(138, 138, 138, 0.5);
}

/* === ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.4s; }

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    /* Bildergalerie bleibt bei 1 Bild für bessere Übersichtlichkeit */
    .image-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
    display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
    flex-direction: column;
        justify-content: flex-start;
    align-items: center;
        padding: var(--space-lg) var(--space-md);
        border-top: 2px solid var(--color-accent);
        transform: translateX(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    /* Header bleibt sichtbar und wird hervorgehoben */
    .nav-list.open + header,
    .nav-list.open ~ header {
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Header bleibt immer sichtbar */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
    background: #fff;
        border-bottom: 1px solid var(--color-border);
        transition: all 0.3s ease;
        margin: 0;
        padding: 0;
    }
    
    /* Header wird hervorgehoben wenn Menü offen */
    .nav-list.open ~ header,
    .nav-list.open + header {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        background: #fff;
    }
    
    /* Mobile Body Padding */
    body {
        padding-top: 0;
        margin: 0;
    }
    
    /* Reset any default margins/padding */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html {
        margin: 0;
        padding: 0;
    }
    
    /* Ensure header is at the very top */
    header {
        top: 0 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Ensure content starts directly after header */
    main {
        margin-top: 0;
        padding-top: 0;
    }
    
    .hero-section {
        margin-top: 0;
        padding-top: 80px;
    }
    
    /* Mobile menu overlay - removed for better readability */
    .nav-list::before {
        display: none;
    }
    
    .nav-list li {
        margin-bottom: var(--space-md);
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100%;
        max-width: 280px;
    }
    
    .nav-list.open li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-list li:nth-child(1) { transition-delay: 0.1s; }
    .nav-list li:nth-child(2) { transition-delay: 0.15s; }
    .nav-list li:nth-child(3) { transition-delay: 0.2s; }
    .nav-list li:nth-child(4) { transition-delay: 0.25s; }
    .nav-list li:nth-child(5) { transition-delay: 0.3s; }
    .nav-list li:nth-child(6) { transition-delay: 0.35s; }
    
    .nav-list a {
        width: 100%;
        text-align: center;
        padding: var(--space-md) var(--space-lg);
        border-radius: var(--radius-md);
        border: 1px solid var(--color-border);
        background: #fff;
        color: #222;
        font-size: 1.1rem;
        font-weight: 600;
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
        text-decoration: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
    
    .nav-list a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-list a:hover {
        background: var(--color-accent);
    color: #fff;
        border-color: var(--color-accent);
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
    }
    
    .nav-list a:hover::before {
        left: 100%;
    }
    
    .nav-list a:active {
        transform: translateY(0) scale(0.98);
    }
    
    .hero-section {
        min-height: 70vh;
        padding-top: 80px;
    }
    
    .hero-section h1 {
        font-size: clamp(2rem, 5vw, 2.5rem);
        margin-bottom: var(--space-md);
    }
    
    .hero-section p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: var(--space-lg);
    }
    
    /* Bildergalerie wird durch separate Media Queries gesteuert */
    
    .cta-buttons {
    flex-direction: column;
    align-items: center;
        gap: var(--space-md);
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        padding: var(--space-md) var(--space-lg);
        font-size: 1.1rem;
        font-weight: 600;
        min-height: 48px;
    display: flex;
    align-items: center;
        justify-content: center;
    }
    
    /* Verbesserte Sektionen */
    .section {
        padding: var(--space-xl) 0;
    }
    
    .section h2 {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
        margin-bottom: var(--space-lg);
    text-align: center;
    }
    
    .section p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: var(--space-lg);
    }
    
    /* Ankauf Section Verbesserungen */
    .ankauf-badges {
        gap: var(--space-sm);
        margin-bottom: var(--space-xl);
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .ankauf-badge {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9rem;
        font-weight: 600;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .ankauf-images-new {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        margin-top: var(--space-xl);
    }
    
    .ankauf-images-new img {
        height: 250px;
        border-radius: var(--radius-lg);
    }
    
    /* Kontakt Grid Verbesserungen */
    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        max-width: 100%;
    }
    
    .kontakt-tile {
        padding: var(--space-lg);
        border-radius: var(--radius-lg);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .kontakt-tile:nth-child(1),
    .kontakt-tile:nth-child(2),
    .kontakt-tile:nth-child(3),
    .kontakt-tile:nth-child(4) {
        grid-row: auto;
    }
    
    /* Kontaktformular Verbesserungen */
    .contact-form input,
    .contact-form textarea {
        padding: var(--space-md);
        font-size: 1rem;
        min-height: 48px;
        border-radius: var(--radius-md);
    }
    
    .contact-form textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .contact-form button {
    width: 100%;
        padding: var(--space-md);
        font-size: 1.1rem;
        font-weight: 600;
        min-height: 48px;
    }
    
    /* FAQ Verbesserungen */
    .faq-item {
        margin-bottom: var(--space-lg);
        border-radius: var(--radius-lg);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .faq-item h3 {
        padding: var(--space-lg);
        font-size: 1.1rem;
        font-weight: 600;
        min-height: 48px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    
    .faq-item p {
        padding: 0 var(--space-lg) var(--space-lg);
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Social Media Icons Verbesserungen */
    .social-media-icons {
        gap: var(--space-lg);
        margin-top: var(--space-xl);
    justify-content: center;
    }
    
    .social-media-icons a {
        width: 60px;
        height: 60px;
        border-radius: 50%;
    display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-surface);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .social-media-icons a:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    /* Footer Verbesserungen */
    footer {
        padding: var(--space-xl) var(--space-md);
        text-align: center;
    }
    
    footer p {
        font-size: 0.9rem;
        margin-bottom: var(--space-md);
    }
    
    .footer-links {
        gap: var(--space-md);
        flex-wrap: nowrap;
        justify-content: center;
    display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: var(--space-sm);
        min-height: 32px;
        display: flex;
        align-items: center;
    justify-content: center;
        white-space: nowrap;
    }
    
    /* Social Media Icons Verbesserungen */
    .social-media-icons {
        gap: var(--space-lg);
        margin-top: var(--space-xl);
        justify-content: center;
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .social-media-icons a {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--color-surface);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    
    .social-media-icons a:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    /* Back to Top Button Verbesserungen */
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        border-radius: 50%;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    
    /* Music Player Verbesserungen */
    .music-player {
        bottom: var(--space-lg);
        left: var(--space-lg);
    }
    
    .music-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        border-radius: 50%;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    
    /* === ENHANCED MOBILE SLIDESHOW OPTIMIZATIONS === */
    .slideshow-container {
        height: 320px;
        padding: var(--space-sm);
        margin: var(--space-md) 0;
        border-radius: var(--radius-md);
    }
    
    /* Mobile slot adjustments - more compact */
    .vinyl-slot {
        width: 120px;
        height: 200px;
    }
    
    .vinyl-slot.slot-center {
        width: 140px;
        height: 220px;
    }
    
    #new-arrivals-slideshow {
        padding: 0 1%;
        gap: var(--space-sm);
    }
    
    /* Smaller vinyl images on mobile */
    .vinyl-carousel-item .new-arrival-image {
        width: 100px !important;
        height: 100px !important;
        min-width: 100px;
        min-height: 100px;
        max-width: 100px;
        max-height: 100px;
    }
    
    .vinyl-slot.slot-center .vinyl-carousel-item.visible .new-arrival-image {
        width: 120px !important;
        height: 120px !important;
        min-width: 120px;
        min-height: 120px;
        max-width: 120px;
        max-height: 120px;
    }
    
    /* Smaller center holes */
    .vinyl-carousel-item .new-arrival-image::before {
        width: 12px;
        height: 12px;
    }
    
    .vinyl-slot.slot-center .vinyl-carousel-item.visible .new-arrival-image::before {
        width: 14px;
        height: 14px;
    }
    
    /* Compact content */
    .vinyl-carousel-item .new-arrival-content {
        max-width: 110px;
        margin-top: 6px;
    }
    
    .vinyl-carousel-item .new-arrival-content h3 {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .vinyl-slot.slot-center .vinyl-carousel-item.visible .new-arrival-content h3 {
        font-size: 0.85rem;
        max-width: 130px;
    }
    
    /* Enhanced mobile navigation */
    .carousel-nav {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        background: rgba(0, 0, 0, 0.9);
        border-width: 1px;
    }
    
    .carousel-prev {
        left: 8px;
    }
    
    .carousel-next {
        right: 8px;
    }
    
    /* Compact pause button */
    .slideshow-pause-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        top: 8px;
        right: 8px;
    }
    
    /* Enhanced mobile dots */
    .slideshow-dots {
        gap: 12px;
        margin-top: 20px;
        padding: 16px;
    }
    
    .slideshow-dot {
        width: 12px;
        height: 12px;
        padding: 8px;
        margin: -8px;
    }
    
    /* Mobile progress bar */
    .slideshow-container::before {
        height: 3px;
        box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
    }
    
    /* Enhanced mobile opening hours */
    .opening-hours-table {
        margin-top: var(--space-md);
        width: 100%;
        border-collapse: collapse;
    }
    
    .opening-hours-table td {
        padding: var(--space-sm) var(--space-xs);
        font-size: 0.95rem;
        line-height: 1.4;
        vertical-align: top;
        border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    }
    
    .opening-hours-table .day {
        font-size: 0.9rem;
        padding-right: var(--space-sm);
        font-weight: 500;
        color: var(--color-text);
        width: 40%;
    }
    
    .opening-hours-table .time {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--color-accent);
        text-align: right;
        width: 60%;
    }
    
    /* Mobile-friendly opening hours layout */
    .opening-hours-box {
        padding: var(--space-lg);
        background: var(--color-surface);
        border-radius: var(--radius-lg);
        border: 1px solid var(--color-border);
    }
    
    .opening-hours-box .contact-row {
        margin-bottom: var(--space-md);
    }
    
    .opening-hours-box .contact-row strong {
        font-size: 1.1rem;
        display: block;
        margin-bottom: var(--space-sm);
        color: var(--color-accent);
    }
    
    /* Mobile opening hours responsive fix */
    .opening-hours-table tr:last-child td {
        border-bottom: none;
    }
    
    .opening-hours-table tr td[colspan="2"] {
        text-align: center;
        color: var(--color-text-muted);
        font-style: italic;
    }

    /* Mobile optimizations for realistic images */
    .gallery-img::before,
    .gallery-img::after,
    .gallery-img-interior::after,
    .gallery-img-vinyl::after,
    .gallery-img-turntable::after,
    .owner-image::after {
        font-size: 0.7rem;
        padding: 2px 6px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    :root {
        --space-lg: 1.5rem;
        --space-xl: 2rem;
        --space-2xl: 2.5rem;
    }
    
    /* Hero Section für sehr kleine Bildschirme */
    .hero-section {
        min-height: 60vh;
        padding-top: 70px;
    }
    
    .hero-section h1 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: var(--space-sm);
    }
    
    .hero-section p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: var(--space-md);
    }
    
    /* Buttons für sehr kleine Bildschirme */
    .btn {
        width: 100%;
        max-width: 280px;
        padding: var(--space-sm) var(--space-md);
        font-size: 1rem;
        font-weight: 600;
        min-height: 44px;
    }
    
    /* Navigation für sehr kleine Bildschirme */
    .nav-list a {
        padding: var(--space-sm) var(--space-md);
        font-size: 1rem;
        min-height: 44px;
    }
    
    /* Sektionen für sehr kleine Bildschirme */
    .section {
        padding: var(--space-lg) 0;
    }
    
    .section h2 {
        font-size: clamp(1.6rem, 5vw, 2rem);
        margin-bottom: var(--space-md);
    }
    
    .section p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: var(--space-md);
    }
    
    /* Ankauf Badges für sehr kleine Bildschirme */
    .ankauf-badges {
        gap: var(--space-xs);
        margin-bottom: var(--space-lg);
    }
    
    .ankauf-badge {
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.85rem;
        min-height: 36px;
    }
    
    /* Kontaktformular für sehr kleine Bildschirme */
    .contact-form input,
    .contact-form textarea {
        padding: var(--space-sm);
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    .contact-form textarea {
        min-height: 100px;
    }
    
    .contact-form button {
        padding: var(--space-sm);
        font-size: 1rem;
        min-height: 44px;
    }
    
    /* FAQ für sehr kleine Bildschirme */
    .faq-item h3 {
        padding: var(--space-md);
        font-size: 1rem;
        min-height: 44px;
    }
    
    .faq-item p {
        padding: 0 var(--space-md) var(--space-md);
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Extra small screen opening hours fix */
    .opening-hours-table {
        font-size: 0.85rem;
    }
    
    .opening-hours-table td {
        padding: var(--space-xs) var(--space-xs);
    }
    
    .opening-hours-table .day {
        width: 45%;
        font-size: 0.85rem;
    }
    
    .opening-hours-table .time {
        width: 55%;
        font-size: 0.85rem;
    }
    
    /* Social Media Icons für sehr kleine Bildschirme */
    .social-media-icons a {
        width: 50px;
        height: 50px;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
    }
    
    /* Back to Top und Music Player für sehr kleine Bildschirme */
    .back-to-top {
        bottom: var(--space-sm);
        right: var(--space-sm);
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .music-player {
        bottom: var(--space-sm);
        left: var(--space-sm);
    }
    
    .music-toggle {
    width: 44px;
    height: 44px;
        font-size: 1.1rem;
    }
    
    .music-controls {
        display: none !important;
    }
    
    /* Slideshow für sehr kleine Bildschirme */
    .slideshow-container {
        height: 280px;
        padding: var(--space-xs);
    }
    
    .vinyl-slot {
        width: 100px;
        height: 160px;
    }
    
    .vinyl-slot.slot-center {
        width: 120px;
        height: 180px;
    }
    
    .vinyl-carousel-item .new-arrival-image {
        width: 80px !important;
        height: 80px !important;
        min-width: 80px;
        min-height: 80px;
        max-width: 80px;
        max-height: 80px;
    }
    
    .vinyl-slot.slot-center .vinyl-carousel-item.visible .new-arrival-image {
        width: 100px !important;
        height: 100px !important;
        min-width: 100px;
        min-height: 100px;
        max-width: 100px;
        max-height: 100px;
    }
    
    .vinyl-carousel-item .new-arrival-content h3 {
        font-size: 0.7rem;
    }
    
    .vinyl-slot.slot-center .vinyl-carousel-item.visible .new-arrival-content h3 {
        font-size: 0.8rem;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slideshow-pause-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
}

/* Optimize complex CSS for small screens */
@media (max-width: 768px) {
    .gallery-img::before,
    .gallery-img::after,
    .ankauf-img::before,
    .new-arrival-image::before,
    .owner-image::before {
        opacity: 0.7;
    }
    
    .owner-image::after {
        bottom: -10px;
        font-size: 0.7rem;
        padding: 2px 8px;
    }
}

/* New Arrival Images - Real Photos */
.new-arrival-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all var(--transition-smooth);
    filter: grayscale(20%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border);
}

.new-arrival-item:hover .new-arrival-image {
    transform: scale(1.05);
    filter: grayscale(0%);
    border-color: var(--color-accent) !important;
    box-shadow: var(--shadow-gold) !important;
    transition: transform var(--transition-smooth), filter var(--transition-smooth);
    /* Border und Shadow SOFORT */
}

/* Footer für sehr kleine Bildschirme */
footer {
    padding: var(--space-lg) var(--space-sm);
}

.footer-links {
    gap: var(--space-sm);
    flex-wrap: nowrap;
    justify-content: center;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-links a {
    font-size: 0.85rem;
    padding: var(--space-xs);
    min-height: 28px;
    white-space: nowrap;
}

/* Social Media Icons für sehr kleine Bildschirme */
.social-media-icons {
    gap: var(--space-md);
    margin-top: var(--space-lg);
    justify-content: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
}

.social-media-icons a {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.social-icon {
    width: 28px;
    height: 28px;
}

/* Desktop Bildergalerie - 3 Bilder nebeneinander */
@media (min-width: 769px) {
    .image-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
        margin-bottom: var(--space-2xl);
    }
    
    .gallery-img {
        height: 300px;
    width: 100%;
        object-fit: cover;
        max-width: none;
        margin: 0;
    }
}

/* Desktop Navigation Optimierung */
@media (min-width: 769px) {
    .nav-list {
        gap: var(--space-sm);
        flex-wrap: nowrap;
    }
    
    .nav-list a,
    .nav-list a:visited {
        min-width: 100px;
        max-width: 140px;
        font-size: 0.9rem;
        padding: var(--space-xs) var(--space-sm);
    }
    
    .nav-list a:hover {
        min-width: 100px;
        max-width: 140px;
    }
}

/* Mobile Bildergalerie - Nur das erste Bild anzeigen */
@media (max-width: 1024px) {
    .image-gallery .gallery-img:nth-child(2),
    .image-gallery .gallery-img:nth-child(3) {
        display: none;
    }
}

/* Desktop Bildergalerie - Alle 3 Bilder anzeigen */
@media (min-width: 1025px) {
    .image-gallery .gallery-img:nth-child(2),
    .image-gallery .gallery-img:nth-child(3) {
        display: block;
    }
}

/* Mobile Ankauf-Bildergalerie - Nur das erste Bild anzeigen */
@media (max-width: 1024px) {
    .ankauf-images-new .ankauf-img:nth-child(2),
    .ankauf-images-new .ankauf-img:nth-child(3) {
        display: none;
    }
}

/* Desktop Ankauf-Bildergalerie - Alle 3 Bilder anzeigen */
@media (min-width: 1025px) {
    .ankauf-images-new .ankauf-img:nth-child(2),
    .ankauf-images-new .ankauf-img:nth-child(3) {
        display: block;
    }
} 