.product-card.selected::after {
    content: '\2714';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(37,99,235,0.15);
    z-index: 2;
}
.product-card {
    position: relative;
}
.data-bundle-card.selected {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px var(--primary-color);
    position: relative;
}
.data-bundle-card.selected::after {
    content: '\2714';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(37,99,235,0.15);
    z-index: 2;
}
/* Shop Section Responsive Grid */

.shop-products {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}
.shop-products > .col-4 {
    flex: 0 0 calc(33.333% - 0.75rem);
    max-width: calc(33.333% - 0.75rem);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-bottom: 0.75rem;
}
@media (min-width: 992px) {
    .shop-products > .col-lg-2 {
        flex: 0 0 calc(16.666% - 0.75rem);
        max-width: calc(16.666% - 0.75rem);
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        margin-bottom: 0.75rem;
    }
}
.product-card {
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.08);
    border: 1px solid #e2e8f0;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 0.5rem;
}
.product-card.selected {
    box-shadow: 0 0 0 3px var(--primary-color);
    transform: scale(1.04);
    border-color: var(--primary-color);
}
.product-card:hover {
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.18);
    transform: translateY(-2px) scale(1.03);
}
.product-card .service-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}
.product-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-dark);
}
@media (max-width: 768px) {
    .product-card {
        min-height: 110px;
        padding: 1rem 0.25rem;
    }
    .product-card .service-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .product-card h5 {
        font-size: 0.95rem;
    }
}
/* Custom CSS for VERNIQ Website */
* {
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --light-bg: #f8fafc;
    --dark-bg: #1e293b;
    --text-dark: #1e293b;
    --text-light: #64748b;
}

body {
    padding-top: 80px;
    padding-bottom: 120px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 24px;
}

/* Buy Again Card */
.buy-again-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid #d1d5db;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.buy-again-card:hover {
    border-color: #6b7280;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* QWallet Section */
.balance-card {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border: 2px solid #6b7280;
}

 .qwallet-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

 .qwallet-service {
    background: white;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

 .qwallet-service:hover {
    background: var(--light-bg);
    border-color: var(--primary-color);
}

 .qwallet-service .service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    font-size: 20px;
}

 .qwallet-promo {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #334155 100%);
}

/* Data Section */
.data-category {
    background: white;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.data-category:hover {
    background: var(--light-bg);
    border-color: var(--primary-color);
}

/* Balance Section */
.balance-tabs .nav-link {
    background: #f1f5f9;
    color: var(--text-dark);
    border: none;
    border-radius: 10px;
    margin: 0 5px;
    font-weight: 500;
}

.balance-tabs .nav-link.active {
    background: var(--primary-color);
    color: white;
}

.balance-item {
    background: white;
    border: 1px solid #e2e8f0;
}

.balance-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

/* Data Bundle Cards */
.data-bundle-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.data-bundle-card.border-primary {
    border-color: var(--primary-color) !important;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

/* Enhanced Desktop Navigation */
.nav-item-custom {
    transition: all 0.3s ease;
    position: relative;
}

.nav-item-custom:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.nav-item-custom:hover i {
    color: white !important;
}

/* Mobile Header */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    height: 60px;
    border-bottom: 2px solid #e2e8f0;
}

.mobile-logo {
    font-weight: 700;
}

.mobile-wallet-balance {
    background: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    font-size: 0.9rem;
}

.user-avatar-mobile {
    cursor: pointer;
    transition: all 0.3s ease;
}

.avatar-circle {
    width: 32px;
    height: 32px;
    background: #6c757d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
}

.user-avatar-mobile:hover .avatar-circle {
    transform: scale(1.05);
    background: #495057;
}

/* Scrollable Containers */
.scrollable-container {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}

.scrollable-container::-webkit-scrollbar {
    width: 4px;
}

.scrollable-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.scrollable-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.scrollable-container::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Enhanced Bottom Navigation (Mobile) */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 8px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.bottom-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    padding: 8px 4px;
    border-radius: 12px;
    margin: 0 2px;
}

