﻿
/* Products CSS matching theme style - similar to Our Services cards */
#dvProd .card-container {
    margin-bottom: 30px;
}

/* Loading Animation */
.products-loading {
    text-align: center;
}

    .products-loading .spinner {
        width: 60px;
        height: 60px;
        border: 4px solid #f3f4f6;
        border-top-color: #fea116;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin: 0 auto 20px;
    }

/* Error State */
.products-error {
    text-align: center;
}

    .products-error .error-icon {
        font-size: 4rem;
        color: #feb2b2;
        margin-bottom: 20px;
    }

/* Animations */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
