/* --- 1. CSS Reset & Basic Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* NEW: Smooth Scrolling & Base Font Size */
html {
    font-size: 120%;
    scroll-behavior: smooth;
}

/* --- 2. Variables (Rag and Bone Color Palette) --- */
:root {
    --color-background: #F5F1E9;  /* Warm cream/off-white */
    --color-text: #1a1a1a;        /* Deep black */
    --color-primary: #C41E3A;     /* Logo red */
    --color-secondary: #0A9AA3;   /* Logo teal/blue */
    --color-accent: #FFFFFF;      /* Pure white */
    --color-dark: #000000;        /* True black */
    --color-warm-white: #FFF5E6;  /* Warm white for cozy feel */
    
    /* Fonts */
    --font-heading: 'Kaushan Script', cursive;
    --font-body: 'Montserrat', sans-serif;
    --font-display: 'Bebas Neue', sans-serif;
    --font-retro: 'Righteous', cursive;
    --font-funky: 'Bungee', cursive;

    /* NEW: Card width variable */
    --record-card-width: 250px;
}

/* --- 3. General Body & Typography Styling with VHS Effect --- */
body {
    font-family: var(--font-body);
    background: #1a1a1a;
    color: var(--color-text);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* VHS Scan Lines Effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.075) 0px, 
        transparent 1px,
        transparent 2px,
        rgba(0, 0, 0, 0.075) 3px
    );
    animation: vhs-scan 0.3s linear infinite;
}

@keyframes vhs-scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* Subtle Film Grain */
body::after {
    content: "";
    position: fixed;
    top: -5%; 
    left: -5%; 
    width: 110%; 
    height: 110%; 
    z-index: -1;
    pointer-events: none;
    opacity: 0.01;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    animation: grain 0.5s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -1%); }
    20% { transform: translate(1%, 1%); }
    30% { transform: translate(-1%, 1%); }
    40% { transform: translate(1%, -1%); }
    50% { transform: translate(-1%, 0); }
    60% { transform: translate(1%, 0); }
    70% { transform: translate(0, -1%); }
    80% { transform: translate(0, 1%); }
    90% { transform: translate(-1%, -1%); }
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-family: var(--font-funky);
    font-size: 3.5rem;
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 
        3px 3px 0px rgba(0,0,0,0.5),
        -1px -1px 0px rgba(255,255,255,0.1),
        0 0 20px rgba(196, 30, 58, 0.4);
    letter-spacing: 2px;
}

h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.3),
        0 0 15px rgba(10, 154, 163, 0.3);
}

h3 {
    font-family: var(--font-retro);
    color: var(--color-text);
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 12px;
}

p {
    margin-bottom: 15px;
    font-family: var(--font-body);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* NEW: Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    z-index: 9999;
    font-family: var(--font-retro);
    text-decoration: none;
    border-radius: 0 0 8px 0;
    transition: top 0.3s ease;
}
.skip-link:focus {
    top: 0;
}

/* --- 4. Header & Navigation Styling --- */
.site-header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 4px solid var(--color-primary);
    padding: 20px 0;
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.5),
        0 0 30px rgba(196, 30, 58, 0.2);
    position: relative;
    z-index: 900;
}

.site-header::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.6);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(10, 154, 163, 0.5));
}

.logo-text {
    height: auto;
    max-height: 50px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(196, 30, 58, 0.4));
}

.site-header .logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 20px;
    background: linear-gradient(45deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 10px;
    border: 3px solid var(--color-secondary);
    box-shadow: 
        0 0 20px rgba(10, 154, 163, 0.3),
        inset 0 0 20px rgba(10, 154, 163, 0.05);
}

.site-header .logo a:hover {
    text-decoration: none;
    transform: scale(1.05) rotate(-1deg);
    border-color: var(--color-primary);
    box-shadow: 
        0 0 25px rgba(196, 30, 58, 0.5),
        inset 0 0 20px rgba(196, 30, 58, 0.1);
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    font-family: var(--font-display);
    text-decoration: none;
    font-weight: 400;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-warm-white);
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(196, 30, 58, 0.6);
}

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

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-primary);
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(196, 30, 58, 0.6);
}

/* --- 5. Hero Section with VHS Effect --- */
.hero {
    background-color: #000000; 
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(26, 26, 26, 0.7)), 
        url('https://images.unsplash.com/photo-1547847785-0841b0501f37?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center 30%;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--color-secondary);
    z-index: 10;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(196, 30, 58, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(10, 154, 163, 0.1) 0%, transparent 50%);
    animation: aberration 3s ease-in-out infinite alternate;
}