.bottom-nav-link.active,
.bottom-nav-link:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.nav-icon-wrapper {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.bottom-nav-link:hover .nav-icon-wrapper {
    background: var(--primary-color);
    color: white;
}

.bottom-nav-link i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.nav-label {
    font-size: 10px;
    font-weight: 500;
    margin-top: 4px;
    transition: all 0.3s ease;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-top: 0 !important;
}

.footer a {
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
        padding-bottom: 80px;
        overflow-x: hidden;
        height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Ensure all sections are scrollable on mobile */
    .section-content {
        min-height: calc(100vh - 150px);
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix mobile scrolling for containers */
    .scrollable-container {
        max-height: 250px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix mobile viewport */
    html {
        height: 100%;
        overflow-x: hidden;
    }
    
    /* Mobile-specific adjustments */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Smaller text on mobile */
    .display-5 {
        font-size: 1.8rem;
    }
    
    .display-6 {
        font-size: 1.4rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    h4 {
        font-size: 1.2rem;
    }
    
    h5 {
        font-size: 1.1rem;
    }
    
    /* Smaller cards on mobile */
    .card {
        margin-bottom: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    /* Smaller buttons on mobile */
    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    /* Smaller icons on mobile */
    .wallet-action-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .order-icon,
    .transaction-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .recent-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    /* Smaller wallet balance card */
    .wallet-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* Smaller product cards */
    .product-card {
        min-height: 80px;
        padding: 0.8rem 0.25rem;
    }
    
    .product-card h5 {
        font-size: 0.85rem;
    }
    
    /* Footer adjustments */
    .footer {
        padding: 1rem 0;
    }
    
    .footer .container {
        text-align: center;
    }
    
    .footer .col-md-6:last-child {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    /* Extra small devices */
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .display-5 {
        font-size: 1.6rem;
    }
    
    .btn {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .card-body {
        padding: 0.8rem;
    }
    
    .wallet-action-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .product-card {
        min-height: 90px;
        padding: 0.6rem 0.2rem;
    }
    
    .product-card .service-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .product-card h5 {
        font-size: 0.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Loading Animation */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Toggle Balance */
.toggle-balance {
    transition: all 0.3s ease;
}

.toggle-balance:hover {
    color: var(--primary-color);
}

/* Button Styles */
.btn-primary {
    background: #6b7280;
    border-color: #6b7280;
    font-weight: 500;
}

.btn-primary:hover {
    background: #4b5563;
    border-color: #4b5563;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Loading states */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Improved focus states */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
    transform: scale(1.02);
}

/* Better hover effects for interactive elements */
.btn:hover {
    transform: translateY(-1px);
}

.card:hover {
    transform: translateY(-3px);
}

/* Smooth transitions for all interactive elements */
* {
    transition: all 0.3s ease;
}

/* Improved scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Orders Section Styles - Simplified */

.order-item {
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.75rem !important;
}

.order-item .order-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
}

.order-item h6 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem !important;
}

.order-item .small {
    font-size: 0.75rem;
}

.order-item .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

.order-item:hover {
    background-color: #f8fafc;
    transform: translateX(5px);
}

.order-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.15);
}

.transaction-item {
    transition: all 0.3s ease;
    padding: 0.75rem !important;
}

.transaction-item .transaction-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
}

.transaction-item h6 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem !important;
}

.transaction-item .small {
    font-size: 0.75rem;
}

.transaction-item .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

.transaction-item:hover {
    background-color: #f8fafc;
}

.transaction-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.15);
}

.recent-transaction-item {
    transition: all 0.3s ease;
}

.recent-transaction-item:hover {
    background-color: #f8fafc;
}

.recent-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

/* Enhanced Wallet Section Styles */
.wallet-action-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.wallet-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.wallet-action-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.wallet-action-card:hover .wallet-action-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.wallet-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    backdrop-filter: blur(10px);
}

