/**
 * KD Jet Infinite Scroll — styles
 * Uses copper/gold palette to match KDROYAL brand. Override in your theme CSS
 * by targeting these class names at higher specificity.
 */

.kdjis-hidden {
    display: none !important;
}

.kdjis-sentinel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 32px 16px;
    margin: 16px 0;
    min-height: 80px;
    text-align: center;
}

.kdjis-spinner {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(232, 156, 99, 0.2);
    border-top-color: #E89C63;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
    animation: kdjis-spin 0.8s linear infinite;
}

.kdjis-sentinel.is-loading .kdjis-spinner {
    opacity: 1;
}

.kdjis-status {
    margin-top: 12px;
    font-size: 14px;
    color: #888;
    direction: rtl;
    unicode-bidi: plaintext;
}

@keyframes kdjis-spin {
    to { transform: rotate(360deg); }
}

/* Reduced motion — no spinner rotation */
@media (prefers-reduced-motion: reduce) {
    .kdjis-spinner {
        animation: none;
    }
}