@keyframes aberration {
    0% { transform: translate(0, 0); }
    100% { transform: translate(2px, -2px); }
}

.hero h1 {
    color: var(--color-warm-white);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 
        3px 3px 0px rgba(196, 30, 58, 0.6),
        -2px -2px 0px rgba(10, 154, 163, 0.4),
        0 0 30px rgba(196, 30, 58, 0.5);
}

.hero p {
    font-family: var(--font-retro);
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--color-warm-white);
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.7),
        0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

/* Button styles */
.btn {
    font-family: var(--font-display);
    display: inline-block;
    background: linear-gradient(45deg, var(--color-primary), #E02B4A);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 
        0 5px 15px rgba(196, 30, 58, 0.5),
        0 0 20px rgba(196, 30, 58, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(196, 30, 58, 0.7),
        0 0 30px rgba(196, 30, 58, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

/* NEW: Better focus visibility for buttons */
.btn:focus-visible,
.filter-tag-btn:focus-visible,
.format-btn:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
}

/* --- 6. New Arrivals Section --- */
.new-arrivals {
    padding: 60px 0;
    text-align: center;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(26, 26, 26, 0.85) 100%);
    position: relative;
    border-bottom: 3px solid var(--color-primary);
    z-index: 10;
}

.new-arrivals::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: -1;
    background-image: 
        repeating-linear-gradient(
            0deg,
            var(--color-secondary) 0px,
            transparent 1px,
            transparent 20px,
            var(--color-secondary) 21px
        ),
        repeating-linear-gradient(
            90deg,
            var(--color-secondary) 0px,
            transparent 1px,
            transparent 20px,
            var(--color-secondary) 21px
        );
}

.new-arrivals h2 {
    color: var(--color-warm-white);
    text-shadow: 
        3px 3px 6px rgba(0,0,0,0.5),
        0 0 20px rgba(196, 30, 58, 0.4);
}

.new-arrivals > .container > p {
    font-family: var(--font-retro);
    font-size: 1.2rem;
    color: var(--color-warm-white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.arrivals-grid {
    display: flex;          
    flex-wrap: wrap;        
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: left;
}

/* NEW: Enhanced Loading State */
.loading-container {
    text-align: center;
    width: 100%;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 2px dashed var(--color-secondary);
}

.loading-container p {
    margin-top: 20px;
    font-family: var(--font-retro);
    color: var(--color-warm-white);
    font-size: 1.1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    animation: loading-pulse 1.5s ease-in-out infinite;
}

@keyframes loading-pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* --- 7. Polaroid-Style Cards --- */
.arrival-item {
    width: var(--record-card-width);
    background: linear-gradient(135deg, rgba(245, 241, 233, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
    padding: 15px 15px 20px 15px;
    border: 3px solid var(--color-dark);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(196, 30, 58, 0.2),
        inset 0 0 30px rgba(10, 154, 163, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.arrival-item:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(10, 154, 163, 0.4),
        inset 0 0 40px rgba(196, 30, 58, 0.1);
}

/* --- 8. Vinyl Disc Hover Effect --- */
.album-cover-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: visible;
    border-bottom: 3px solid var(--color-secondary);
}

.album-cover {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    filter: sepia(0.1) saturate(1.1) brightness(1.05) contrast(1.1);
    transition: filter 0.6s ease, transform 0.8s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.arrival-item:hover .album-cover {
    filter: blur(3px) brightness(0.3) sepia(0.2);
    transform: scale(1.02);
}

.vinyl-disc {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    overflow: hidden;
    opacity: 0;
    transition: width 0.6s ease, height 0.6s ease, opacity 0.4s ease;
    background: radial-gradient(
        circle at center,
        #0a0a0a 0%,
        #1a1a1a 30%,
        #0a0a0a 31%,
        #1a1a1a 32%,
        #0a0a0a 33%,
        #1a1a1a 40%,
        #0a0a0a 41%,
        #1a1a1a 42%,
        #0a0a0a 43%,
        #1a1a1a 50%,
        #0a0a0a 51%,
        #1a1a1a 52%,
        #0a0a0a 53%,
        #000 100%
    );
    box-shadow: 
        0 0 25px rgba(0,0,0,0.7),
        inset 0 0 30px rgba(255,255,255,0.05),
        0 0 40px rgba(196, 30, 58, 0.3);
}

.disc-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45%;
    height: 45%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.9;
}

.arrival-item:hover .vinyl-disc {
    width: 90%;
    height: 90%;
    opacity: 1;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.arrival-item h3.item-artist { 
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-top: 15px; 
    font-weight: 400;
    text-align: center;
    padding: 0 5px;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.arrival-item p.item-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 0;
    margin-top: 5px; 
    font-weight: 400;
    text-align: center;
    padding: 0 5px;
}

.item-format,
.item-year {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-style: italic;
    color: #888;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 0;
    padding: 0 5px;
}

.item-year + .item-format {
    margin-top: 4px;
}

.item-price { 
    font-family: var(--font-retro); 
    font-size: 1.2rem; 
    font-weight: bold; 
    color: var(--color-primary); 
    text-align: center; 
    margin-top: 12px; 
}

/* NEW: Styles for Sale Pricing */
.price-original {
    text-decoration: line-through;
    color: #888; /* Grey */
    font-size: 0.9em;
    margin-right: 10px;
    font-weight: normal;
}

.price-active {
    color: var(--color-primary); /* Red */
    font-weight: bold;
}

.btn-secondary {
    background: linear-gradient(45deg, var(--color-secondary), #0BB5BF);
    box-shadow: 
        0 5px 15px rgba(10, 154, 163, 0.5),
        0 0 20px rgba(10, 154, 163, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(10, 154, 163, 0.7),
        0 0 30px rgba(10, 154, 163, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

/* --- 9. Footer Styling --- */
.site-footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--color-warm-white);
    padding: 40px 0;
    margin-top: 40px;
    border-top: 4px solid var(--color-primary);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 -5px 20px rgba(0,0,0,0.5),
        inset 0 0 50px rgba(196, 30, 58, 0.05);
    z-index: 10;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: -1;
    background-image: 
        repeating-linear-gradient(
            90deg,
            var(--color-secondary),
            var(--color-secondary) 1px,
            transparent 1px,
            transparent 50px
        ),
        repeating-linear-gradient(
            0deg,
            var(--color-secondary),
            var(--color-secondary) 1px,
            transparent 1px,
            transparent 50px
        );
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.footer-info p {
    font-family: var(--font-body);
}

.footer-info p strong {
    font-family: var(--font-retro);
    font-size: 1.2rem;
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(196, 30, 58, 0.4);
}

/* NEW: Footer Link Hover Effects */
.footer-info a {
    position: relative;
    display: inline-block;
    color: var(--color-warm-white); /* Ensure color is set */
    text-decoration: none; /* Remove default underline */
}

.footer-info a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.footer-info a:hover::after {
    width: 100%;
}

.site-footer a {
    color: var(--color-warm-white);
    margin-left: 15px;
    transition: all 0.3s ease;
}

.site-footer a:hover {
    color: var(--color-primary);
    text-shadow: 0 0 15px rgba(196, 30, 58, 0.6);
}

/* --- 10. Page Header --- */
.page-header {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a1a1a 100%);
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--color-secondary);
    box-shadow: inset 0 0 100px rgba(196, 30, 58, 0.1);
    z-index: 10;
}

.page-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-primary));
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.6);
}

.page-header h1 {
    color: var(--color-warm-white);
    margin-bottom: 0;
}

.page-content {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 10;
    position: relative;
}

/* --- 11. Reusable Split Layout --- */
.split-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.split-layout > * {
    flex-basis: 100%;
}

@media (min-width: 768px) {
    .split-layout > * {
        flex-basis: calc(50% - 20px);
    }
}

/* --- 12. About Page Specifics --- */
.about-layout .split-layout-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 4px solid var(--color-secondary);
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.5),
        0 0 30px rgba(10, 154, 163, 0.3),
        inset 0 0 30px rgba(0,0,0,0.2);
    filter: sepia(0.1) saturate(1.15) brightness(1.05) contrast(1.1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.about-layout .split-layout-image:hover img {
    filter: none;
    transform: scale(1.02);
    border-color: var(--color-primary);
}

.about-layout .split-layout-text {
    background: rgba(245, 241, 233, 0.98);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 
        0 5px 20px rgba(0,0,0,0.5),
        0 0 25px rgba(10, 154, 163, 0.2);
    border: 3px solid var(--color-secondary);
}

.about-layout .split-layout-text h2 {
    font-family: var(--font-display);
    text-align: left;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.about-layout .split-layout-text h3 {
    font-family: var(--font-retro);
    color: var(--color-secondary);
    border-bottom: 3px solid var(--color-primary);
    padding-bottom: 5px;
    display: inline-block;
}

/* --- 13. Services Page Specifics --- */
.service-section {
    margin-bottom: 50px;
}

.service-section h2 {
    text-align: left;
    margin-bottom: 20px;
    color: var(--color-warm-white);
}

.service-section-intro {
    background: rgba(245, 241, 233, 0.98);
    padding: 20px;
    border-radius: 12px;
    border: 3px solid var(--color-secondary);
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.5),
        0 0 25px rgba(10, 154, 163, 0.2);
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 30px;
}

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

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
}


.product-item {
    background: rgba(245, 241, 233, 0.98);
    padding: 25px;
    border-radius: 12px;
    border: 3px solid var(--color-secondary);
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.5),
        0 0 25px rgba(10, 154, 163, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.6),
        0 0 35px rgba(196, 30, 58, 0.3);
    border-color: var(--color-primary);
}

.product-item h3 {
    font-family: var(--font-retro);
    color: var(--color-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.product-item h3 i {
    color: var(--color-secondary);
    font-size: 1.8rem;
    margin-right: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    width: 30px;
    text-align: center;
}

.section-divider {
    border: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.4), 0 0 15px rgba(10, 154, 163, 0.4);
    margin: 60px auto;
    width: 80%;
    border-radius: 2px;
}

.service-policies .split-layout-text {
    background: rgba(245, 241, 233, 0.98);
    padding: 30px;
    border-radius: 12px;
    border: 3px solid var(--color-secondary);
    box-shadow: 
        0 5px 20px rgba(0,0,0,0.5),
        0 0 25px rgba(10, 154, 163, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-policies .split-layout-text:hover {
    transform: scale(1.02);
    border-color: var(--color-primary);
    box-shadow: 
        0 8px 30px rgba(0,0,0,0.6),
        0 0 40px rgba(196, 30, 58, 0.3);
}

.service-policies .split-layout-text h3 {
    font-family: var(--font-display);
    color: var(--color-primary);
    font-size: 2.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border: none;
    padding-bottom: 0;
    line-height: 1.2;
}

.service-policies .split-layout-text h3 i {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-right: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.service-policies .intro-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-dark);
}

.phone-link {
    font-family: var(--font-retro);
    font-size: 1.1rem;
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 2px dashed var(--color-primary);
    transition: all 0.3s ease;
}
.phone-link:hover {
    color: #fff;
    background: var(--color-primary);
    text-decoration: none;
    padding: 2px 6px;
    border-radius: 4px;
}


/* --- 14. Contact Page Specifics --- */
.contact-info {
    background: rgba(245, 241, 233, 0.98);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 
        0 5px 20px rgba(0,0,0,0.5),
        0 0 25px rgba(10, 154, 163, 0.2);
    border: 3px solid var(--color-secondary);
}

.contact-info h2 {
    font-family: var(--font-display);
    text-align: left;
    color: var(--color-primary);
}

.contact-info h3 {
    font-family: var(--font-retro);
    font-size: 1.3rem;
    color: var(--color-secondary);
    margin-top: 20px;
    margin-bottom: 8px;
    border-bottom: 3px solid var(--color-primary);
    padding-bottom: 5px;
    display: inline-block;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    border: 4px solid var(--color-secondary);
    box-shadow: 
        0 5px 20px rgba(0,0,0,0.5),
        0 0 30px rgba(10, 154, 163, 0.3);
}

.contact-image {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    border: 4px solid var(--color-secondary);
    box-shadow: 
        0 5px 20px rgba(0,0,0,0.5),
        0 0 30px rgba(10, 154, 163, 0.3);
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-media-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
}


/* --- 15. Footer Social Icon Styling --- */
.footer-social a {
    font-size: 2rem;
    margin-left: 20px;
    color: var(--color-warm-white);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-social a:hover {
    color: var(--color-primary);
    text-decoration: none;
    transform: translateY(-3px) scale(1.2);
    text-shadow: 0 0 15px rgba(196, 30, 58, 0.6);
}

.discogs-logo {
    height: 1.8rem;
    width: auto;
    filter: brightness(0) saturate(100%) invert(100%);
    transition: filter 0.3s ease;
}

.footer-social a:hover .discogs-logo {
    filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(1789%) hue-rotate(336deg) brightness(85%) contrast(92%);
}

/* --- 16. Mobile Navigation (UPDATED) --- */
.nav-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--color-secondary);
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-warm-white);
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.4);
}