/* Enhanced Form Controls */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Enhanced Badge Styles */
.badge {
    font-weight: 500;
    padding: 0.5em 0.75em;
}

.badge.bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
}

.badge.bg-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
}

/* Enhanced Card Styles */
.card {
    border: 2px solid #d1d5db;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.card:hover {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    border-color: #6b7280;
}

/* Section spacing improvements */
.section-content {
    min-height: calc(100vh - 160px);
}

/* Improved spacing for mobile */
@media (max-width: 768px) {
    .section-content {
        min-height: calc(100vh - 100px);
        padding: 2rem 0 !important;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* Enhanced Button Styles */
.btn {
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

/* Enhanced Input Group Styles */
.input-group-text {
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: 500;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .orders-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .wallet-action-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .order-icon,
    .transaction-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .recent-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .order-item:hover {
        transform: none;
    }
    
    .wallet-action-card:hover {
        transform: none;
    }
}

/* AudioMack Super Cool UI Styles */
.audiomack-packages-container {
    padding: 15px 0;
}

.audiomack-header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8f00 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.3);
    animation: pulse 2s infinite;
}

.audiomack-logo {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.audiomack-logo-small {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.audiomack-title {
    color: #ff6b00;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 20px;
}

.audiomack-subtitle {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 0;
}

.audiomack-package-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 2px solid #e3f2fd;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.audiomack-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.audiomack-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--card-color);
}

.audiomack-package-card:hover::before {
    transform: scaleX(1);
}

.audiomack-package-card.selected {
    border-color: var(--card-color);
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.05) 0%, rgba(33, 150, 243, 0.1) 100%);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(33, 150, 243, 0.2);
}

.audiomack-package-card.selected::before {
    transform: scaleX(1);
}

.package-card-inner {
    display: flex;
    align-items: center;
    padding: 12px;
    position: relative;
}

.package-icon {
    width: 32px;
    height: 32px;
    background: var(--card-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.package-audiomack-logo {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.package-icon i {
    font-size: 14px;
    color: white;
}

.package-content {
    flex: 1;
}

.package-title {
    font-size: 14px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 2px;
}

.package-description {
    color: #6c757d;
    font-size: 11px;
    margin-bottom: 2px;
}

.package-duration {
    color: var(--card-color);
    font-size: 10px;
    font-weight: 600;
}

.package-price {
    text-align: right;
}

.price-currency {
    font-size: 12px;
    color: var(--card-color);
    font-weight: 600;
}

.price-amount {
    font-size: 18px;
    color: var(--card-color);
    font-weight: 700;
    margin-left: 1px;
}

.audiomack-select-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8f00 100%);
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(255, 107, 0, 0.3);
}

.audiomack-select-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
}

.audiomack-select-btn:disabled {
    background: #e0e0e0;
    color: #9e9e9e;
    cursor: not-allowed;
    box-shadow: none;
}

/* AudioMack Purchase Modal Styles */
.audiomack-purchase-container {
    padding: 15px 0;
}

.package-summary {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8f00 100%);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    color: white;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
}

.package-summary-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.package-summary-content {
    flex: 1;
}

.package-summary-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 1px;
}

.package-summary-price {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
}

.delivery-alert {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid #2196f3;
    border-radius: 6px;
    padding: 8px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 4px rgba(33, 150, 243, 0.1);
}

.delivery-alert-icon {
    width: 24px;
    height: 24px;
    background: #2196f3;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.delivery-alert-icon i {
    color: white;
    font-size: 10px;
}

.delivery-alert-content {
    flex: 1;
}

.delivery-alert-content strong {
    display: block;
    color: #1976d2;
    font-size: 12px;
    margin-bottom: 1px;
}

.delivery-alert-content span {
    color: #1976d2;
    font-size: 10px;
    font-weight: 500;
}

