/* ============================================
   HOME PAGE SPECIFIC STYLES
   Extracted from: resources/views/user/index.blade.php
   ============================================ */

/* Pagination Loading Overlay */
#pagination-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#pagination-loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Loading Spinner */
.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #a4b7f5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* Loading Container */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Fade animation for product container */
.products-fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.products-fade-in {
    opacity: 1;
    transition: opacity 0.3s ease;
}
