* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #b91c1c;
    --primary-dark: #991b1b;
    --secondary: #f59e0b;
    --dark: #1e0a0a;
    --darker: #0f0505;
    --light: #fef3c7;
    --gray: #a78b7a;
    --gray-dark: #5c4b3a;
    --success: #059669;
    --error: #b91c1c;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
}

.nav-logo i {
    color: var(--secondary);
    font-size: 1.75rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    background: rgba(245, 158, 11, 0.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary);
    color: var(--darker);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(15, 5, 5, 0.8), rgba(15, 5, 5, 0.9)), url('images/hero-bg.jpg') center/cover;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.vinyl-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vinyl-spin {
    width: 400px;
    height: 400px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: spin 20s linear infinite;
    position: relative;
}

.vinyl-spin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--darker);
    border-radius: 50%;
    border: 2px solid var(--secondary);
}

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

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #b45309);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(185, 28, 28, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--gray-dark);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--gray);
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--gray);
    border-bottom: 2px solid var(--gray);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Background Sections */
.background-section {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.background-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.bg-section-1 {
    background-image: linear-gradient(rgba(15, 5, 5, 0.7), rgba(15, 5, 5, 0.7)), url('images/bg-1.jpg');
}

.bg-section-2 {
    background-image: linear-gradient(rgba(15, 5, 5, 0.7), rgba(15, 5, 5, 0.7)), url('images/bg-2.jpg');
}

.bg-section-3 {
    background-image: linear-gradient(rgba(15, 5, 5, 0.7), rgba(15, 5, 5, 0.7)), url('images/bg-3.jpg');
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(185, 28, 28, 0.2) 0%, 
        rgba(245, 158, 11, 0.1) 50%, 
        rgba(15, 5, 5, 0.4) 100%);
}

.bg-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 2rem;
}

.bg-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #fef3c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Collection Section */
.collection {
    padding: 6rem 0;
    background: var(--dark);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--light), var(--gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--gray-dark);
    color: var(--gray);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--light);
}

.records-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.record-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 158, 11, 0.1);
    backdrop-filter: blur(10px);
}

.record-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.record-image {
    height: 250px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.record-image i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 2;
    position: relative;
}

.record-info {
    padding: 1.5rem;
}

.record-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.record-artist {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.record-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.record-rarity {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.rarity-grail {
    background: linear-gradient(135deg, var(--secondary), #d97706);
    color: var(--darker);
}

.rarity-rare {
    background: linear-gradient(135deg, var(--primary), #b45309);
    color: var(--light);
}

.rarity-limited {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    color: var(--light);
}

.rarity-common {
    background: var(--gray-dark);
    color: var(--light);
}

.record-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.record-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-add-cart, .btn-details {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
}

.btn-add-cart:disabled {
    background: var(--gray-dark);
    cursor: not-allowed;
    transform: none;
}

.btn-details {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--gray-dark);
}

.btn-details:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--darker);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--light), var(--gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vinyl-stack {
    position: relative;
    width: 200px;
    height: 200px;
}

.vinyl {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 10px solid;
    background: conic-gradient(from 0deg, #000, #333, #666, #999, #666, #333, #000);
}

.vinyl-1 {
    border-color: var(--primary);
    top: 0;
    left: 0;
    animation: float 3s ease-in-out infinite;
}

.vinyl-2 {
    border-color: var(--secondary);
    top: 25px;
    left: 25px;
    animation: float 3s ease-in-out infinite 0.5s;
}

.vinyl-3 {
    border-color: #b45309;
    top: 50px;
    left: 50px;
    animation: float 3s ease-in-out infinite 1s;
}

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

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--dark);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.contact-item i {
    font-size: 2rem;
    color: var(--secondary);
    width: 50px;
}

.contact-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.contact-item p {
    color: var(--gray);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--dark);
    border-left: 1px solid rgba(245, 158, 11, 0.2);
    transition: right 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
}

.cart-close {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: rgba(185, 28, 28, 0.1);
    color: var(--error);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--light);
}

.cart-item-artist {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-weight: 600;
    color: var(--secondary);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--error);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: rgba(185, 28, 28, 0.1);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1002;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-close {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(185, 28, 28, 0.1);
    color: var(--error);
}

.checkout-form {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: var(--secondary);
}

.payment-option input[type="radio"] {
    margin: 0;
}

.payment-option i {
    font-size: 1.25rem;
    color: var(--secondary);
}

.btn-pay {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

/* Footer */
.footer {
    background: var(--darker);
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light);
}

.footer-section p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--gray);
}

/* Record Details Modal */
.record-details-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1004;
    animation: fadeIn 0.3s ease;
}