.audiomack-form {
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group .form-label {
    color: #1976d2;
    font-weight: 600;
    font-size: 10px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.audiomack-input {
    border: 2px solid #e3f2fd;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.audiomack-input:focus {
    border-color: #2196f3;
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.1);
    background: white;
    outline: none;
}

.audiomack-purchase-btn {
    width: 100%;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(76, 175, 80, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.audiomack-purchase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
}

.btn-text {
    display: flex;
    align-items: center;
}

.btn-price {
    font-size: 20px;
    font-weight: 700;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 8px 32px rgba(255, 107, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 107, 0, 0.6);
    }
    100% {
        box-shadow: 0 8px 32px rgba(255, 107, 0, 0.3);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .package-card-inner {
        padding: 10px;
    }
    
    .package-icon {
        width: 28px;
        height: 28px;
        margin-right: 8px;
    }
    
    .package-audiomack-logo {
        width: 16px;
        height: 16px;
    }
    
    .package-icon i {
        font-size: 12px;
    }
    
    .package-title {
        font-size: 12px;
    }
    
    .price-amount {
        font-size: 16px;
    }
    
    .audiomack-title {
        font-size: 16px;
    }
    
    .package-summary {
        padding: 10px;
    }
    
    .package-summary-icon {
        width: 28px;
        height: 28px;
        margin-right: 8px;
    }
    
    .audiomack-header-icon {
        width: 45px;
        height: 45px;
    }
    
    .audiomack-logo {
        width: 24px;
        height: 24px;
    }
}

/* Spotify Voucher Styles */
.spotify-packages-container {
    padding: 15px 0;
}

.spotify-header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1db954 0%, #1ed760 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 16px rgba(29, 185, 84, 0.3);
    animation: pulse 2s infinite;
}

.spotify-logo {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.spotify-logo-small {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.spotify-title {
    color: #1db954;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 20px;
}

.spotify-subtitle {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 0;
}

.spotify-package-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
    border: 2px solid #e8f5e8;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.spotify-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.spotify-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--card-color);
}

.spotify-package-card:hover::before {
    transform: scaleX(1);
}

.spotify-package-card.selected {
    border-color: var(--card-color);
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.05) 0%, rgba(29, 185, 84, 0.1) 100%);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(29, 185, 84, 0.2);
}

.spotify-package-card.selected::before {
    transform: scaleX(1);
}

.package-spotify-logo {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.spotify-select-btn {
    width: 100%;
    background: linear-gradient(135deg, #1db954 0%, #1ed760 100%);
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(29, 185, 84, 0.3);
}

.spotify-select-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(29, 185, 84, 0.4);
}

.spotify-select-btn:disabled {
    background: #e0e0e0;
    color: #9e9e9e;
    cursor: not-allowed;
    box-shadow: none;
}

/* Spotify Purchase Modal Styles */
.spotify-purchase-container {
    padding: 15px 0;
}

.spotify-purchase-container .package-summary {
    background: linear-gradient(135deg, #1db954 0%, #1ed760 100%);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    color: white;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(29, 185, 84, 0.3);
}

.spotify-purchase-container .package-summary-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.spotify-purchase-container .package-summary-content {
    flex: 1;
}

.spotify-purchase-container .package-summary-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 1px;
}

.spotify-purchase-container .package-summary-price {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
}

.spotify-form {
    margin-bottom: 12px;
}

.spotify-form .form-group {
    margin-bottom: 12px;
}

.spotify-form .form-group .form-label {
    color: #1db954;
    font-weight: 600;
    font-size: 10px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.spotify-input {
    border: 2px solid #e8f5e8;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.spotify-input:focus {
    border-color: #1db954;
    box-shadow: 0 0 0 2px rgba(29, 185, 84, 0.1);
    background: white;
    outline: none;
}

.spotify-purchase-btn {
    width: 100%;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.spotify-purchase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
}

.spotify-purchase-btn .btn-text {
    flex: 1;
    text-align: left;
}

.spotify-purchase-btn .btn-price {
    font-weight: 700;
    font-size: 14px;
}

/* Mobile Responsive for Spotify */
@media (max-width: 768px) {
    .spotify-package-card {
        margin-bottom: 10px;
    }
    
    .package-card-inner {
        padding: 10px;
    }
    
    .package-spotify-logo {
        width: 16px;
        height: 16px;
    }
    
    .package-icon i {
        font-size: 12px;
    }
    
    .package-title {
        font-size: 12px;
    }
    
    .price-amount {
        font-size: 16px;
    }
    
    .spotify-title {
        font-size: 16px;
    }
    
    .spotify-purchase-container .package-summary {
        padding: 10px;
    }
    
    .spotify-purchase-container .package-summary-icon {
        width: 28px;
        height: 28px;
        margin-right: 8px;
    }
    
    .spotify-header-icon {
        width: 45px;
        height: 45px;
    }
    
    .spotify-logo {
        width: 24px;
        height: 24px;
    }
}


/* Modern Transaction Cards */
.modern-transaction-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    padding: 0;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.modern-transaction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.modern-transaction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #34d399);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-transaction-card:hover::before {
    opacity: 1;
}

.modern-transaction-card.detailed {
    margin-bottom: 20px;
}

.transaction-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.transaction-icon.deposit-icon {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
}

.transaction-icon.purchase-icon {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    color: white;
}

.transaction-product-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
}

