/* Custom CSS for Duniastreaming Market */

/* General Styles */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #06b6d4;
    --light-color: #f8fafc;
    --dark-color: #0f172a;
    --body-bg: #f1f5f9;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --text-color: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --transition-speed: 0.3s;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --box-shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 0.5rem;
    --border-radius-sm: 0.25rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    color: var(--text-color);
    background-color: var(--body-bg);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 76px; /* Adjust this value based on your navbar height */
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Card Styles */
.card {
    transition: all var(--transition-normal);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--card-bg);
    border: none;
    box-shadow: var(--shadow-md);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-img-top {
    height: 240px;
    object-fit: cover;
    transition: all var(--transition-normal);
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Product List/Detail Images */
.product-list-img {
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius-sm);
}

.product-detail-img {
    max-height: 400px;
    object-fit: contain;
    background-color: var(--light-color);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.price-tag {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* VIP Product Cards */
.card .card-img-top.d-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    height: 200px;
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    text-transform: uppercase;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Product Detail Styles */
.product-detail-img {
    max-height: 400px;
    object-fit: contain;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 1rem;
}

/* Cart Styles */
.cart-item {
    padding: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

/* Auth Forms */
.auth-form {
    max-width: 480px;
    margin: 2rem auto;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    background-color: var(--card-bg);
}

.auth-form h2 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.form-control {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Admin Panel Styles */
.admin-container {
    padding: 2rem 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 60px);
}

/* Admin Sidebar */
.admin-sidebar {
    position: sticky;
    top: 1rem;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    background: #fff;
    transition: all 0.3s ease;
}

.admin-sidebar .card-header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border-radius: 12px 12px 0 0;
    padding: 1.25rem;
}

.admin-sidebar .card-header h5 {
    color: #fff;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.admin-sidebar .nav-link {
    padding: 0.875rem 1.25rem;
    color: #2c3e50;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.admin-sidebar .nav-link:hover {
    background-color: #f8f9fa;
    color: #3498db;
    border-left-color: #3498db;
}

.admin-sidebar .nav-link.active {
    background-color: #ebf5ff;
    color: #3498db;
    border-left-color: #3498db;
}

.admin-sidebar .nav-link i {
    width: 24px;
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Admin Content Area */
.admin-content {
    padding: 0 1rem;
}

.admin-content h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* Admin Cards */
.admin-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.admin-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.admin-card .card-header {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 1.25rem;
    border-radius: 12px 12px 0 0;
}

.admin-card .card-header h5 {
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
}

/* Stats Cards */
.stat-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    background: #fff;
    text-align: left;
    padding: 1.5rem;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

.stat-card .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #2a3547;
    line-height: 1;
}

.stat-card .card-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Custom colors for each stat card icon */
.stat-card:nth-child(1) .icon {
    color: var(--light-color)
}

.stat-card:nth-child(2) .icon {
    color: #13DEB9;
}

.stat-card:nth-child(3) .icon {
    color: #FFAE1F;
}

.stat-card:nth-child(4) .icon {
    color: #FA896B;
}

/* Admin Tables */
.admin-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.admin-table thead th {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 1rem;
    border-top: none;
}

.admin-table tbody td {
    padding: 1rem;
    vertical-align: middle;
    color: #2c3e50;
    border-color: #e9ecef;
}

.admin-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Admin Filters */
.filter-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.filter-card .form-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.filter-card .form-control,
.filter-card .form-select {
    border-radius: 8px;
    border-color: #e9ecef;
    padding: 0.5rem 1rem;
}

.filter-card .form-control:focus,
.filter-card .form-select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Admin Buttons */
.admin-btn {
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.admin-btn i {
    margin-right: 0.5rem;
}

.admin-btn-primary {
    background: #3498db;
    border-color: #3498db;
    color: #fff;
}

.admin-btn-primary:hover {
    background: #2980b9;
    border-color: #2980b9;
    transform: translateY(-1px);
}

/* Admin Badges */
.admin-badge {
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    border-radius: 6px;
}

.admin-badge i {
    margin-right: 0.25rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .admin-sidebar {
        margin-bottom: 1.5rem;
        position: static;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .admin-content {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .admin-container {
        padding: 1rem 0;
    }
    
    .admin-card {
        margin-bottom: 1rem;
    }
    
    .admin-table {
        font-size: 0.875rem;
    }
    
    .admin-btn {
        font-size: 0.875rem;
    }
}

/* Footer */
footer {
    margin-top: auto;
    background-color: var(--dark-color);
    color: #fff;
    padding: 4rem 0 2rem;
}

footer a {
    color: var(--text-light);
    transition: all var(--transition-fast);
}

footer a:hover {
    color: white;
    transform: translateX(5px);
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

/* Payment Methods in Footer */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1rem;
}

.payment-methods-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    align-items: center;
}

.payment-icon {
    background: white;
    padding: 6px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal);
    height: 28px;
}

.payment-icon:hover {
    transform: translateY(-2px);
}

.payment-icon img {
    height: 16px;
    width: auto;
    object-fit: contain;
}

.payment-icon i {
    font-size: 1rem;
    color: #172b4d;
}

/* Admin Product Images */
.img-thumbnail {
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed);
    border-radius: var(--border-radius-sm);
    padding: 0.25rem;
}

.img-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: var(--box-shadow);
}

/* Tables */
.table {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.table thead th {
    background-color: var(--light-color);
    border-bottom: 2px solid var(--border-color);
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 1rem;
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

/* Alerts */
.alert {
    border-radius: var(--border-radius);
    border: none;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--box-shadow);
}

.alert-success {
    background: linear-gradient(to right, var(--success-color), #34d399);
    color: white;
}

.alert-danger {
    background: linear-gradient(to right, var(--danger-color), #f87171);
    color: white;
}

.alert-warning {
    background: linear-gradient(to right, var(--warning-color), #fbbf24);
    color: white;
}

.alert-info {
    background-color: rgba(13, 202, 240, 0.1);
    color: var(--info-color);
}

/* Badges */
.badge {
    padding: 0.5em 0.75em;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background-color: var(--primary-color);
}

.badge-success {
    background-color: var(--success-color);
}

.badge-danger {
    background-color: var(--danger-color);
}

.badge-warning {
    background-color: var(--warning-color);
    color: var(--dark-color);
}

.badge-info {
    background-color: var(--info-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    margin: 2rem auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Tooltips */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltip-text {
    visibility: hidden;
    background-color: var(--dark-color);
    color: #fff;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity var(--transition-speed);
    font-size: 0.75rem;
    white-space: nowrap;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Navbar Brand Logo */
.navbar-brand img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1);
    transition: transform var(--transition-normal);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.display-1 { font-size: 4rem; }
.display-2 { font-size: 3.5rem; }
.display-3 { font-size: 3rem; }
.display-4 { font-size: 2.5rem; }

/* Navbar Styling */
.navbar {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--light-color);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--primary-light);
    color: white;
}

/* Hero Section Styles - Modern Animation Version */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0 5rem 0;
    margin-top: -4rem;
    border-radius: 0 0 50px 50px;
    z-index: 1;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.8;
}

.hero-particle {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 15s infinite ease-in-out;
}

.hero-particle:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.hero-particle:nth-child(2) {
    top: 70%;
    left: 20%;
    width: 80px;
    height: 80px;
    animation-delay: 1s;
}

.hero-particle:nth-child(3) {
    top: 40%;
    left: 80%;
    width: 150px;
    height: 150px;
    animation-delay: 2s;
}

.hero-particle:nth-child(4) {
    top: 60%;
    left: 60%;
    width: 100px;
    height: 100px;
    animation-delay: 3s;
}

.hero-particle:nth-child(5) {
    top: 20%;
    left: 50%;
    width: 70px;
    height: 70px;
    animation-delay: 4s;
}

.hero-particle:nth-child(6) {
    top: 80%;
    left: 30%;
    width: 60px;
    height: 60px;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(0) translateX(20px);
    }
    75% {
        transform: translateY(20px) translateX(10px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--light-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-gradient {
    background: linear-gradient(to right, #ffffff, #64B5F6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.text-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #64B5F6, #ffffff);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--light-color);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.hero-buttons .btn-primary {
    background: var(--light-color);
    color: var(--primary-color);
    border: none;
}

.hero-buttons .btn-primary:hover {
    background: var(--primary-light);
    color: var(--light-color);
    transform: translateY(-2px);
}

.hero-buttons .btn-outline-light {
    border: 2px solid var(--light-color);
    color: var(--light-color);
}

.hero-buttons .btn-outline-light:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Animation */
.hero-animation {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    animation: float-icons 6s infinite ease-in-out;
}

.floating-icon:nth-child(1) {
    top: 30%;
    left: 50%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    left: 30%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    top: 20%;
    left: 20%;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    top: 70%;
    left: 60%;
    animation-delay: 3s;
}

.floating-icon:nth-child(5) {
    top: 40%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float-icons {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

.hero-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s infinite ease-in-out;
}

.hero-circle-inner {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: pulse 3s infinite ease-in-out;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.delay-1 {
    animation-delay: 1s !important;
}

.delay-2 {
    animation-delay: 2s !important;
}

.delay-3 {
    animation-delay: 3s !important;
}

.delay-4 {
    animation-delay: 4s !important;
}

/* Responsive Hero Section */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 4rem 0;
        border-radius: 0 0 30px 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
        border-radius: 0 0 20px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-section .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .hero-section .btn-lg {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2.5rem 0;
        border-radius: 0 0 15px 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-section .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* Compact Product Grid untuk homepage */
.product-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    padding: 1.5rem 0;
}

.product-card {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

/* Compact Product Card */
.product-card-compact {
    font-size: 0.9rem;
}

.product-card-compact .card-img-top {
    height: 180px;
}

.product-card-compact .card-body {
    padding: 1rem;
}

.product-card-compact .card-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.product-card-compact .card-category {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.product-card-compact .card-text {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.product-card-compact .price {
    font-size: 1.1rem;
}

.product-card-compact .price .currency {
    font-size: 0.8rem;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.product-card .card-img-top {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: var(--light-color);
    transition: all var(--transition-normal);
}

.product-card .card-img-top.d-flex {
    padding: 2rem;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.product-card .badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    z-index: 2;
}

.product-card .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
}

.product-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--light-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.product-card .card-title:hover {
    color: var(--dark-color);
}

.product-card .card-category {
    font-size: 0.875rem;
    color: var(--light-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-card .card-category i {
    color: var(--light-color);
    font-size: 0.75rem;
}

.product-card .card-text {
    font-size: 0.875rem;
    color: var(--light-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
}

.product-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-card .price .currency {
    font-size: 0.875rem;
    font-weight: 600;
}

.product-card .btn-view {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.product-card .btn-view i {
    margin-right: 0.5rem;
    font-size: 0.875rem;
}

/* Media queries untuk Product Grid */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }
    
    .product-grid-compact {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .product-grid-compact {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 0.75rem;
    }
    
    .product-card .card-img-top {
        height: 180px;
    }
    
    .product-card-compact .card-img-top {
        height: 140px;
    }
    
    .product-card .card-body {
        padding: 1rem;
    }
    
    .product-card-compact .card-body {
        padding: 0.75rem;
    }
    
    .product-card .card-title {
        font-size: 1rem;
    }
    
    .product-card-compact .card-title {
        font-size: 0.9rem;
    }
    
    .product-card .badge {
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .product-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .product-card .card-img-top {
        height: 150px;
    }
    
    .product-card-compact .card-img-top {
        height: 120px;
    }
    
    .product-card-compact .card-text {
        display: none; /* Sembunyikan deskripsi pada tampilan sangat kecil */
    }
    
    .product-card .btn-view {
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .product-card .btn-view i {
        margin-right: 0.3rem;
        font-size: 0.75rem;
    }
    
    .product-card .price {
        font-size: 1rem;
    }
    
    .product-card .price .currency {
        font-size: 0.75rem;
    }
}

/* Featured Products Section */
.featured-products {
    padding: 4rem 0;
}

.featured-products .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.featured-products .section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.featured-products .view-all {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.featured-products .view-all:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.featured-products .view-all i {
    margin-right: 0.5rem;
}

/* Categories Section */
.category-card {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* Loading States */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    to {
        background-position: -200% 0;
    }
}

/* Product Detail Page */
.product-image-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.product-image-card:hover {
    box-shadow: var(--shadow-xl);
}

.product-detail-img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: var(--light-color);
    padding: 1.5rem;
    transition: all var(--transition-normal);
}

.product-detail-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
}

.product-detail-placeholder i {
    font-size: 8rem;
    opacity: 0.7;
    transition: all var(--transition-normal);
}

.product-detail-placeholder:hover i {
    transform: scale(1.1);
    opacity: 1;
}

.product-info {
    padding: 1rem;
}

.product-header {
    margin-bottom: 2rem;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-title .badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.product-category, .product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-price {
    font-weight: 600;
    color: var(--primary-color);
}

.vip-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.vip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.vip-card.telegram {
    border-color: var(--warning-color);
}

.vip-card.apk {
    border-color: var(--info-color);
}

.vip-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    color: white;
}

.vip-header i {
    font-size: 1.5rem;
}

.vip-header h5 {
    margin: 0;
    color: white;
    font-size: 1.25rem;
}

.vip-content {
    padding: 1.5rem;
}

.vip-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vip-details li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vip-details li:last-child {
    margin-bottom: 0;
}

.vip-info {
    background: rgba(13, 202, 240, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.vip-info i {
    font-size: 1.25rem;
    color: var(--info-color);
}

.vip-info p {
    margin: 0;
    color: var(--text-color);
}

.vip-features, .vip-instructions {
    margin-top: 1.5rem;
}

.vip-features h6, .vip-instructions h6 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.product-actions {
    margin: 2rem 0;
}

.btn-block {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.product-description {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.product-description h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.description-content {
    color: var(--text-color);
    line-height: 1.8;
}

.related-products {
    margin-top: 4rem;
}

.related-products .section-header {
    margin-bottom: 2rem;
}

.related-products .section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
}

/* Browse by Category Section */
.browse-categories {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--body-bg), white);
}

.browse-categories .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.browse-categories .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.browse-categories .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.category-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-color);
}

.category-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all var(--transition-normal);
}

.category-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0.2;
    z-index: -1;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-icon i {
    font-size: 2.5rem;
    color: white;
    transition: all var(--transition-normal);
}

.category-card:hover .category-icon i {
    transform: scale(1.1);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    transition: color var(--transition-normal);
}

.category-card:hover .category-title {
    color: var(--primary-color);
}

.category-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
}

.category-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.category-button i {
    font-size: 1rem;
    transition: transform var(--transition-normal);
}

.category-button:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .browse-categories {
        padding: 3rem 0;
    }
    
    .browse-categories .section-title {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 2rem;
    }
    
    .category-icon {
        width: 80px;
        height: 80px;
    }
    
    .category-icon i {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.25rem;
    }
}

/* Category Page Styles */
.category-sidebar {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 2rem;
}

.sidebar-header {
    padding: 1.5rem;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    color: white;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.sidebar-header h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.sidebar-content {
    padding: 1rem 0;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    position: relative;
}

.category-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.category-link:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.category-item.active .category-link {
    background: var(--light-color);
    color: var(--primary-color);
    font-weight: 600;
}

.category-link i {
    transition: all var(--transition-normal);
}

.category-link:hover i {
    color: var(--primary-color);
}

.category-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.product-count {
    background: var(--light-color);
    color: var(--text-muted);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
}

.breadcrumb {
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--text-color);
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--text-light);
}

@media (max-width: 991px) {
    .category-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
    
    .category-header {
        margin-bottom: 1.5rem;
    }
    
    .category-title {
        font-size: 1.75rem;
    }
}

/* Cart Page Styles */
.cart-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-items-container {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.cart-item {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item:hover {
    background: var(--light-color);
}

.cart-item-image {
    width: 100%;
    height: 100px;
    object-fit: contain;
    border-radius: var(--radius-md);
    background: white;
    padding: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.cart-item-placeholder {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    border-radius: var(--radius-md);
}

.cart-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.cart-item-category {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0.5rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.cart-item-price .currency {
    font-size: 0.9rem;
    font-weight: normal;
}

.cart-item-quantity {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cart-item-actions {
    display: flex;
    justify-content: flex-end;
}

.btn-remove {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.btn-remove:hover {
    transform: scale(1.1);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--light-color);
    border-top: 1px solid var(--border-color);
}

.order-summary {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 2rem;
}

.order-summary-header {
    padding: 1.5rem;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    color: white;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.order-summary-header h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.order-summary-content {
    padding: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.summary-item.total {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
}

.summary-item .amount {
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1rem 0;
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all var(--transition-normal);
}

.btn-checkout:hover {
    transform: translateY(-2px);
}

/* Checkout Page Styles */
.checkout-container {
    max-width: 1000px;
    margin: 0 auto;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.payment-method-option {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.payment-method-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.payment-method-option.active {
    border-color: var(--primary-color);
    background: var(--light-color);
}

.payment-method-option .icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.payment-method-option .title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.payment-method-option .description {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.vip-activation {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.vip-activation-header {
    padding: 1.5rem;
    background: linear-gradient(to right, var(--info-dark), var(--info-color));
    color: white;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.vip-activation-content {
    padding: 1.5rem;
}

.currency-info {
    background: var(--light-color);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .order-summary {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }
    
    .cart-item {
        padding: 1rem;
    }
    
    .cart-item-image,
    .cart-item-placeholder {
        height: 80px;
    }
    
    .cart-actions {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .cart-actions .btn {
        width: 100%;
    }
}

/* User Dashboard Styles */
.dashboard-container {
    padding: 2rem 0;
}

/* Sidebar Menu */
.dashboard-sidebar {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 2rem;
    transition: all var(--transition-normal);
}

.dashboard-sidebar:hover {
    box-shadow: var(--shadow-lg);
}

.dashboard-sidebar .card-header {
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    color: white;
    padding: 1.25rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.dashboard-sidebar .card-header h5 {
    margin: 0;
    color: white;
    font-weight: 600;
}

.dashboard-sidebar .list-group-item {
    border: none;
    padding: 0;
}

.dashboard-sidebar .list-group-item a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.dashboard-sidebar .list-group-item a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dashboard-sidebar .list-group-item.active {
    background: transparent;
}

.dashboard-sidebar .list-group-item.active a {
    color: var(--primary-color);
    font-weight: 600;
    background: var(--light-color);
}

.dashboard-sidebar .list-group-item i {
    width: 24px;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Dashboard Stats */
.stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-normal);
    border: none;
    box-shadow: var(--shadow-md);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card .icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    transition: all var(--transition-normal);
}

.stat-card:hover .icon {
    transform: scale(1.1);
}

.stat-card .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #2a3547;
    line-height: 1;
}

.stat-card .card-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card .btn {
    width: 100%;
}

/* Dashboard Content Cards */
.dashboard-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all var(--transition-normal);
}

.dashboard-card:hover {
    box-shadow: var(--shadow-lg);
}

.dashboard-card .card-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-card .card-header h5 {
    margin: 0;
    font-weight: 600;
}

.dashboard-card .card-body {
    padding: 1.5rem;
}

/* Recent Orders List */
.order-list .list-group-item {
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem;
    transition: all var(--transition-normal);
}

.order-list .list-group-item:last-child {
    border-bottom: none;
}

.order-list .list-group-item:hover {
    background: var(--light-color);
    transform: translateX(5px);
}

.order-list .order-id {
    font-weight: 600;
    color: var(--primary-color);
}

.order-list .order-date {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.order-list .order-total {
    font-weight: 600;
}

/* VIP Membership Cards */
.vip-membership-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
}

.vip-membership-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vip-membership-card.active {
    border-color: var(--success-color);
}

.vip-membership-card.expired {
    border-color: var(--danger-color);
}

.vip-membership-card .card-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.vip-membership-card .card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

.vip-membership-card .membership-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.vip-membership-card:hover .membership-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.vip-membership-card .membership-icon i {
    font-size: 1.75rem;
    color: white;
}

.vip-membership-card .card-title {
    color: white;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.vip-membership-card .card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.vip-membership-card .membership-details {
    margin: 1rem 0;
    flex-grow: 1;
}

.vip-membership-card .membership-details p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.vip-membership-card .membership-details p:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.vip-membership-card .membership-details span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.vip-membership-card .membership-details strong {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
}

/* Regular Product Card */
.purchase-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.purchase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.purchase-card .card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    background: var(--light-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: all var(--transition-normal);
}

.purchase-card:hover .product-image {
    transform: scale(1.05);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
}

.product-placeholder i {
    font-size: 3.5rem;
    color: var(--text-muted);
    opacity: 0.5;
    transition: all var(--transition-normal);
}

.purchase-card:hover .product-placeholder i {
    opacity: 0.7;
    transform: scale(1.1);
}

.purchase-card .product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.25rem 0 0.75rem;
    color: var(--dark-color);
    line-height: 1.4;
    text-align: center;
}

.purchase-card .product-category {
    text-align: center;
    margin-bottom: 1rem;
}

.purchase-card .product-category .badge {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    background: var(--light-color);
    color: var(--text-muted);
}

.purchase-card .product-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.purchase-card .card-footer {
    padding: 1.5rem;
    background: var(--dark-color);
}

.purchase-card .btn {
    padding: 0.75rem 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
}

/* Purchases Grid Layout */
.purchases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-card .card-header {
    padding: 1.25rem;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.product-card .product-type {
    margin-bottom: 1rem;
}

.product-card .badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 0.85rem;
}

.product-card .product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--dark-color);
    line-height: 1.4;
}

.product-card .product-category {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: inline-block;
}

.product-card .card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 180px;
    background: var(--light-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: all var(--transition-normal);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.product-placeholder i {
    font-size: 2.5rem;
    opacity: 0.5;
}

.product-info {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.product-info p:last-child {
    margin-bottom: 0;
}

.product-card .card-footer {
    padding: 1.25rem;
    background: var(--dark-color);
}

.product-card .btn {
    padding: 0.75rem 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .purchases-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .purchases-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .product-image-container {
        height: 160px;
    }

    .product-card .card-header,
    .product-card .card-body,
    .product-card .card-footer {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .purchases-grid {
        grid-template-columns: 1fr;
    }

    .product-image-container {
        height: 160px;
    }

    .product-card .product-title {
        font-size: 1.1rem;
    }
}

/* Checkout Payment Methods */
.payment-method-radio label {
    padding: 12px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-method-radio input[type="radio"]:checked + label {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
    box-shadow: 0 0 0 1px #0d6efd;
}

/* Checkout payment icon (different size from footer payment icons) */
.payment-method-radio .payment-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.payment-method-radio .payment-icon i {
    font-size: 1.5rem;
}

.payment-methods-simple {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-checkout {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Footer Payment Methods Display */
.footer-payment-methods {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 1rem;
}

.footer-payment-group {
    margin-bottom: 20px;
}

.footer-payment-group h6 {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
}

.footer-payment-group h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background: var(--primary-light);
}

.payment-method-item {
    background: white;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    min-height: 40px;
}

.payment-method-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.payment-method-item img {
    max-width: 100%;
    max-height: 24px;
    object-fit: contain;
}

/* Persistent Alert - Same styling as Bootstrap alerts but won't be auto-dismissed */
.persistent-alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.persistent-alert.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.persistent-alert.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.persistent-alert.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.persistent-alert.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.persistent-alert a {
    font-weight: 700;
}

.persistent-alert a:hover {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-page {
    background-color: var(--light-color);
    padding: 3rem 0;
}

.contact-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
    border: none;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.75rem;
    transition: all var(--transition-normal);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    min-height: 3rem;
}

.contact-btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

.contact-btn i {
    font-size: 1.1rem;
}

.faq-section {
    margin-top: 3rem;
}

.faq-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    text-align: center;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
    background-color: white;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(37, 99, 235, 0.1);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all var(--transition-normal);
}

.accordion-body {
    padding: 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Responsive adjustments for Contact page */
@media (max-width: 991px) {
    .contact-page {
        padding: 2.5rem 0;
    }
    
    .contact-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .contact-page {
        padding: 2rem 0;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-title {
        font-size: 1.25rem;
    }
    
    .faq-title {
        font-size: 1.5rem;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .contact-page {
        padding: 1.5rem 0;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .contact-title {
        font-size: 1.1rem;
    }
    
    .contact-description {
        font-size: 0.9rem;
        min-height: auto;
    }
    
    .contact-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .faq-title {
        font-size: 1.3rem;
    }
}