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

:root {
    --primary-red: #dc2626;
    --secondary-red: #ef4444;
    --dark-red: #991b1b;
    --primary-black: #0f0f0f;
    --secondary-black: #1a1a1a;
    --light-black: #2d2d2d;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-gray: #6b7280;
    --success-green: #48bb78;
    --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    --gradient-secondary: linear-gradient(135deg, var(--primary-black), var(--secondary-black));
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

#cart-count {
    background: var(--white);
    color: var(--primary-red);
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    min-width: 20px;
    text-align: center;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Free Beats Banner */
.free-beats-banner {
    background: linear-gradient(135deg, var(--success-green) 0%, #38a169 100%);
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.free-beats-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.1) 10px,
        rgba(255,255,255,0.1) 20px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(-50px); }
    100% { transform: translateX(50px); }
}

.free-beats-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.free-beats-banner p {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.free-beats-banner a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    background: rgba(255,255,255,0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.free-beats-banner a:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23dc2626" fill-opacity="0.1" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid var(--primary-red);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.btn-secondary:hover {
    background: var(--primary-red);
}

/* Featured Music Section */
.featured-music {
    padding: 5rem 0;
    background: var(--secondary-black);
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

/* CENTERED MUSIC CATEGORIES */
.music-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.category-card {
    background: var(--light-black);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 300px;
    min-width: 280px;
    flex-shrink: 0;
}

.free-badge {
    background: var(--success-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
    animation: bounce 2s infinite;
}

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

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.category-card:hover::before {
    left: 0;
    opacity: 0.1;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.category-card * {
    position: relative;
    z-index: 2;
}

.category-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.category-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Shop Section */
.shop {
    padding: 5rem 0;
    background: var(--primary-black);
}

/* Shop Filters */
.shop-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--light-black);
    color: var(--white);
    border: 2px solid var(--primary-red);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
}

/* CENTERED PRODUCTS GRID - THIS IS THE KEY FIX */
.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.product-card {
    background: var(--secondary-black);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--light-black);
    width: 300px;
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.2);
    border-color: var(--primary-red);
}

.product-image {
    width: 100%;
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

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

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
}

.product-artist {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-style: italic;
    font-size: 0.95rem;
}

.product-description {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.product-price {
    font-size: 1.8rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-price.free {
    color: var(--success-green) !important;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

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

.add-to-cart {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.add-to-cart:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
}

.add-to-cart.free-download {
    background: var(--success-green);
}

.add-to-cart.free-download:hover {
    background: #38a169;
}

/* Currency Info Box */
.currency-info {
    background: rgba(229, 62, 62, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    color: var(--text-gray);
    text-align: center;
}

.currency-info i {
    color: var(--primary-red);
    margin-right: 0.5rem;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 1rem;
}

.success-content {
    background: var(--secondary-black);
    padding: 3rem;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    border: 2px solid var(--primary-red);
    position: relative;
}

.success-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.success-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.download-links {
    margin: 2rem 0;
}

.download-link {
    display: block;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-link:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--secondary-black);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

/* CENTERED ABOUT FEATURES */
.about-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.about-features > div {
    background: var(--light-black);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 250px;
    min-width: 220px;
    flex-shrink: 0;
    text-align: center;
}

.about-features > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}

.about-features h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-features p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--primary-black);
}

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

.contact-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* CENTERED CONTACT GRID */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    background: var(--secondary-black);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 200px;
    min-width: 180px;
    flex-shrink: 0;
    text-align: center;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
}

.contact-item i {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

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

/* Footer */
.footer {
    background: var(--secondary-black);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--light-black);
}

.footer p {
    color: var(--text-gray);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--secondary-black);
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
    border-left: 2px solid var(--primary-red);
}

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

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 1rem;
}

.cart-title {
    font-size: 1.5rem;
    color: var(--white);
}

.close-cart {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-cart:hover {
    background: var(--primary-red);
    color: var(--white);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-black);
}

.cart-item-info h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-info h4 img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

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

.cart-total {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary-red);
}

.cart-total h3 {
    color: var(--white);
    display: flex;
    justify-content: space-between;
}

.checkout-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.checkout-btn:hover:not(:disabled) {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
}

.checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Currency Selector Styles */
.currency-selector {
    background: var(--light-black);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--primary-red);
}

.currency-selector label {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.currency-select {
    width: 100%;
    padding: 0.75rem;
    background: var(--secondary-black);
    border: 2px solid var(--primary-red);
    border-radius: 6px;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
}

.currency-select:focus {
    outline: none;
    border-color: var(--secondary-red);
}

/* Payment Methods Styles */
.payment-methods {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--light-black);
    border-radius: 8px;
}

.payment-methods h4 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.mobile-money-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mobile-money-option {
    background: var(--primary-red);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.mobile-money-option.mtn {
    background: #ffcc00;
    color: #333;
}

.mobile-money-option.orange {
    background: #ff6600;
    color: white;
}

.mobile-money-option.vodafone {
    background: #e60000;
    color: white;
}

.mobile-money-option.airteltigo {
    background: #0066cc;
    color: white;
}

.mobile-money-option.express-union {
    background: #0066cc;
    color: white;
}

/* Payment Modal Styles */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.payment-modal-content {
    background: var(--secondary-black);
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid var(--primary-red);
}

.payment-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-payment {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-payment:hover {
    background: rgba(255, 255, 255, 0.2);
}

.payment-summary {
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-black);
}

.payment-summary h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.payment-item strong {
    color: var(--white);
}

.payment-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary-red);
    font-size: 1.2rem;
    color: var(--primary-red);
    font-weight: 700;
}

.customer-info {
    padding: 1.5rem;
}

.customer-info h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--light-black);
    border: 1px solid var(--text-gray);
    border-radius: 6px;
    color: var(--white);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.pay-now-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 1rem 1.5rem;
    max-width: calc(100% - 3rem);
    transition: all 0.3s ease;
}

.pay-now-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
}

.pay-now-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--secondary-black);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }

    .shop-filters {
        justify-content: center;
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .success-content {
        margin: 1rem;
        padding: 2rem;
    }

    /* Responsive Cards - Still Centered */
    .products-grid {
        justify-content: center;
        gap: 1.5rem;
    }

    .product-card {
        width: 100%;
        max-width: 350px;
        min-width: unset;
    }

    .music-categories {
        justify-content: center;
        gap: 1.5rem;
    }

    .category-card {
        width: 100%;
        max-width: 350px;
        min-width: unset;
    }

    .about-features {
        justify-content: center;
        gap: 1.5rem;
    }

    .about-features > div {
        width: 100%;
        max-width: 300px;
        min-width: unset;
    }

    .contact-grid {
        justify-content: center;
        gap: 1.5rem;
    }

    .contact-item {
        width: 100%;
        max-width: 250px;
        min-width: unset;
    }

    /* Responsive Payment Modal */
    .payment-modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .payment-header {
        padding: 1rem;
    }
    
    .payment-summary,
    .customer-info {
        padding: 1rem;
    }
    
    .pay-now-btn {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}

/* Product Price Display */
.product-price-container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.product-price-usd {
    font-size: 1rem;
    color: var(--text-gray);
    text-decoration: line-through;
}

.product-price-local {
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: 600;
}

.currency-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Enhanced Cart Item Display */
.cart-item-info .price-breakdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.price-breakdown .original-price {
    color: var(--text-gray);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.price-breakdown .converted-price {
    color: var(--primary-red);
    font-weight: 600;
}