@media (max-width: 768px) {
    .site-header .container {
        flex-wrap: wrap;
    }

    .main-nav {
        flex-basis: 100%;
        order: 3;
        position: relative;
    }

    /* UPDATED: Improved Animation */
    .main-nav ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
        position: absolute;
        top: 20px;
        left: 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.7);
        z-index: 1000;
        border-top: 2px solid var(--color-secondary);
        border-radius: 0 0 12px 12px;
        
        /* New transition properties */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }
    
    .main-nav.nav-open ul {
        max-height: 500px; /* Arbitrary large height */
        padding: 10px 0;
    }

    .main-nav li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid rgba(10, 154, 163, 0.2);
    }
    
    .main-nav a {
        display: block;
        padding: 1.2rem 1rem;
    }
    
    .main-nav a::after {
        display: none;
    }
    
    .main-nav a:hover,
    .main-nav a.active {
        background: rgba(196, 30, 58, 0.1);
        transform: none;
    }

    .nav-toggle {
        display: block;
    }

    .logo-img {
        height: 45px;
    }
    
    .logo-text {
        max-height: 35px;
    }
}

@media (max-width: 600px) {
    .site-footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        margin-top: 25px;
    }
    
    .footer-social a {
        margin: 0 15px;
    }
}

/* --- 17. Badges & Stickers --- */
.record-tag {
    position: absolute;
    font-family: var(--font-funky);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 
        0 3px 10px rgba(0,0,0,0.4),
        inset 0 -2px 5px rgba(0,0,0,0.3);
    z-index: 5;
    padding: 8px 15px;
    text-transform: uppercase;
    transform: translateZ(0);
    top: -10px;
    right: 10px;
    transform: rotate(15deg);
    text-shadow: 
        -1px -1px 0 rgba(0,0,0,0.3), 
        1px -1px 0 rgba(0,0,0,0.3), 
        -1px 1px 0 rgba(0,0,0,0.3), 
        1px 1px 0 rgba(0,0,0,0.3),
        0 0 10px rgba(0,0,0,0.5);
}