.record-details-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.record-details-header {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.record-details-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.8), rgba(245, 158, 11, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.record-details-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.record-details-artist {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.record-details-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.record-details-close:hover {
    background: var(--error);
    transform: rotate(90deg);
}

.record-details-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.record-details-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.info-value {
    font-size: 1.1rem;
    color: var(--light);
    font-weight: 500;
}

.record-details-price {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.price-label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.record-details-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-details-add {
    flex: 1;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-details-add:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
}

.btn-details-add:disabled {
    background: var(--gray-dark);
    cursor: not-allowed;
    transform: none;
}

.condition-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.condition-mint {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
}

.condition-near-mint {
    background: linear-gradient(135deg, var(--secondary), #d97706);
    color: white;
}

.condition-very-good {
    background: linear-gradient(135deg, var(--primary), #b45309);
    color: white;
}

.condition-good {
    background: linear-gradient(135deg, var(--gray), #5c4b3a);
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Loading States */
.loading {
    text-align: center;
    padding: 2rem;
    color: var(--gray);
}

.loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

/* Success Message */
.success-message {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--success);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    z-index: 1003;
    animation: slideInRight 0.3s ease;
}

.error-message {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--error);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    z-index: 1003;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Simple Availability Styles */
.stock-status {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    display: inline-block;
}

.in-stock {
    background: var(--success);
    color: white;
}

.low-stock {
    background: var(--secondary);
    color: var(--darker);
}

.out-of-stock {
    background: var(--error);
    color: white;
}

/* Make out of stock items look disabled */
.record-card.disabled {
    opacity: 0.6;
}

.btn-add-cart:disabled {
    background: var(--gray-dark);
    cursor: not-allowed;
    opacity: 0.5;
}

/* ===== FINAL MOBILE FIXES ===== */
@media only screen and (max-width: 768px) {
    /* Navigation */
    .navbar .nav-container {
        flex-direction: column !important;
        padding: 0.5rem !important;
    }
    .nav-logo {
        margin-bottom: 0.5rem !important;
    }
    .nav-menu {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }
    .nav-link {
        padding: 0.3rem 0.8rem !important;
        font-size: 0.9rem !important;
    }

    /* Hero Section */
    .hero-content {
        padding: 0 1rem !important;
    }
    .title-main {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    .title-sub {
        font-size: 1rem !important;
        letter-spacing: 0.1em !important;
    }
    .hero-description {
        font-size: 1rem !important;
        padding: 0 0.5rem !important;
    }
    .vinyl-spin {
        width: 150px !important;
        height: 150px !important;
    }

    /* Buttons */
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    .btn-primary, .btn-secondary {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Background Sections */
    .background-section {
        height: 40vh !important;
        min-height: 300px !important;
        background-attachment: scroll !important;
    }
    .bg-content h2 {
        font-size: 2rem !important;
    }
    .bg-content p {
        font-size: 1rem !important;
    }

    /* Collection */
    .collection {
        padding: 3rem 0 !important;
    }
    .section-header h2 {
        font-size: 2rem !important;
    }
    .filter-tabs {
        flex-direction: column !important;
        gap: 0.5rem !important;
        padding: 0 1rem !important;
    }
    .filter-tab {
        width: 100% !important;
        margin: 0 !important;
    }
    .records-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 1rem !important;
    }
    .record-card {
        margin: 0 !important;
    }
    .record-image {
        height: 200px !important;
    }
    .record-actions {
        flex-direction: column !important;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem !important;
    }
    .stats {
        flex-direction: column !important;
        align-items: center !important;
    }

    /* Contact */
    .contact-content {
        padding: 0 1rem !important;
    }
    .contact-item {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1.5rem !important;
    }
    .contact-item i {
        margin-bottom: 0.5rem !important;
    }

    /* Cart */
    .cart-sidebar {
        width: 100% !important;
    }
    .cart-item {
        flex-wrap: wrap !important;
    }

    /* Modals */
    .modal-content {
        width: 95% !important;
        margin: 1rem auto !important;
    }
    .record-details-content {
        width: 95% !important;
    }
    .record-details-header {
        height: 200px !important;
    }
    .record-details-body {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 1rem !important;
    }
    .record-details-title {
        font-size: 1.5rem !important;
    }
    .record-details-artist {
        font-size: 1.2rem !important;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
}

@media only screen and (max-width: 480px) {
    .title-main {
        font-size: 1.5rem !important;
    }
    .vinyl-spin {
        width: 120px !important;
        height: 120px !important;
    }
}

/* ===== CART FIX: HIDDEN BY DEFAULT ===== */
.cart-sidebar {
    right: -100% !important;
}
.cart-sidebar.active {
    right: 0 !important;
}