/**
 * NET-E Dashboard - Feature Tiles
 * Based on Taiga-Helper Design System
 *
 * Dashboard selector tiles with gradient icons and hover effects
 */

/* Feature Tile (Dashboard cards) */
.tile {
    display: block;
    background: var(--color-bg-card);
    border-radius: var(--radius-4xl);
    padding: var(--space-8);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--color-primary);
    text-decoration: none;
}

.tile__decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: 0 var(--radius-4xl) 0 100%;
}

.tile__icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-4xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: var(--space-5);
    position: relative;
    z-index: 1;
}

.tile__icon--success {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.tile__icon--warning {
    background: linear-gradient(135deg, #f5a623 0%, #f59e0b 100%);
}

.tile__icon--info {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.tile__icon--pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.tile__title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-3);
}

.tile__description {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
}

.tile__footer {
    margin-top: var(--space-5);
    font-size: var(--font-size-md);
    color: var(--color-text-muted);
}

.tile--disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.tile--disabled:hover {
    transform: none;
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
