body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, #f97316, #ea580c);
    width: 0%;
    z-index: 40;
    transition: width 0.2s;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.dark-mode {
    background-color: #1a202c;
    color: #e2e8f0;
}

.dark-mode .bg-white {
    background-color: #2d3748;
}

.dark-mode .bg-gray-50 {
    background-color: #1a202c;
}

.dark-mode .text-gray-700, .dark-mode .text-gray-800 {
    color: #e2e8f0;
}

.dark-mode .text-gray-600 {
    color: #cbd5e0;
}

.bg-orange-50 { background-color: #fff7ed; }
.bg-orange-100 { background-color: #ffedd5; }
.bg-orange-500 { background-color: #f97316; }
.bg-orange-600 { background-color: #ea580c; }
.text-orange-500 { color: #f97316; }
.text-orange-600 { color: #ea580c; }
.border-orange-500 { border-color: #f97316; }
.hover\:bg-orange-600:hover { background-color: #ea580c; }
.hover\:text-orange-600:hover { color: #ea580c; }

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.dark-mode header { background-color: #2d3748; }
#mobileMenu { top: 100%; }

/* Loading animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Filter styles */
.filter-group {
    margin-bottom: 1.5rem;
}

.filter-title {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-options {
    max-height: 200px;
    overflow-y: auto;
}

.filter-option {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.filter-option input {
    margin-right: 0.5rem;
}

/* Product card styles */
.product-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.product-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-new {
    background-color: #10b981;
    color: white;
}

.badge-sale {
    background-color: #ef4444;
    color: white;
}

.badge-refurbished {
    background-color: #3b82f6;
    color: white;
}

/* Pagination styles */
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
}

.page-item {
    margin: 0 0.25rem;
}

.page-link {
    display: block;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    color: #6b7280;
    text-decoration: none;
}

.page-link:hover {
    background-color: #f3f4f6;
}

.page-item.active .page-link {
    background-color: #f97316;
    border-color: #f97316;
    color: white;
}

.page-item.disabled .page-link {
    color: #9ca3af;
    pointer-events: none;
    background-color: #f9fafb;
}

 /* Continuous Bouncy Logo Animation */
        .animate-continuous-bounce-logo {
            animation: bounceLogo 1.5s ease-in-out infinite;
        }

        @keyframes bounceLogo {
            0% {
                transform: scale(1);
            }

            20% {
                transform: scale(1.2);
            }

            40% {
                transform: scale(0.9);
            }

            60% {
                transform: scale(1.1);
            }

            80% {
                transform: scale(0.95);
            }

            100% {
                transform: scale(1);
            }
        }