/* ==========================================================================
   ALEX SOLANGE DIGITAL STORE - FUTURISTIC & HAPPY DESIGN SYSTEM
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark: #0A0D14;
    --bg-card: rgba(22, 28, 45, 0.65);
    --bg-card-hover: rgba(30, 39, 62, 0.85);
    --border-glass: rgba(255, 255, 255, 0.12);
    --border-gold: rgba(212, 175, 55, 0.4);

    --primary-gold: #F59E0B;
    --gold-glow: #FFD700;
    --accent-cyan: #00F2FE;
    --accent-blue: #4FACFE;
    --accent-violet: #8B5CF6;
    --accent-magenta: #EC4899;

    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    /* Fonts */
    --font-heading: 'Cinzel', serif;
    --font-ui: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Effects */
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --shadow-glow-gold: 0 0 25px rgba(245, 158, 11, 0.35);
    --shadow-glow-cyan: 0 0 25px rgba(0, 242, 254, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

/* Glowing Background Lights */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
}

.bg-glow-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-cyan), var(--accent-violet));
}

.bg-glow-2 {
    top: 40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--primary-gold), var(--accent-magenta));
}

.bg-glow-3 {
    bottom: -10%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-blue), var(--accent-violet));
}

/* Glassmorphism Panel Class */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glass);
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #000;
    box-shadow: var(--shadow-glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.15);
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, #FFD700, #F59E0B);
    color: #000;
    box-shadow: var(--shadow-glow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(245, 158, 11, 0.6);
}

.btn-block {
    width: 100%;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--primary-gold);
    color: #000;
}

/* Header & Nav */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 13, 20, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 14px 0;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-symbol {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold-glow), var(--accent-violet));
    color: #000;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.3rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow-gold);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-primary);
}

.brand-tag {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--primary-gold);
    font-weight: 600;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
    border: 1px solid var(--border-gold);
    color: var(--gold-glow);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    padding: 8px 16px 8px 36px;
    color: var(--text-primary);
    font-size: 0.85rem;
    width: 200px;
    outline: none;
    transition: var(--transition);
}

.search-box input:focus {
    width: 260px;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.search-icon {
    position: absolute;
    left: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.lang-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    color: var(--text-primary);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cart-btn {
    position: relative;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    padding: 8px 18px;
    color: var(--gold-glow);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.cart-btn:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-violet));
    color: #000;
}

.cart-badge {
    background: var(--accent-cyan);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: var(--radius-full);
}

/* Hero Section */
.hero-section {
    padding: 60px 0 40px;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: var(--radius-full);
    color: var(--accent-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(0, 242, 254, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #FFFFFF 30%, var(--gold-glow) 70%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-glass);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-ui);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-glow);
}

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

.stat-divider {
    width: 1px;
    height: 30px;
    background: var(--border-glass);
}

/* Featured Card */
.hero-featured-card {
    position: relative;
    padding: 20px;
    overflow: hidden;
    border: 1px solid var(--border-gold);

}

.featured-ribbon {
    position: absolute;
    top: 14px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-violet));
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 35px;
    transform: rotate(45deg);
    z-index: 10;
}

.featured-media {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 250px;
    margin-bottom: 16px;
}

.featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.btn-play-hero {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-glow), var(--primary-gold));
    color: #000;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow-gold);
    transition: var(--transition);
}

.btn-play-hero:hover {
    transform: scale(1.15);
}

.featured-details h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin: 8px 0;

}

.featured-details p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.featured-meta {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--accent-cyan);
    margin-bottom: 16px;
}

.featured-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-right: 6px;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-glow);
}