/* Catalogue Status Tag */
.item-status-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-family: var(--font-funky);
    font-size: 0.85rem;
    font-weight: bold;
    color: #fff;
    background-color: var(--color-secondary);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 5;
}

.item-status-tag.sale,
.item-status-tag.on-sale {
    background-color: var(--color-primary);
}
.item-status-tag.new,
.item-status-tag.new-arrival {
    background-color: #33a30a;
}
.item-status-tag.sold,
.item-status-tag.sold-out,
.item-status-tag.out-of-stock {
    background-color: #555;
    text-decoration: line-through;
}

.arrival-item.out-of-stock .album-cover {
    filter: grayscale(100%);
    opacity: 0.6;
}
.arrival-item.out-of-stock:hover .album-cover {
    filter: grayscale(100%);
    opacity: 0.6;
}

/* --- 18. Vintage Carousel Styles --- */
.vintage-carousel-section {
    margin-bottom: 80px;
}

.carousel-title {
    font-family: var(--font-funky);
    color: var(--color-warm-white);
    text-shadow: 
        3px 3px 6px rgba(0,0,0,0.5),
        0 0 20px rgba(196, 30, 58, 0.3);
    margin-bottom: 40px;
}

.vintage-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 80px;
}

.carousel-frame {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
        inset 0 0 50px rgba(0,0,0,0.8),
        0 10px 40px rgba(0,0,0,0.7),
        0 0 0 8px var(--color-secondary),
        0 0 0 12px var(--color-dark),
        0 0 30px rgba(10, 154, 163, 0.3);
    overflow: visible; 
}