.transaction-details {
    flex: 1;
}

.transaction-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.transaction-date {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.transaction-amount {
    text-align: right;
}

.transaction-amount .amount {
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.transaction-amount.deposit-amount .amount {
    color: #10b981;
}

.transaction-amount.purchase-amount .amount {
    color: #ef4444;
}

.transaction-type {
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transaction-card-body {
    padding: 20px 24px;
    background: #ffffff;
}

.transaction-info-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.info-row.full-width {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.info-row .info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.info-row .info-value {
    font-size: 13px;
    color: #1e293b;
    font-weight: 600;
}

.info-row .info-value.balance-value {
    color: var(--primary-color);
    font-weight: 700;
}

.transaction-status-indicator {
    padding: 8px 20px;
    background: #f0fdf4;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #16a34a;
    border-radius: 8px;
}

.transaction-status-indicator.status-success {
    background: #f0fdf4;
    color: #16a34a;
}

.transaction-status-indicator.status-completed {
    background: #eff6ff;
    color: var(--primary-color);
}

/* Order Status Indicators (using same design as transactions) */
.transaction-status-indicator.status-accepted {
    background: #f3f4f6;
    color: #6b7280;
}

.transaction-status-indicator.status-processing {
    background: #fef3c7;
    color: #d97706;
}

.transaction-status-indicator.status-delivered {
    background: #f0fdf4;
    color: #16a34a;
}

/* Mobile Responsive for Modern Cards */
@media (max-width: 768px) {
    .modern-transaction-card {
        margin-bottom: 16px;
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }
    
    .modern-transaction-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
    }
    
    .transaction-card-header {
        padding: 16px;
    }
    
    .transaction-card-body {
        padding: 16px;
    }
    
    .transaction-icon {
        width: 36px;
        height: 36px;
    }
    
    .transaction-product-image {
        width: 20px;
        height: 20px;
    }
    
    .transaction-title {
        font-size: 13px;
    }
    
    .order-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .transaction-amount .amount {
        font-size: 14px;
    }
    
    .info-value {
        font-size: 13px;
    }
    
    .info-value.amount-highlight {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .transaction-card-header {
        padding: 12px;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .transaction-icon {
        width: 32px;
        height: 32px;
    }
    
    .transaction-product-image {
        width: 18px;
        height: 18px;
    }
    
    .transaction-title {
        font-size: 12px;
    }
    
    .transaction-date {
        font-size: 10px;
    }
    
    .transaction-amount .amount {
        font-size: 13px;
    }
}

/* Animation for status indicators */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spinner.fa-spin {
    animation: spin 1s linear infinite;
}

