/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 6px;
    background: #2d1b69;
}

.sound-waves {
    display: flex;
    gap: 3px;
    align-items: center;
}

.wave {
    width: 4px;
    height: 20px;
    background: #ffffff;
    border-radius: 2px;
    animation: wave 1.5s ease-in-out infinite;
}

.wave:nth-child(2) {
    animation-delay: 0.2s;
}

.wave:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes wave {
    0%, 100% { height: 20px; }
    50% { height: 8px; }
}

.wave:nth-child(2) {
    animation-delay: 0.2s;
}

.wave:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes wave {
    0%, 100% { height: 20px; }
    50% { height: 8px; }
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: lowercase;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #cccccc;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6b35;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
    line-height: 1.2;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #1a1a1a;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 0 20px;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.hero-text {
    text-align: left;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo-image {
    max-width: 300px;
    height: auto;
    display: block;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 30px;
    color: #ffffff;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #cccccc;
    letter-spacing: 1px;
    line-height: 1.6;
}

.hero-blurb {
    font-size: 1rem;
    font-weight: 700;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid #ffffff;
}

.btn-primary:hover {
    background: transparent;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-showcase {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-vinyl {
    position: relative;
    z-index: 3;
}

.vinyl-record {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2d1b69, #4a2c7a);
    border: 3px solid #1a1a1a;
    position: relative;
    transform: rotate(-15deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-label {
    text-align: center;
    color: #ffffff;
}

.artist-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.album-title {
    display: block;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
}

.album-covers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.album-cover {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transform: rotate(5deg);
    transition: transform 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.album-cover:hover {
    transform: rotate(0deg) scale(1.05);
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-1 {
    top: 10%;
    left: 10%;
    transform: rotate(-10deg);
}

.album-2 {
    top: 20%;
    right: 15%;
    transform: rotate(15deg);
}

.album-3 {
    bottom: 15%;
    left: 20%;
    transform: rotate(-5deg);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 4px;
    color: #1a1a1a;
}

/* Featured Artists */
.featured-artists {
    background: #f8f9fa;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.artist-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.artist-image {
    position: relative;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-image img {
    transform: scale(1.1);
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.play-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.play-btn.large {
    width: 80px;
    height: 80px;
    font-size: 24px;
}

.artist-info {
    padding: 20px;
    text-align: center;
}

.artist-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.artist-info p {
    color: #666666;
    font-size: 0.9rem;
}

/* Latest Releases */
.latest-releases {
    background: #ffffff;
    padding: 120px 0;
}

.releases-header {
    text-align: left;
    margin-bottom: 60px;
}

.releases-header .section-title {
    text-align: left;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: #666666;
    font-weight: 300;
}

.releases-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.releases-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.release-card.featured {
    grid-row: span 2;
}

.release-card.featured .release-image img {
    height: 600px;
}

.releases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.release-card {
    background: #ffffff;
    border-radius: 0;
    overflow: visible;
    transition: transform 0.3s ease;
    position: relative;
    min-width: 280px;
}

.release-card:hover {
    transform: translateY(-5px);
}

.pre-order-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #1a1a1a;
    color: #ffffff;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
}

.release-image {
    position: relative;
    overflow: visible;
    margin-bottom: 20px;
}

.release-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.release-card:hover .release-image img {
    transform: scale(1.02);
}

.vinyl-preview {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.vinyl-mini {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 2px solid #ffffff;
    position: relative;
}

.vinyl-mini.colored {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.vinyl-mini::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}

.release-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.release-card:hover .release-overlay {
    opacity: 1;
}

.release-info {
    padding: 0;
}

.release-info h3, .release-info h4 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.release-info p {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 300;
}

.price {
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
}

/* Videos Section */
.videos-section {
    background: #f8f9fa;
}

.videos-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.video-card.featured-video .video-thumbnail img {
    height: 400px;
}

.video-card.small .video-thumbnail img {
    height: 150px;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.video-thumbnail img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.video-info {
    padding: 20px 0;
}

.video-info h3, .video-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.video-info p {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.video-date {
    color: #666666;
    font-size: 0.8rem;
}

.videos-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Live Events */
.live-events {
    background: #f5f5f7;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.event-date {
    text-align: center;
    min-width: 80px;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #86868b;
    letter-spacing: 1px;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1d1d1f;
}

.event-info {
    flex: 1;
}

.event-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.event-info p {
    color: #86868b;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.event-time {
    color: #86868b;
    font-size: 0.8rem;
}

.btn-ticket {
    padding: 10px 20px;
    border: 2px solid #007aff;
    background: transparent;
    color: #007aff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 8px;
}

.btn-ticket:hover {
    background: #007aff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

/* Shop Section */
.shop-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    overflow: hidden;
    background: #f8f9fa;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
}

.product-card:hover .product-image img {
    transform: scale(1.02);
    opacity: 1 !important;
    visibility: visible !important;
}

/* Prevent any fade effects on shop images */
.shop-section .product-image img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transition: transform 0.3s ease !important;
}

.shop-section .product-image img:hover {
    opacity: 1 !important;
    visibility: visible !important;
}

.product-info {
    padding: 20px;
    text-align: left;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.product-info p {
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 12px;
    color: #666666;
    line-height: 1.4;
}

.add-to-cart {
    width: 100%;
    padding: 15px 24px;
    border: 2px solid #1a1a1a;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.15);
}

.add-to-cart:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 26, 26, 0.25);
}

/* Newsletter */
.newsletter {
    background: #1a1a1a;
    text-align: center;
    color: #ffffff;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.newsletter-content p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 1px solid #666666;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 14px;
    border-radius: 0;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ffffff;
}

.newsletter-form button {
    padding: 15px 30px;
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 0;
}

.newsletter-form button:hover {
    background: transparent;
    color: #ffffff;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 60px 0 30px;
    border-top: 1px solid #333333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #fff;
}

.footer-column a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    color: #cccccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        gap: 20px;
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .vinyl-showcase {
        height: 400px;
    }

    .vinyl-record {
        width: 250px;
        height: 250px;
    }

    .album-cover {
        width: 120px;
        height: 120px;
    }


    .section-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .releases-container {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .artists-grid,
    .shop-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #999999;
}

/* Cart Section */
.cart-section {
    background: #f8f9fa;
    padding: 120px 0;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.cart-items {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.item-details p {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #1a1a1a;
    background: transparent;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.quantity-btn:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.quantity {
    font-size: 1rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.item-price {
    text-align: right;
}

.item-price .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
    margin-bottom: 10px;
}

.remove-btn {
    background: transparent;
    border: none;
    color: #dc3545;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.remove-btn:hover {
    color: #c82333;
}

.cart-summary {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.summary-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.summary-row.total {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 0;
    margin-top: 20px;
}

.checkout-btn:hover {
    background: #333333;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #666666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.continue-shopping:hover {
    color: #1a1a1a;
}

/* Social Media Sidebar */
.social-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-sidebar a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: relative;
}

.social-sidebar a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social-sidebar a:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Preview Button (Desktop Only) */
.mobile-preview-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #2d1b69;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(45, 27, 105, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
}

.mobile-preview-btn:hover {
    background: #4a2c7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 27, 105, 0.4);
}

.mobile-preview-btn i {
    font-size: 16px;
}

/* Mobile Preview Mode (Desktop) */
body.mobile-preview {
    max-width: 375px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    min-height: 100vh;
    position: relative;
    background: #1a1a1a;
    overflow-x: hidden;
}

body.mobile-preview .container {
    max-width: 100%;
    padding: 0 15px;
}

body.mobile-preview * {
    box-sizing: border-box;
}

body.mobile-preview .hero {
    padding: 100px 0 20px;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #1a1a1a;
}

body.mobile-preview .hero-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

body.mobile-preview .hero-main {
    order: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.mobile-preview .hero-visual {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

body.mobile-preview .hero-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

body.mobile-preview .hero-logo-image {
    max-width: 120px;
    height: auto;
}

body.mobile-preview .hero-blurb {
    font-size: 0.9rem;
    margin-bottom: 30px;
    max-width: 280px;
    line-height: 1.5;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
    word-spacing: 0.1em;
    letter-spacing: 0.5px;
}

body.mobile-preview .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

body.mobile-preview .btn-primary {
    display: none; /* Hide DISCOVER ARTISTS button */
}

body.mobile-preview .btn-secondary {
    width: 100%;
    max-width: 250px;
    padding: 15px 20px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}


body.mobile-preview .vinyl-showcase {
    display: none;
}

body.mobile-preview .vinyl-record {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2d1b69, #4a2c7a);
    border: 3px solid #1a1a1a;
    position: relative;
    animation: spin 20s linear infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

body.mobile-preview .vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.mobile-preview .vinyl-label {
    display: none; /* Hide SO FLY text */
}

body.mobile-preview .album-covers {
    display: none;
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

body.mobile-preview .social-sidebar {
    display: none;
}

body.mobile-preview .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

body.mobile-preview .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

body.mobile-preview .nav-menu.active {
    display: flex;
}

body.mobile-preview .nav-toggle {
    display: flex;
}

body.mobile-preview .nav-container {
    padding: 0 15px;
    position: relative;
}

body.mobile-preview .footer {
    padding: 50px 0 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 1px solid #333;
}

body.mobile-preview .footer-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    align-items: center;
}

body.mobile-preview .footer-logo {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(45, 27, 105, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(45, 27, 105, 0.3);
}

body.mobile-preview .footer-logo .logo-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
}

body.mobile-preview .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}

body.mobile-preview .footer-links .footer-column:first-child,
body.mobile-preview .footer-links .footer-column:nth-child(2) {
    display: inline-block;
    margin: 0 20px;
}

body.mobile-preview .footer-links .footer-column:first-child {
    margin-right: 40px;
}

body.mobile-preview .footer-column {
    text-align: center;
    margin-bottom: 25px;
}

body.mobile-preview .footer-column h4 {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
}

body.mobile-preview .footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #2d1b69;
    border-radius: 1px;
}

body.mobile-preview .footer-column a {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
}

body.mobile-preview .footer-column a:hover {
    color: #2d1b69;
    transform: translateX(5px);
}

body.mobile-preview .social-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding: 25px;
    background: rgba(45, 27, 105, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(45, 27, 105, 0.2);
}

body.mobile-preview .footer-logo {
    order: 2;
    margin-top: 40px;
    margin-bottom: 20px;
}

body.mobile-preview .footer-column:last-child {
    order: 3;
}

body.mobile-preview .footer-logo .logo-icon {
    background: #2d1b69;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 6px;
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

body.mobile-preview .footer-logo .logo-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: lowercase;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

body.mobile-preview .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

body.mobile-preview .social-link:hover {
    background: #2d1b69;
    border-color: #2d1b69;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(45, 27, 105, 0.4);
}

body.mobile-preview .footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.mobile-preview .footer-bottom p {
    font-size: 13px;
    color: #999999;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Desktop Footer Layout - Switch positions */
@media (min-width: 769px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
        margin: 0 auto;
    }
    
    .footer-links .footer-column:first-child,
    .footer-links .footer-column:nth-child(2) {
        display: inline-block;
        margin: 0 20px;
    }
    
    .footer-links .footer-column:first-child {
        margin-right: 40px;
    }
    
    .footer-logo {
        order: 3;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    
    .footer-column:last-child {
        order: 2;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Account for fixed navigation */
    }
    
    .social-sidebar {
        display: none;
    }
    
    .mobile-preview-btn {
        display: none;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 15px;
        position: relative;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a1a1a;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero Section - Mobile Redesign */
    .hero {
        padding: 40px 0 20px;
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .hero-main {
        order: 1;
        width: 100%;
    }
    
    .hero-visual {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    
    .hero-logo {
        margin-bottom: 15px;
        display: flex;
        justify-content: center;
    }
    
    .hero-logo-image {
        max-width: 120px;
        height: auto;
    }
    
    .hero-blurb {
        font-size: 0.85rem;
        margin-bottom: 25px;
        max-width: 100%;
        line-height: 1.4;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    /* Hide DISCOVER ARTISTS button on mobile */
    .btn-primary {
        display: none;
    }
    
    
    /* Vinyl Showcase - Hidden on Mobile */
    .vinyl-showcase {
        display: none;
        position: relative;
    }
    
    .vinyl-record {
        width: 180px;
        height: 180px;
        position: relative;
        z-index: 2;
    }
    
    .album-covers {
        display: none; /* Hide album covers on mobile for cleaner look */
    }
    
    /* Featured Artists */
    .featured-artists {
        padding: 60px 0;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .artist-card {
        max-width: 100%;
    }
    
    .artist-image {
        height: 250px;
    }
    
    /* Shop Section */
    .shop-section {
        padding: 60px 0;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Cart Section */
    .cart-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .item-image {
        width: 100%;
        height: 200px;
        margin: 0 auto;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
}