.carousel-track {
    position: relative;
    width: 100%;
    min-height: 300px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    transition: height 0.8s ease;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    filter: sepia(0.05) saturate(1.1) brightness(1.05);
    pointer-events: none; 
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* VHS TV static effect */
.tv-static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.08;
    z-index: 10;
    border-radius: 10px;
    background-image: 
        repeating-linear-gradient(
            0deg,
            rgba(255,255,255,0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(255,255,255,0.03) 3px
        );
    animation: static-flicker 0.5s infinite;
}

@keyframes static-flicker {
    0%, 100% { opacity: 0.08; }
    50% { opacity: 0.12; }
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--color-primary), #E02B4A);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.5),
        0 0 20px rgba(196, 30, 58, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.carousel-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 
        0 6px 20px rgba(0,0,0,0.6),
        0 0 30px rgba(196, 30, 58, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px; 
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.indicator {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3); 
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.indicator.active {
    background: rgba(255, 255, 255, 1); 
    transform: scale(1.4);
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 0.6), 
        0 2px 8px rgba(0,0,0,0.5);
}

.indicator:hover {
    background: var(--color-primary);
    transform: scale(1.2);
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.6);
}

.carousel-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--color-secondary);
    opacity: 0.2;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(10, 154, 163, 0.4);
}

