/* =================================== */
/* Mesh Feature Cards Styles          */
/* =================================== */

.mesh-feature-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mesh-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.mesh-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.mesh-card-content {
    flex: 1;
}

.mesh-card-content h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: white;
}

.mesh-card-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* MeshList Card - Blue Theme */
.mesh-list-card {
    background: linear-gradient(135deg, #129ed9 0%, #0ea5e9 100%);
    border-color: rgba(18, 158, 217, 0.3);
}

.mesh-list-card:hover {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

/* MeshStore Card - Green Theme */
.mesh-store-card {
    background: linear-gradient(135deg, #28a745 0%, #22c55e 100%);
    border-color: rgba(40, 167, 69, 0.3);
}

.mesh-store-card:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

/* AutoList Card - Orange/Gold Theme */
.mesh-auto-card {
    background: linear-gradient(135deg, #ff8c00 0%, #f59e0b 100%);
    border-color: rgba(255, 140, 0, 0.3);
}

.mesh-auto-card:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* MeshFeed Mode Selection Cards */
.mesh-mode-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px;
    margin: 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.mesh-mode-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(18, 158, 217, 0.3);
}

.mesh-mode-card.active {
    border-color: #129ed9;
    box-shadow: 0 8px 24px rgba(18, 158, 217, 0.15);
    background: linear-gradient(135deg, rgba(18, 158, 217, 0.02) 0%, rgba(18, 158, 217, 0.05) 100%);
}

.mesh-mode-card.active:hover {
    border-color: #0ea5e9;
    box-shadow: 0 12px 32px rgba(18, 158, 217, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mesh-feature-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }
    
    .mesh-card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .mesh-card-content h3 {
        font-size: 18px;
    }
    
    .mesh-card-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .mesh-feature-card {
        margin: 16px 0;
        padding: 16px;
        gap: 12px;
    }
    
    .mesh-card-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .mesh-card-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .mesh-card-content p {
        font-size: 12px;
    }
} 