/* ===================================
   Card Component
   =================================== */

.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

/* Retro theme card overrides */
[data-theme="retro"] .card {
    border-width: 2px;
    border-radius: 0;
    background: var(--card-bg);
}

[data-theme="retro"] .card:hover {
    box-shadow: 2px 2px 0 var(--border-color);
}

/* Leather theme card overrides */
[data-theme="leather"] .card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

[data-theme="leather"] .card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Stagger animations for cards */
.card:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.3s;
}