.carousel-decoration span {
    display: block;
    margin: 20px 0;
    animation: pulse-glow 2s infinite ease-in-out;
}

.carousel-decoration span:nth-child(2) {
    animation-delay: 0.5s;
}

.carousel-decoration span:nth-child(3) {
    animation-delay: 1s;
}

.carousel-decoration-left {
    left: -80px;
}

.carousel-decoration-right {
    right: -80px;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
        text-shadow: 0 0 10px rgba(10, 154, 163, 0.4);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.2);
        text-shadow: 0 0 20px rgba(196, 30, 58, 0.6);
    }
}

@media (max-width: 768px) {
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-decoration {
        display: none;
    }
    
    .carousel-indicators {
        bottom: 25px;
    }
}

/* --- 19. Loading Performance Enhancements --- */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* --- 20. Accessibility Improvements --- */
*:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* --- 13. Announcement Banner (UPDATED) --- */
.announcement-banner { 
    background: linear-gradient(135deg, var(--color-primary) 0%, #E02B4A 100%); 
    color: var(--color-warm-white); 
    padding: 8px 20px; /* Slightly reduced padding to accommodate 2 lines */
    text-align: center; 
    position: relative; 
    z-index: 800; 
    border-bottom: 3px solid var(--color-secondary); 
    display: none; 
    animation: announcement-glow 3s ease-in-out infinite; 
}
@keyframes announcement-glow { 0%, 100% { box-shadow: 0 4px 15px rgba(0,0,0,0.5); } 50% { box-shadow: 0 4px 20px rgba(0,0,0,0.6); } }

.announcement-banner.active { display: block; }

.announcement-content { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 15px; 
    max-width: 1100px; 
    margin: 0 auto; 
    position: relative; 
}

/* NEW: Wrapper to stack text and date */
.announcement-message-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.announcement-icon { font-size: 1.3rem; display: inline-block; margin-right: 15px; }
.announcement-icon-right { font-size: 1.3rem; display: inline-block; margin-left: 15px; transform: scaleX(-1); }

.announcement-text { 
    font-family: var(--font-retro); 
    font-size: 1.1rem; 
    font-weight: 600; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

/* NEW: Date Subtext Style */
.announcement-date {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 2px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8); /* Default fallback */
}

.announcement-close { 
    position: absolute; 
    right: 0; 
    background: transparent; 
    border: 2px solid rgba(255,255,255,0.3); 
    color: var(--color-warm-white); 
    width: 28px; 
    height: 28px; 
    border-radius: 50%; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.3s ease; 
}
.announcement-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }

@media (max-width: 768px) { 
    .announcement-content { padding: 0 40px; } 
    .announcement-text { font-size: 1rem; } 
}

/* UPDATED: Announcement Animations (Targeting Wrapper now) */
.announcement-banner.anim-scroll .announcement-content { justify-content: flex-start; overflow: hidden; }
.announcement-banner.anim-scroll .announcement-message-wrapper { 
    white-space: nowrap; 
    animation: scroll-horizontal 15s linear infinite; 
    padding-left: 100%; 
    /* For marquee, we might want them side-by-side or just scroll the stack */
    align-items: flex-start; 
}
@keyframes scroll-horizontal { 0% { transform: translateX(0); } 100% { transform: translateX(-200%); } }

.announcement-banner.anim-pulse .announcement-message-wrapper { animation: text-pulse 2s ease-in-out infinite; }
@keyframes text-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(0.98); } }

.announcement-banner.anim-blink .announcement-message-wrapper { animation: text-blink 1s step-end infinite; }
@keyframes text-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Speed Modifiers */
.announcement-banner.speed-slow .announcement-message-wrapper { animation-duration: 25s; }
.announcement-banner.speed-fast .announcement-message-wrapper { animation-duration: 8s; }

/* Emoji Animations (Unchanged) */
.emoji-anim-bounce .announcement-icon { animation: icon-bounce 1s infinite alternate ease-in-out; }
@keyframes icon-bounce { from { transform: translateY(0); } to { transform: translateY(-6px); } }

