.skeleton-card {
    background: #e2e8f0;
    border-radius: 12px;
    min-height: 280px;
    min-width: 180px;
    position: relative;
    overflow: hidden;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.img-container {
    position: relative;
    width: 100%;
    min-height: 200px;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #ffcb05;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
    z-index: 2;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.card-img-smooth {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    width: 100%;
    height: auto;
    display: block;
}

.card-img-smooth.loaded {
    opacity: 1;
}