/* Format Badges */
.format-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.format-film { background: rgba(236, 72, 153, 0.2); color: #F472B6; border: 1px solid rgba(236, 72, 153, 0.4); }
.format-book { background: rgba(59, 130, 246, 0.2); color: #60A5FA; border: 1px solid rgba(59, 130, 246, 0.4); }
.format-audiobook { background: rgba(245, 158, 11, 0.2); color: #FBBF24; border: 1px solid rgba(245, 158, 11, 0.4); }
.format-music { background: rgba(16, 185, 129, 0.2); color: #34D399; border: 1px solid rgba(16, 185, 129, 0.4); }

/* Main Store Section */
.store-section {
    padding: 40px 0 60px;
}

.store-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    margin-bottom: 30px;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.filter-tab {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.filter-tab:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.filter-tab.active {
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
    color: #FFF;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.sort-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    padding: 6px 14px;
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
}

/* Product Cards Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.product-thumb-box {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.product-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-thumb-box img {
    transform: scale(1.08);
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .thumb-overlay {
    opacity: 1;
}

.product-details {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-details h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 8px 0 6px;
    color: var(--text-primary);
}

.product-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-specs {
    display: flex;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    margin-top: auto;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border-glass);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold-glow);
}

/* Artist Section */
.artist-section {
    max-width: 1280px;
    margin: 40px auto 60px;
    padding: 40px;
}

.artist-container {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: center;
}

.artist-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    box-shadow: var(--shadow-glow-gold);
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-badge {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--accent-cyan);
    margin-bottom: 4px;
}

.artist-info h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
}

.artist-title {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 12px;
}

.artist-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.artist-sublinks {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sublink-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
}

.sublink-btn:hover {
    border-color: var(--primary-gold);
    color: var(--gold-glow);
}

/* Modals System */
.modal-backdrop, .cart-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-backdrop.hidden, .cart-drawer-backdrop.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-dialog {
    width: 90%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--gold-glow);
}

.modal-video {
    max-width: 800px;
    padding: 0;
    overflow: hidden;
}

.video-container {
    width: 100%;
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-container video {
    width: 100%;
    height: 100%;
}

.modal-body {
    padding: 24px;
}

.modal-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

/* PDF Reader Modal */
.modal-reader {
    max-width: 750px;
}

.reader-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-glass);
}

.reader-viewport {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 30px;
    min-height: 320px;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: #E2E8F0;
    margin-bottom: 20px;
}

.reader-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Cart Drawer */
.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    border-radius: 0;
    border-left: 1px solid var(--border-gold);
    display: flex;
    flex-direction: column;
    padding: 24px;
    z-index: 1001;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-glass);
}

.cart-items-list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
}

.cart-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

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

.cart-item-title {
    font-weight: 600;
    font-size: 0.88rem;
}

.cart-item-price {
    color: var(--gold-glow);
    font-size: 0.85rem;
    font-weight: 700;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
}

.cart-item-remove:hover { color: #EF4444; }

.cart-footer {
    border-top: 1px solid var(--border-glass);
    padding-top: 16px;
}

.promo-box {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.promo-box input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    color: #FFF;
    font-size: 0.8rem;
}

.promo-msg {
    font-size: 0.75rem;
    margin-bottom: 12px;
}

.summary-rows {
    margin-bottom: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.total-row {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    border-top: 1px solid var(--border-glass);
    padding-top: 8px;
}

.text-gold { color: var(--gold-glow); }

/* Checkout Modal */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: #FFF;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary-gold);
}

.payment-options {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.pay-option {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pay-option.active {
    border-color: var(--primary-gold);
    background: rgba(245, 158, 11, 0.15);
}

.order-summary-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}

.order-total-line {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 1.1rem;
}

/* Success Fulfillment Download Item */
.download-item-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.3);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
}

/* Persistent Bottom Media Player Bar */
.media-player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    border-radius: 0;
    border-top: 1px solid var(--border-gold);
    background: rgba(10, 13, 20, 0.92);
    backdrop-filter: blur(20px);
    padding: 10px 24px;
    transition: transform 0.3s ease;
}

.media-player-bar.hidden {
    transform: translateY(100%);
}

.player-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.player-track-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.player-track-info img {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    object-fit: cover;
}

.track-details {
    display: flex;
    flex-direction: column;
}

.track-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.track-artist {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.player-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-grow: 1;
    max-width: 500px;
}

.control-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-player-main {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold-glow);
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-player-sub {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.progress-container input[type="range"] {
    flex-grow: 1;
    accent-color: var(--gold-glow);
}

.player-extras {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Animated Equalizer */
.equalizer-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
}

.equalizer-bars .bar {
    width: 3px;
    background: var(--accent-cyan);
    border-radius: 2px;
    animation: bounce 1.2s infinite ease-in-out alternate;
}

.equalizer-bars .bar:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.equalizer-bars .bar:nth-child(2) { height: 80%; animation-delay: 0.3s; }
.equalizer-bars .bar:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.equalizer-bars .bar:nth-child(4) { height: 60%; animation-delay: 0.4s; }

@keyframes bounce {
    0% { height: 20%; }
    100% { height: 100%; }
}

.volume-box {
    display: flex;
    align-items: center;
    gap: 6px;
}

.volume-box input {
    width: 70px;
    accent-color: var(--accent-cyan);
}

.btn-player-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
}

/* Footer & Newsletter */
.site-footer {
    padding: 60px 0 100px;
    border-top: 1px solid var(--border-glass);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.newsletter-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    min-width: 380px;
}

.newsletter-form input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    padding: 10px 18px;
    color: #FFF;
    outline: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-links a:hover { color: var(--gold-glow); }

/* Responsive Queries */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    .artist-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .artist-avatar {
        margin: 0 auto;
    }
    .newsletter-box {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .newsletter-form {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .hero-title { font-size: 2.2rem; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}