.emoji-anim-bounce .announcement-icon-right { animation: icon-bounce-right 1s infinite alternate ease-in-out; }
@keyframes icon-bounce-right { from { transform: scaleX(-1) translateY(0); } to { transform: scaleX(-1) translateY(-6px); } }

.emoji-anim-pulse .announcement-icon { animation: icon-pulse 1.5s infinite ease-in-out; }
@keyframes icon-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.25); } }

.emoji-anim-pulse .announcement-icon-right { animation: icon-pulse-right 1.5s infinite ease-in-out; }
@keyframes icon-pulse-right { 0%, 100% { transform: scaleX(-1) scale(1); } 50% { transform: scaleX(-1) scale(1.25); } }

.emoji-anim-spin .announcement-icon { animation: icon-spin 2s infinite linear; }
@keyframes icon-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.emoji-anim-spin .announcement-icon-right { animation: icon-spin-right 2s infinite linear; }
@keyframes icon-spin-right { from { transform: scaleX(-1) rotate(0deg); } to { transform: scaleX(-1) rotate(-360deg); } }


/* --- 22. Image Lightbox --- */
.lightbox-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-backdrop.visible {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border: 4px solid var(--color-secondary);
    box-shadow: 0 0 50px rgba(10, 154, 163, 0.4);
    border-radius: 10px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.lightbox-content img.zoomed {
    transform: scale(1.5);
    cursor: zoom-out;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -20px;
    background: linear-gradient(45deg, var(--color-primary), #E02B4A);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
}

.lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.7);
}

.clickable-img {
    cursor: zoom-in;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .lightbox-content img.zoomed {
        transform: scale(1.2);
    }
}

/* --- Vinyl Spinner (Item 2) --- */
.loading-spinner {
    display: inline-block;
    width: 60px;
    height: 60px;
    margin: 40px auto;
    position: relative;
}

.loading-spinner::after {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    margin: 5px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        #0a0a0a 0%,
        #1a1a1a 30%,
        #0a0a0a 31%,
        #1a1a1a 40%,
        #0a0a0a 41%,
        #000 100%
    );
    box-shadow: 
        0 0 25px rgba(0,0,0,0.7),
        inset 0 0 20px rgba(196, 30, 58, 0.2);
    animation: spin 2s linear infinite;
}

.loading-spinner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    transform: translate(-50%, -50%);
    background: var(--color-primary);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 10px rgba(196, 30, 58, 0.6);
}

/* --- Now Playing Section --- */
.now-playing {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(10, 154, 163, 0.1) 100%);
    padding: 40px 0;
    border-bottom: 3px solid var(--color-primary);
    position: relative;
    z-index: 10;
}

.now-playing-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Turntable Animation */
.turntable-animation {
    width: 200px;
    height: 200px;
    position: relative;
}

.turntable-base {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.5),
        inset 0 0 20px rgba(0,0,0,0.3);
    position: relative;
    padding: 20px;
}

.spinning-record {
    width: 150px;
    height: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        #0a0a0a 0%,
        #1a1a1a 25%,
        #0a0a0a 26%,
        #1a1a1a 35%,
        #0a0a0a 36%,
        #000 100%
    );
    box-shadow: 
        0 5px 15px rgba(0,0,0,0.7),
        inset 0 0 20px rgba(255,255,255,0.05);
    animation: spin 6s linear infinite;
}

.spinning-record img {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    object-fit: cover;
    z-index: 5;
}

.record-center {
    width: 10px;
    height: 10px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.tonearm {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 120px;
    transform-origin: top right;
    animation: tonearm-sway 6s ease-in-out infinite;
    z-index: 15;
}

.tonearm-base {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: #silver;
    border-radius: 50%;
    background: linear-gradient(135deg, #888 0%, #555 100%);
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.tonearm-arm {
    position: absolute;
    top: 10px;
    right: 8px;
    width: 3px;
    height: 100px;
    background: linear-gradient(180deg, #888 0%, #555 100%);
    transform: rotate(-20deg);
    transform-origin: top;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

@keyframes tonearm-sway {
    0%, 100% { transform: rotate(30deg); }
    50% { transform: rotate(37deg); }
}

.turntable-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.knob {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #222 0%, #111 100%);
    border-radius: 50%;
    border: 2px solid #444;
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.knob-speed {
    top: 20px;
    left: 20px;
    animation: spin-knob 1.5s ease-in-out infinite alternate;
}

.knob-marker {
    width: 2px;
    height: 6px;
    background: #999;
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
}

@keyframes spin-knob {
    0% { transform: rotate(-25deg); }
    100% { transform: rotate(25deg); }
}

.knob-static-1, .knob-static-2 {
    background: #555; 
    border: 2px solid #333;
    width: 12px;
    height: 12px;
}
.knob-static-1 {
    bottom: 12px;
    left: 140px;
}
.knob-static-2 {
    bottom: 12px;
    left: 160px;
}

.buttons {
    position: absolute;
    bottom: 5px; 
    left: 5px;   
    display: flex;
    gap: 8px;
}

.button {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid #444;
    border-radius: 4px;
    box-shadow: 0 2px 3px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-play {
    width: 0;
    height: 0;
    background: none;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #888;
    transform: translateX(1px);
}

.btn-pause {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    display: flex;
    gap: 3px;
    justify-content: center;
    align-items: center;
}
.btn-pause::before,
.btn-pause::after {
    content: '';
    width: 3px;
    height: 10px;
    background: #888;
}

.btn-ff {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    display: flex;
    gap: 2px;
    align-items: center;
    justify-content: center;
}
.btn-ff::before,
.btn-ff::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #888;
}

.now-playing-info {
    text-align: center;
}

@keyframes spotlight-glow {
    0% { 
        color: var(--color-primary);
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 10px rgba(196, 30, 58, 0.5); 
    }
    50% { 
        color: #ff5473;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 25px rgba(196, 30, 58, 0.8), 0 0 5px rgba(255, 255, 255, 0.3);
    }
    100% { 
        color: var(--color-primary);
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 10px rgba(196, 30, 58, 0.5); 
    }
}

.now-playing-info h3 {
    font-family: var(--font-funky);
    color: var(--color-primary);
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: spotlight-glow 6s ease-in-out infinite;
}

.now-playing-artist {
    font-family: var(--font-retro);
    font-size: 1.4rem;
    color: var(--color-warm-white);
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.now-playing-album {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.now-playing-note {
    font-family: var(--font-body);
    color: var(--color-warm-white);
    font-style: italic;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .now-playing-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .turntable-animation {
        width: 150px;
        height: 150px;
    }
    
    .spinning-record {
        width: 110px;
        height: 110px;
    }
    
    .spinning-record img {
        width: 80px;
        height: 80px;
    }
    
    .tonearm {
        display: none;
    }
    
    .turntable-controls {
        display: none;
    }
}

/* --- Search and Filter Bar --- */
.search-filter-bar {
    margin-bottom: 30px;
    text-align: center;
}

.search-input {
    width: 100%;
    max-width: 500px;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-family: var(--font-body);
    background: rgba(245, 241, 233, 0.98);
    border: 3px solid var(--color-secondary);
    border-radius: 50px;
    box-shadow: 
        inset 0 2px 5px rgba(0,0,0,0.1),
        0 0 20px rgba(10, 154, 163, 0.2);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 
        inset 0 2px 5px rgba(0,0,0,0.1),
        0 0 25px rgba(196, 30, 58, 0.3);
    transform: scale(1.02);
}

.search-input::placeholder {
    color: #999;
    font-style: italic;
}

.filter-tags {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tag-btn {
    padding: 8px 16px;
    font-family: var(--font-retro);
    font-size: 0.9rem;
    background: rgba(245, 241, 233, 0.98);
    border: 2px solid var(--color-secondary);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.filter-tag-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.filter-tag-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 
        0 0 15px rgba(196, 30, 58, 0.4),
        0 4px 10px rgba(0,0,0,0.3);
}

.arrival-item.hidden {
    display: none;
}

.no-results {
    flex-basis: 100%; 
    text-align: center;
    padding: 40px;
    font-family: var(--font-retro);
    font-size: 1.2rem;
    color: var(--color-warm-white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* --- NEW: Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--color-primary), #E02B4A);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.7);
}

/* --- NEW: Print Styles --- */
@media print {
    .site-header,
    .site-footer,
    .back-to-top,
    .announcement-banner {
        display: none !important;
    }
    
    body {
        background: #fff;
        color: #000;
    }
    
    .contact-info {
        border: 1px solid #000;
        box-shadow: none;
    }
    
    .contact-map iframe {
        display: none;
    }
    
    .contact-map::after {
        content: "Visit: google.com/maps for directions";
        display: block;
        padding: 20px;
        text-align: center;
    }
}